diff --git a/rocm_5.4/Dockerfile.base_rocm5.4_source_compile b/rocm_5.4/Dockerfile.base_rocm5.4_source_compile new file mode 100644 index 000000000..7cf4d4fb0 --- /dev/null +++ b/rocm_5.4/Dockerfile.base_rocm5.4_source_compile @@ -0,0 +1,144 @@ +# Docker Base Buildfile for ROCm 5.4.2 to Support Retrieval-based-Voice-Conversion-WebUI with RX580 / Polaris / gfx803 AMD GPU +# Created, Built, and Compiled by Levent Sunay (lsunay) - May-April 2025 +# +# Description: +# This Dockerfile is designed to build a base image for ROCm 5.4.2, specifically targeting the gfx803 architecture +# (e.g., AMD RX580 / Polaris GPUs). It compiles PyTorch, TorchVision, and TorchAudio from source with ROCm support +# to enable machine learning workloads, such as Retrieval-based-Voice-Conversion-WebUI. This image includes necessary +# environment variables, build tools, and configurations for compatibility with older AMD GPUs. +# +# File Name: Dockerfile.base_rocm5.4_source_compile - Stage 1 + +FROM rocm/dev-ubuntu-22.04:5.4.2-complete + +# === Environment Variables === +ENV DEBIAN_FRONTEND=noninteractive +ENV PYTHONUNBUFFERED=1 +ENV PYTHONIOENCODING=UTF-8 +ENV PIP_ROOT_USER_ACTION='ignore' +ENV MAX_JOBS=14 +ENV HSA_OVERRIDE_GFX_VERSION=8.0.3 +ENV PYTORCH_ROCM_ARCH=gfx803 +ENV ROCM_ARCH=gfx803 +ENV TORCH_BLAS_PREFER_HIPBLASLT=0 +ENV ROC_ENABLE_PRE_VEGA=1 +ENV USE_NINJA=1 +# Ninja is used for builds if enabled, so ninja-build must be installed +ENV REQS_FILE='requirements.txt' +# CMAKE_POLICY_VERSION_MINIMUM may be required if the installed cmake version via pip is too new. +# For instance, cmake 3.20+ might cause issues with Protobuf in PyTorch 2.0.1. +ENV CMAKE_POLICY_VERSION_MINIMUM="3.18" +# Alternatively, versions like 3.13 or 3.5 can be used + +# Write critical environment variables to /etc/environment for persistence +RUN echo "MAX_JOBS=${MAX_JOBS}" >> /etc/environment && \ + echo "HSA_OVERRIDE_GFX_VERSION=${HSA_OVERRIDE_GFX_VERSION}" >> /etc/environment && \ + echo "PYTORCH_ROCM_ARCH=${PYTORCH_ROCM_ARCH}" >> /etc/environment && \ + echo "ROCM_ARCH=${ROCM_ARCH}" >> /etc/environment && \ + echo "TORCH_BLAS_PREFER_HIPBLASLT=${TORCH_BLAS_PREFER_HIPBLASLT}" >> /etc/environment && \ + echo "ROC_ENABLE_PRE_VEGA=${ROC_ENABLE_PRE_VEGA}" >> /etc/environment && \ + echo "PIP_ROOT_USER_ACTION=${PIP_ROOT_USER_ACTION}" >> /etc/environment && \ + echo "CMAKE_POLICY_VERSION_MINIMUM=${CMAKE_POLICY_VERSION_MINIMUM}" >> /etc/environment && \ + true + +# === System Updates and Build Tools === +RUN apt-get update -y && \ + apt-get install -y --no-install-recommends \ + git wget curl \ + ffmpeg \ + python3.10 python3-pip python3.10-dev python3.10-venv \ + cmake ninja-build \ + libopenblas-dev libomp-dev pkg-config \ + # Confirm/install ROCm development libraries + # rocm-dev meta-package may pull in all dev packages + # OR specifically install rocrand-dev + rocm-dev \ + # This should include rocrand-dev, hiprand-dev, etc. + # OR use: apt-get install -y rocrand librocrand-dev # Verify package names + && \ + python3 -m pip install --upgrade pip wheel setuptools && \ + python3 -m pip install "cmake==3.20.2" && \ + # This line is still here for pip-installed cmake + apt-get clean && rm -rf /var/lib/apt/lists/* && \ + true + +# Verify Python and CMake versions +RUN python3 --version && pip3 --version && cmake --version + +# ... (rocBLAS installation can remain commented or be added as needed) ... + +# === PyTorch v2.0.1 Source Compilation for ROCm 5.4.2 / gfx803 === +WORKDIR / +ENV PYTORCH_GIT_TAG="v2.0.1" +RUN echo "Checkout PyTorch Version: ${PYTORCH_GIT_TAG}" && \ + git clone --depth 1 --recursive --branch ${PYTORCH_GIT_TAG} https://github.com/pytorch/pytorch.git /pytorch && \ + true + +WORKDIR /pytorch +RUN echo "BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** " && \ + python3 --version && \ + # dpkg -r --force-depends python3-yaml python3-filelock || true && + mkdir -p /pytorch/dist && \ + python3 setup.py clean && \ + # Install PyTorch's own requirements.txt + echo "Installing PyTorch build requirements from ${REQS_FILE}..." && \ + python3 -m pip install --break-system-packages -r ${REQS_FILE} && \ + # ---- Re-pin NumPy version after requirements install ---- + echo "Re-pinning NumPy to 1.23.5 after PyTorch requirements install..." && \ + python3 -m pip install --break-system-packages "numpy==1.23.5" --force-reinstall && \ + python3 -c "import numpy; print(f'NumPy version for PyTorch build: {numpy.__version__}')" && \ + # ---- End of NumPy pinning ---- + echo "Running amd_build.py..." && \ + python3 tools/amd_build/build_amd.py && \ + echo "Running setup.py bdist_wheel..." && \ + python3 setup.py bdist_wheel && \ + echo "Installing built PyTorch wheel..." && \ + python3 -m pip install --break-system-packages dist/torch*.whl && \ + ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && \ + true + +WORKDIR / +ENV TORCHVISION_GIT_TAG="v0.15.2" +RUN echo "Checkout Torchvision Version: ${TORCHVISION_GIT_TAG}" && \ + git clone --depth 1 --branch ${TORCHVISION_GIT_TAG} https://github.com/pytorch/vision.git /vision && \ + true + +WORKDIR /vision +RUN echo "BUILDING TorchVision ${TORCHVISION_GIT_TAG} *** " && \ + python3 setup.py bdist_wheel && \ + python3 -m pip install --break-system-packages dist/torchvision-*.whl && \ + ls /vision/dist/torchvision*.whl | head -n 1 > /opt/torchvision_wheel_name.txt && \ + true + +WORKDIR / +ENV TORCHAUDIO_GIT_TAG="v2.0.2" +RUN echo "Checkout Torchaudio Version: ${TORCHAUDIO_GIT_TAG}" && \ + git clone --depth 1 --branch ${TORCHAUDIO_GIT_TAG} https://github.com/pytorch/audio.git /audio && \ + true + +WORKDIR /audio +RUN echo "BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}" && \ + apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && \ + # Try adding /opt/rocm to CMAKE_PREFIX_PATH + export CMAKE_PREFIX_PATH="/opt/rocm:${CMAKE_PREFIX_PATH}" && \ + python3 setup.py bdist_wheel && \ + python3 -m pip install --break-system-packages dist/torchaudio*.whl && \ + ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && \ + apt-get purge -y --auto-remove libsndfile1-dev libsox-dev sox && \ + apt-get clean && rm -rf /var/lib/apt/lists/* + +RUN echo "Configuring ROCm library paths" && \ + echo "/opt/rocm/lib" > /etc/ld.so.conf.d/rocm.conf && \ + (test -d /opt/rocm/lib64 && echo "/opt/rocm/lib64" >> /etc/ld.so.conf.d/rocm.conf || true) && \ + ldconfig && \ + true + +RUN echo "** Verifying PyTorch, TorchVision, TorchAudio Installation **" && \ + python3 -c "import sys; import platform; import torch; import torchvision; import torchaudio; \ + print(f'System Python Version (sys.version): {sys.version.split()[0]}'); \ + print(f'Platform Python Version (platform.python_version): {platform.python_version()}'); \ + print(f'Torch Version: {torch.__version__}'); \ + print(f'TorchVision Version: {torchvision.__version__}'); \ + print(f'TorchAudio Version: {torchaudio.__version__}'); \ + print(f'ROCm available: {torch.cuda.is_available()}'); \ + print(f'PyTorch built with ROCm/HIP: {torch.version.hip if hasattr(torch.version, \"hip\") else \"HIP not available or not a ROCm build\"}')" diff --git a/rocm_5.4/Dockerfile.rvc_original b/rocm_5.4/Dockerfile.rvc_original new file mode 100644 index 000000000..69a16f19c --- /dev/null +++ b/rocm_5.4/Dockerfile.rvc_original @@ -0,0 +1,146 @@ +# Docker Buildfile for RVC WebUI Installation with ROCm 5.4.2 for RX580 / Polaris / gfx803 AMD GPU +# Created, Built, and Compiled by Levent Sunay (lsunay) - May-April 2025 +# +# Description: +# This Dockerfile is the second stage of a multi-stage build for installing the Retrieval-based-Voice-Conversion-WebUI (RVC) +# on top of a base image with ROCm 5.4.2 and PyTorch compiled for gfx803 architecture (e.g., AMD RX580 / Polaris GPUs). +# It sets up the necessary environment, dependencies, and configurations to run the RVC WebUI application. +# +# File Name: Dockerfile.rvc_original - Stage 2: Original RVC WebUI Installation (Based on ROCm 5.4.2) + +FROM rocm542_gfx803_base:5.4.2 +# Base image tag from Stage 1 + +# === Environment Variables === +ENV DEBIAN_FRONTEND=noninteractive +ENV PYTHONUNBUFFERED=1 +ENV PYTHONIOENCODING=UTF-8 +ENV PIP_ROOT_USER_ACTION='ignore' +ENV HSA_OVERRIDE_GFX_VERSION=8.0.3 +ENV PYTORCH_ROCM_ARCH=gfx803 +ENV ROCM_ARCH=gfx803 +ENV RVC_PORT=7865 +ENV NODE_VERSION=22.9.0 +ENV NVM_DIR="/root/.nvm" +ENV PATH="/root/.nvm/versions/node/v${NODE_VERSION}/bin:${PATH}" + +RUN apt-get update -y && \ + apt-get install -y --no-install-recommends \ + aria2 \ + git wget curl ffmpeg \ + && \ + apt-get clean && rm -rf /var/lib/apt/lists/* + +WORKDIR /app + +# === RVC WebUI Installation === +# Clone the RVC project repository into the /app directory. +RUN echo "Cloning RVC repository..." && \ + git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git . && \ + echo "RVC repository cloned into /app." + +# Create a Python 3.10 virtual environment (.venv) +RUN python3 -m venv .venv # .venv will be created under /app + +# Create constraints.txt to use PyTorch wheels and other pinned versions from Stage 1 +RUN echo "** Creating constraints.txt **" && \ + export PATH="/opt/rocm/bin:/opt/rocm/hip/bin:${PATH}" && \ + PYTORCH_WHEEL_FILE_PATH=$(cat /opt/pytorch_wheel_name.txt) && \ + TORCHVISION_WHEEL_FILE_PATH=$(cat /opt/torchvision_wheel_name.txt) && \ + TORCHAUDIO_WHEEL_FILE_PATH=$(cat /opt/torchaudio_wheel_name.txt) && \ + echo "torch @ file://${PYTORCH_WHEEL_FILE_PATH}" > .venv/constraints.txt && \ + echo "torchvision @ file://${TORCHVISION_WHEEL_FILE_PATH}" >> .venv/constraints.txt && \ + echo "torchaudio @ file://${TORCHAUDIO_WHEEL_FILE_PATH}" >> .venv/constraints.txt && \ + echo "numpy==1.23.5" >> .venv/constraints.txt && \ + echo "protobuf==4.25.3" >> .venv/constraints.txt && \ + echo "matplotlib==3.7.2" >> .venv/constraints.txt && \ + echo "joblib==1.1.0" >> .venv/constraints.txt && \ + echo "numba==0.56.4" >> .venv/constraints.txt && \ + echo "llvmlite==0.39.0" >> .venv/constraints.txt && \ + echo "fairseq==0.12.2" >> .venv/constraints.txt && \ + echo "faiss-cpu==1.7.3" >> .venv/constraints.txt && \ + echo "gradio==3.34.0" >> .venv/constraints.txt && \ + echo "pyworld==0.3.2" >> .venv/constraints.txt && \ + echo "torchcrepe==0.0.23" >> .venv/constraints.txt && \ + echo "torchfcpe" >> .venv/constraints.txt && \ + echo "Contents of constraints.txt:" && cat .venv/constraints.txt + +# Process RVC's main requirements.txt and requirements-amd.txt files +RUN echo "Processing RVC requirements files" && \ + # ---- Debugging: Check files for troubleshooting ---- + echo "Current directory: $(pwd)" && ls -la && \ + # ---- End of debugging ---- + if [ ! -f "requirements.txt" ]; then echo "ERROR: requirements.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && \ + if [ ! -f "requirements-amd.txt" ]; then echo "ERROR: requirements-amd.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && \ + echo "--- Original requirements.txt ---" && cat requirements.txt && echo "--- End ---" && \ + echo "--- Original requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" && \ + \ + # Remove torch*, fairseq, and extension_* lines from requirements.txt + sed -i -E '/^torch(vision|audio)?\s*(==|>=)?/d' requirements.txt && \ + sed -i '/^fairseq @ /d' requirements.txt && \ + sed -i '/^extension_/d' requirements.txt && \ + sed -i "/; sys_platform 'win32'/d" requirements.txt && \ + sed -i "/; sys_platform 'darwin'/d" requirements.txt && \ + echo "--- Cleaned main requirements.txt ---" && cat requirements.txt && echo "--- End ---" && \ + \ + # Remove torch*, numpy, numba, llvmlite, fairseq, faiss-cpu, gradio, pyworld, torchcrepe, + # torchfcpe, and onnxruntime* packages from requirements-amd.txt + sed -i -E '/^torch(vision|audio)?\\s*(==|>=)?/d' requirements-amd.txt && \ + sed -i '/^tensorflow-rocm/d' requirements-amd.txt && \ + sed -i '/^joblib/d' requirements-amd.txt && \ + sed -i '/^numba/d' requirements-amd.txt && \ + sed -i '/^numpy/d' requirements-amd.txt && \ + sed -i '/^scipy/d' requirements-amd.txt && \ + sed -i '/^librosa/d' requirements-amd.txt && \ + sed -i '/^llvmlite/d' requirements-amd.txt && \ + sed -i '/^fairseq/d' requirements-amd.txt && \ + sed -i '/^faiss-cpu/d' requirements-amd.txt && \ + sed -i '/^gradio/d' requirements-amd.txt && \ + sed -i '/^Cython/d' requirements-amd.txt && \ + sed -i '/^pyworld/d' requirements-amd.txt && \ + sed -i '/^torchcrepe/d' requirements-amd.txt && \ + sed -i '/^torchfcpe/d' requirements-amd.txt && \ + sed -i '/^onnxruntime/d' requirements-amd.txt && \ + sed -i "/; sys_platform 'darwin'/d" requirements-amd.txt && \ + echo "--- Cleaned requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" + # You can end this RUN block here to debug sed errors if needed. + +# === Installation (Separate RUN blocks) === +# Install remaining dependencies from the cleaned main requirements.txt +RUN echo "** Installing RVC dependencies from main requirements.txt (cleaned) **" && \ + ./.venv/bin/python -m pip install --no-cache-dir -r requirements.txt -c .venv/constraints.txt + +# Install remaining dependencies from the cleaned requirements-amd.txt +RUN echo "** Installing RVC specific dependencies from requirements-amd.txt (cleaned) **" && \ + ./.venv/bin/python -m pip install --no-cache-dir -r requirements-amd.txt -c .venv/constraints.txt + +# Install additional dependencies manually or with constraints, which are not in requirements files or have different pins +RUN echo "** Installing other essential dependencies into venv **" && \ + ./.venv/bin/python -m pip install --no-cache-dir \ + -c .venv/constraints.txt \ + Cython scipy librosa==0.10.2 pydub>=0.25.1 soundfile>=0.12.1 ffmpeg-python>=0.2.0 \ + tensorboardX Jinja2>=3.1.2 json5 Markdown matplotlib>=3.7.2 matplotlib-inline>=0.1.3 \ + praat-parselmouth>=0.4.2 Pillow>=9.1.1 resampy>=0.4.2 scikit-learn tensorboard \ + tqdm>=4.63.1 tornado>=6.1 Werkzeug>=2.2.3 uc-micro-py>=1.0.1 sympy>=1.11.1 \ + tabulate>=0.8.10 PyYAML>=6.0 pyasn1>=0.4.8 pyasn1-modules>=0.2.8 fsspec>=2022.11.0 \ + absl-py>=1.2.0 audioread uvicorn>=0.21.1 colorama>=0.4.5 httpx fastapi==0.88 \ + ffmpy==0.3.1 python-dotenv>=1.0.0 av torchcrepe==0.0.23 torchfcpe joblib==1.1.0 \ + numba==0.56.4 llvmlite==0.39.0 fairseq==0.12.2 faiss-cpu==1.7.3 gradio==3.34.0 \ + pyworld==0.3.2 \ + # onnxruntime-rocm \ # <-- Comment or remove this line + # Try installing standard onnxruntime instead (if RVC supports it) + onnxruntime \ + && \ + echo "Essential dependencies installed into venv." + +# Set executable permissions for RVC scripts +RUN chmod +x *.sh + +# RVC Application Launch +EXPOSE ${RVC_PORT} +# Default port for RVC (typically 7865, verify as needed) + +# Copy and set up the entrypoint script for RVC +COPY entrypoint_rvc.sh /entrypoint_rvc.sh +RUN chmod +x /entrypoint_rvc.sh +ENTRYPOINT ["/entrypoint_rvc.sh"] diff --git a/rocm_5.4/README.md b/rocm_5.4/README.md new file mode 100644 index 000000000..98e326f71 --- /dev/null +++ b/rocm_5.4/README.md @@ -0,0 +1,242 @@ +# ROCm 5.4.2 Support for RVC WebUI on gfx803 (AMD RX580 / Polaris GPUs) + +**Created and Compiled by Levent Sunay (lsunay) - May 2025** + +## Acknowledgments + +Before diving into the details, I would like to express my sincere gratitude to **Robert Rosenbusch** for his foundational and exceptional work. Thanks to his efforts, I have been able to run incredible applications on my older GPU, unlocking possibilities I never thought were achievable with legacy hardware. His contributions have been instrumental in making this project a reality. + +I also extend my heartfelt thanks to the **RVC-Project Team** for developing the amazing **Retrieval-based-Voice-Conversion-WebUI (RVC)**. Their open-source work has been the cornerstone of this project, enabling voice conversion capabilities on AMD GPUs with ROCm support. You can explore their repository and learn more about their innovative work at [https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/tree/main). + + +## Overview + +This project provides a Docker-based setup for running the **Retrieval-based-Voice-Conversion-WebUI (RVC)** with **ROCm 5.4.2** support on older AMD GPUs like the **RX580 (gfx803 / Polaris)**. The goal is to enable machine learning workloads, specifically voice conversion, on hardware with limited or discontinued official ROCm support. This repository contains Dockerfiles and scripts to build and run the RVC WebUI, leveraging custom-compiled PyTorch for ROCm compatibility. + +This `README.md` summarizes the setup process, shares key experiences and challenges encountered while working with ROCm on older hardware, and provides instructions for building, running, and using the RVC application. + +--- + +## Key Features + +- **ROCm 5.4.2 Base Image**: A foundation with ROCm libraries and drivers for gfx803 compatibility. +- **Custom PyTorch Compilation**: PyTorch 2.0.1, TorchVision, and TorchAudio compiled from source for gfx803 architecture. +- **RVC WebUI Installation**: Setup for the original RVC project with necessary dependencies and pre-trained models. +- **Dockerized Environment**: Multi-stage Docker builds to ensure reproducibility and isolation. +- **GPU Recognition**: Successfully tested with `torch.cuda.is_available() == True` and GPU detection in RVC (`AMD Radeon RX 580 2048SP`). + +--- + +## Project Structure + +This folder (`rocm_5.4`) contains the following files for setting up RVC with ROCm 5.4.2: + +- **Dockerfile.base_rocm5.4_source_compile**: Stage 1 Dockerfile to build the base image with ROCm 5.4.2 and custom-compiled PyTorch. +- **Dockerfile.rvc_original**: Stage 2 Dockerfile to install the RVC WebUI on top of the base image. +- **entrypoint_rvc.sh**: Entrypoint script to activate the virtual environment, check/download pre-trained models, and start the RVC server. + +--- + +## Experiences and Lessons Learned with ROCm on Older Hardware (gfx803) + +Working with ROCm on older AMD GPUs like the RX580 (gfx803 / Polaris) presents unique challenges due to limited official support in newer versions. Below are key takeaways and experiences from this project that may help others working on similar setups: + +1. **Base Image Selection is Critical**: Start with a compatible ROCm base image (e.g., `rocm/dev-ubuntu-22.04:5.4.2-complete`) that matches the Ubuntu and Python versions required for ROCm. This ensures essential drivers and libraries are correctly installed. +2. **Hardware Support Limitations**: Official ROCm support for gfx803 ends at specific versions (e.g., 5.7 or earlier). Using versions beyond this can lead to compatibility issues, missing kernels, or low-level errors like `invalid device function` or `segfault in libamdhip64.so`. +3. **Official PyTorch ROCm Wheels May Be Misleading**: Wheels from `download.pytorch.org/whl/rocmX.Y` are often optimized for newer architectures and may not support older GPUs. If `torch.cuda.is_available()` returns `True` but runtime errors occur (e.g., `HIP error: invalid device function`), the wheels are likely incompatible. +4. **Source Compilation for PyTorch is Often Necessary**: For older hardware, compiling PyTorch from source with `PYTORCH_ROCM_ARCH=gfx803` ensures the correct kernels are built. While time-consuming, this is the most reliable way to achieve compatibility. +5. **Kernel Version Matters**: The host system's Linux kernel version can affect ROCm driver compatibility, especially with newer ROCm versions. Ensure your kernel matches versions listed as "supported" in ROCm documentation. +6. **C++ and Python Development Headers are Essential**: Source compilation requires tools like `build-essential`, `cmake`, `ninja-build`, and Python development headers (`python3.X-dev`) along with `pkg-config`. +7. **Third-Party Dependency Compilation**: PyTorch and other libraries (e.g., rocBLAS, TorchAudio) may compile additional C/C++ dependencies. Reading `install.sh` scripts and patching with `sed` if needed is common. Packages like `libmsgpack-dev` or `python3-joblib` may be required. +8. **Dependency Conflicts and Version Management**: + - Conflicts are inevitable when installing multiple libraries (e.g., PyTorch, RVC, Fairseq) due to overlapping dependencies like `torch`, `numpy`, or `gradio`. + - Using a `constraints.txt` file to pin critical versions (e.g., custom PyTorch wheels) is vital. + - Cleaning `requirements.txt` files with `sed` to remove conflicting lines (e.g., `torch*`) prevents `pip` from pulling incorrect versions. + - Installing conflicting extensions or packages in separate `RUN` blocks with `--no-deps` and manually installing dependencies with `-c constraints.txt` helps resolve issues. +9. **Docker Build vs. Runtime Environment**: GPU access is unavailable during `docker build`, so `torch.cuda.is_available()` will return `False`. The real test is during `docker run --device...` when it should return `True`. +10. **Gradio and Pandas Issues**: Version mismatches in libraries like NumPy, Pandas, or Gradio can cause errors (e.g., `numpy.dtype size changed`). Resolve these by finding compatible versions with `pip install`. +11. **Model Files and Volumes**: Ensure model files and caches are downloaded to the correct locations and mounted with `docker run -v ...` to avoid `FileNotFoundError` and issues after container restarts. + +These experiences highlight the level of detail and care required when working with ROCm on older hardware. They can guide future projects or troubleshooting efforts. + +--- + +## Retrieval-based-Voice-Conversion-WebUI (RVC) Usage + +### What is RVC? + +RVC (Retrieval-based-Voice-Conversion-WebUI) is an open-source tool for voice conversion, allowing users to transform audio input into a different voice using pre-trained models. It leverages deep learning frameworks like PyTorch for GPU-accelerated processing and provides a user-friendly web interface via Gradio. + +### How to Use RVC WebUI + +1. **Access the Interface**: After starting the container (see `docker run` instructions below), open your browser and navigate to `http://localhost:7865` (or the IP/port if running on a remote server). +2. **Load Models**: Ensure pre-trained models are available in the `/app/assets/` directory (handled by the entrypoint script or volume mounts). Select a model in the interface. +3. **Upload Audio**: Upload an audio file or record input directly in the interface. +4. **Convert Voice**: Adjust parameters if needed (e.g., pitch, half-precision settings via `config.py`) and click to process the audio. +5. **Download Result**: Once processed, download the converted audio from the interface. +6. **Training with Custom Data**: To train models with your own datasets, provide the path to your training data in the RVC interface. Ensure the path is a container-internal path mapped via a volume mount (see "File Paths in RVC Interface" below). + +### Screenshots of RVC WebUI + +To help users visualize the interface, below are placeholders for screenshots. These will be added to demonstrate key features like model selection, audio upload, and conversion output. + +- **Screenshot 1**: Model Train Interface (`screenshots/screenshot1.png`) +- ![Main Interface](screenshots/screenshot3.png) +- **Screenshot 2**: Model Selection & Extract (`screenshots/screenshot2.png`) +- ![Model Selection](screenshots/screenshot2.png) +- **Screenshot 3**: Audio Conversion Result (`screenshots/screenshot3.png`) +- ![Audio Conversion Result](screenshots/screenshot1.png) + +*Note*: Screenshots are not included in this README yet. They will be added in future updates. If you wish to contribute screenshots, please upload them to this repository and update the paths above. + +### File Paths in RVC Interface + +When using the RVC WebUI to specify paths for training datasets or input audio files, **always use container-internal paths** mapped via volume mounts in your `docker run` command. Docker containers are isolated from the host filesystem, so host paths (e.g., `/home/levent/Downloads/rvc_todo`) will result in `FileNotFoundError` unless explicitly mounted. + +**Steps to Use File Paths Correctly**: +1. **Mount Host Directories to Container**: Use the `-v` flag in your `docker run` command to map host directories to container-internal paths. For example: + - `-v /home/levent/rvc_training_data:/datasets` maps the host directory `/home/levent/rvc_training_data` to `/datasets` inside the container. +2. **Specify Container-Internal Paths in RVC**: In the RVC interface (e.g., "Trainset directory" field), enter the container-internal path. If your dataset is in `/home/levent/rvc_training_data/my_dataset` on the host, use `/datasets/my_dataset` in the RVC interface. +3. **Ensure Host Paths Exist**: Before running the container, create the host directories for volume mounts if they don't exist (e.g., `mkdir -p /home/levent/rvc_training_data`). + +**Example Error and Fix**: +- **Error**: Entering a host path like `/home/levent/Downloads/rvc_todo` directly in the RVC interface results in `FileNotFoundError: [Errno 2] No such file or directory`. +- **Fix**: Mount the host directory with `-v /home/levent/Downloads:/mnt/host_downloads` in your `docker run` command, then use `/mnt/host_downloads/rvc_todo` in the RVC interface. + +### Note on Errors and Output Tracking + +During usage, you may encounter error messages in the web interface even though the outputs are successfully generated. It is recommended to monitor the container logs for detailed information on the process and to confirm the status of output generation. You can view the logs by running the following command: + +```bash +docker logs rocm54_rvcwebui +``` +--- + + +## Docker Instructions + +### Prerequisites + +- **Docker**: Ensure Docker is installed on your system. +- **AMD GPU**: An AMD GPU with gfx803 architecture (e.g., RX580 / Polaris). Ensure ROCm-compatible drivers are installed on the host if not using a pre-configured base image. +- **Host Kernel Compatibility**: Verify your Linux kernel version matches ROCm 5.4.2 supported versions to avoid low-level errors. + + +--- + +## Detailed Build Process and Entrypoint Logic + +### Two-Stage Build Process + +This project employs a two-stage Docker build process to ensure a modular and efficient setup for running the Retrieval-based-Voice-Conversion-WebUI (RVC) with ROCm 5.4.2 on older AMD GPUs (gfx803 / Polaris, e.g., RX580). + +1. **Stage 1: Building the Base Image with ROCm and PyTorch** + The first stage focuses on creating a base image with the appropriate operating system (Ubuntu 22.04) and ROCm version (5.4.2). This stage involves compiling PyTorch 2.0.1, TorchVision, and TorchAudio from source to ensure compatibility with the gfx803 architecture. A verification block is included at the end of the compilation process to check and log version information (e.g., Python, PyTorch, ROCm availability). This log output is crucial for debugging and confirming the success of the build. Note that this build process can take several hours due to the source compilation of PyTorch and related libraries. The resulting image size for this stage is approximately **23.3 GB**. The build command for this stage is: + + + ```bash + docker build -f rocm_5.4/Dockerfile.base_rocm5.4_source_compile -t rocm542_gfx803_base:5.4.2 . + +2. **Stage 2: Building the RVC WebUI Image** + In the second stage, the base image (`rocm542_gfx803_base:5.4.2`) is used to build the application-specific image for RVC. This stage considers the system dependencies and requirements specific to RVC, installing necessary libraries, cloning the RVC repository, and setting up the Python environment with compatible dependencies. This build process is generally shorter than the first stage, often completing in less time. The resulting image size for this stage is approximately **26.4 GB**. The build command for this stage is: + + + ```bash + docker build -f rocm_5.4/Dockerfile.rvc_original -t rvc_webui_rocm:5.4.2 . + +### Entrypoint Logic with `entrypoint_rvc.sh` + +The `entrypoint_rvc.sh` script plays a critical role in preparing the container's runtime environment when it is first started. This script is copied into the image during the Stage 2 build and must be located in the same directory as `Dockerfile.rvc_original` to ensure it is included correctly. Its primary functions are: + +- **Environment Setup**: Activates the Python virtual environment (located at `/app/.venv`) to ensure the correct Python and dependency versions are used for RVC. +- **Model Download and Verification**: Checks if pre-trained models are present in the `/app/assets` directory (which is typically mounted to a host volume for persistence). If models are not found, it downloads a set of standard models from the Hugging Face repository using `aria2c`. This ensures the container is ready for immediate use. Additional models can be downloaded from the Hugging Face page ([https://huggingface.co/lj1995/VoiceConversionWebUI](https://huggingface.co/lj1995/VoiceConversionWebUI)) and copied to the appropriate host directories mapped via volume mounts (e.g., `/app/assets`, `/app/weights`). +- **Starting the RVC Server**: Launches the RVC WebUI server using `infer-web.py` (or `run.sh` if available) on the specified port (default: 7865), making the web interface accessible. + +This script ensures that even if models are not included in the Docker image (to keep the image size small), they are available at runtime through volume mounts or automatic download. + +### Running the Docker Container + +To run the RVC WebUI container with GPU access and persistent storage for models, weights, logs, and cache data, use the following command: + +```bash + docker run -d \ + --name rocm54_rvcwebui \ + --device=/dev/kfd --device=/dev/dri --group-add video \ + -e HSA_OVERRIDE_GFX_VERSION=8.0.3 \ + -e PYTORCH_ROCM_ARCH=gfx803 \ + -e RVC_PORT=7865 \ + -p 7865:7865 \ + -v /home/levent/rvc_training_data:/datasets \ + -v /virt-machines/dockerdata/rvc_rocm_data/assets:/app/assets \ + -v /virt-machines/dockerdata/rvc_rocm_data/weights:/app/weights \ + -v /virt-machines/dockerdata/rvc_rocm_data/logs:/app/logs \ + -v /virt-machines/dockerdata/applio_rocm/huggingface_cache:/root/.cache/huggingface \ + -e HUGGINGFACE_HUB_CACHE="/root/.cache/huggingface" \ + -v /virt-machines/dockerdata/applio_rocm/torch_cache:/root/.cache/torch \ + -e TORCH_HOME="/root/.cache/torch" \ + -v /virt-machines/dockerdata/applio_rocm/general_cache:/root/.cache \ + -e XDG_CACHE_HOME="/root/.cache" \ + rvc_webui_rocm:5.4.2 +``` + +#### Explanation of Volume Mounts and Parameters + +- **`--device=/dev/kfd` and `--device=/dev/dri`**: Grants the container access to the AMD GPU kernel driver and rendering interface for ROCm support. +- **`--group-add video`**: Adds the container user to the necessary group for GPU access (may already be handled if running as root). +- **`-e HSA_OVERRIDE_GFX_VERSION=8.0.3` and `-e PYTORCH_ROCM_ARCH=gfx803`**: Sets environment variables to ensure ROCm compatibility with gfx803 architecture. +- **`-e RVC_PORT=7865` and `-p 7865:7865`**: Configures and maps the container's port 7865 (default RVC port) to the host's port 7865, allowing access to the web interface at `http://localhost:7865`. +- **`-v /home/levent/rvc_training_data:/datasets`**: Mounts a host directory for training datasets. Use `/datasets/...` paths in the RVC interface for training data. +- **`-v /virt-machines/dockerdata/rvc_rocm_data/assets:/app/assets`**: Mounts a host directory to store pre-trained models persistently. This ensures models are not re-downloaded on container restarts. +- **`-v /virt-machines/dockerdata/rvc_rocm_data/weights:/app/weights`**: Mounts a host directory for RVC weights or processed data, critical for saving trained or processed data across container runs. +- **`-v /virt-machines/dockerdata/rvc_rocm_data/logs:/app/logs`**: Mounts a host directory for RVC logs, useful for debugging and tracking training processes. +- **`-v ...:/root/.cache/...` and `-e ...`**: Mounts and sets environment variables for various cache directories (Hugging Face, Torch, general cache) to persist model downloads and intermediate data on the host, reducing redundant downloads and improving performance. + +*Note*: Ensure the host paths for volumes exist before running the container. Create them with `mkdir -p /path/to/host/directory` if needed. Adjust paths in the `docker run` command to match your host system's directory structure. + +#### Additional Setup for ROCm on Linux + +To use ROCm on Linux, ensure all required drivers are installed as described in the official AMD ROCm documentation (refer to [AMD ROCm Installation Guide](https://docs.amd.com/)). You might also need to set the following environment variables on your host system before running the container (or include them in the `docker run` command as shown above): + +export ROCM_PATH=/opt/rocm +export HSA_OVERRIDE_GFX_VERSION=8.0.3 + +Make sure your user is part of the `render` and `video` groups to access GPU resources: + +sudo usermod -aG render $USERNAME +sudo usermod -aG video $USERNAME + +*Note*: Replace `$USERNAME` with your actual username on the host system. These commands ensure proper permissions for GPU access, which is essential for ROCm functionality. If running the container as root or with appropriate Docker configurations, these group settings may already be handled. + +### Logging Build Errors for Debugging + +During the build process, errors may occur due to dependency conflicts, compilation issues, or network problems. To facilitate debugging, it is recommended to redirect build logs to a file for later review. This captures both standard output and error messages. Below is an example command to build the Stage 2 image while saving logs to a file: + + ``` bash + docker build -f rocm_5.4/Dockerfile.rvc_original -t rvc_webui_rocm:5.4.2 . 2>&1 | tee build_rvc.log``` +``` + + +- **`2>&1`**: Redirects both standard output and standard error to the same stream. +- **`tee build_rvc.log`**: Writes the output to both the terminal and the specified log file (`build_rvc.log`). + +Similarly, for Stage 1, you can use: + +``` bash + docker build -f rocm_5.4/Dockerfile.base_rocm5.4_source_compile -t rocm542_gfx803_base:5.4.2 . 2>&1 | tee build_base.log +``` + + +Saving logs is especially useful for troubleshooting long builds or identifying specific errors in the compilation or dependency installation steps. After the build, review the log files (`build_base.log` or `build_rvc.log`) to pinpoint issues if the build fails. + +**Note on Build Logs**: For those interested in reviewing the build logs for debugging or analysis, the log files for both stages are available as text files. You can access them here: +- [Stage 1 Build Log1](logs/build_rocm542.log) +- [Stage 1 Build Log2](logs/build_rocm542_v1.log) +- [Stage 1 Build Log3](logs/build_rocm542_v2.log) +- [Stage 1 Build Log4](logs/build_rocm542_v3.log) +- [Stage 1 Build Log5](logs/build_rocm542_v4.log) + +- [Stage 2 Build Log1](logs/build_rvc.log) +- [Stage 2 Build Log2](logs/build_rvc1.log) +- [Stage 2 Build Log3](logs/build_rvc12.log) +- [Stage 2 Build Log4](logs/build_rvc13.log) +- [Stage 2 Build Log5](logs/build_rvc14.log) diff --git a/rocm_5.4/README.md.backup b/rocm_5.4/README.md.backup new file mode 100644 index 000000000..802d4a1ae --- /dev/null +++ b/rocm_5.4/README.md.backup @@ -0,0 +1,243 @@ +# ROCm 5.4.2 Support for RVC WebUI on gfx803 (AMD RX580 / Polaris GPUs) + +**Created and Compiled by Levent Sunay (lsunay) - May 2025** + +## Acknowledgments + +Before diving into the details, I would like to express my sincere gratitude to **Robert Rosenbusch** for his foundational and exceptional work. Thanks to his efforts, I have been able to run incredible applications on my older GPU, unlocking possibilities I never thought were achievable with legacy hardware. His contributions have been instrumental in making this project a reality. + +I also extend my heartfelt thanks to the **RVC-Project Team** for developing the amazing **Retrieval-based-Voice-Conversion-WebUI (RVC)**. Their open-source work has been the cornerstone of this project, enabling voice conversion capabilities on AMD GPUs with ROCm support. You can explore their repository and learn more about their innovative work at [https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/tree/main). + + + +## Overview + +This project provides a Docker-based setup for running the **Retrieval-based-Voice-Conversion-WebUI (RVC)** with **ROCm 5.4.2** support on older AMD GPUs like the **RX580 (gfx803 / Polaris)**. The goal is to enable machine learning workloads, specifically voice conversion, on hardware with limited or discontinued official ROCm support. This repository contains Dockerfiles and scripts to build and run the RVC WebUI, leveraging custom-compiled PyTorch for ROCm compatibility. + +This `README.md` summarizes the setup process, shares key experiences and challenges encountered while working with ROCm on older hardware, and provides instructions for building, running, and using the RVC application. + +--- + +## Key Features + +- **ROCm 5.4.2 Base Image**: A foundation with ROCm libraries and drivers for gfx803 compatibility. +- **Custom PyTorch Compilation**: PyTorch 2.0.1, TorchVision, and TorchAudio compiled from source for gfx803 architecture. +- **RVC WebUI Installation**: Setup for the original RVC project with necessary dependencies and pre-trained models. +- **Dockerized Environment**: Multi-stage Docker builds to ensure reproducibility and isolation. +- **GPU Recognition**: Successfully tested with `torch.cuda.is_available() == True` and GPU detection in RVC (`AMD Radeon RX 580 2048SP`). + +--- + +## Project Structure + +This folder (`rocm_5.4`) contains the following files for setting up RVC with ROCm 5.4.2: + +- **Dockerfile.base_rocm5.4_source_compile**: Stage 1 Dockerfile to build the base image with ROCm 5.4.2 and custom-compiled PyTorch. +- **Dockerfile.rvc_original**: Stage 2 Dockerfile to install the RVC WebUI on top of the base image. +- **entrypoint_rvc.sh**: Entrypoint script to activate the virtual environment, check/download pre-trained models, and start the RVC server. + +--- + +## Experiences and Lessons Learned with ROCm on Older Hardware (gfx803) + +Working with ROCm on older AMD GPUs like the RX580 (gfx803 / Polaris) presents unique challenges due to limited official support in newer versions. Below are key takeaways and experiences from this project that may help others working on similar setups: + +1. **Base Image Selection is Critical**: Start with a compatible ROCm base image (e.g., `rocm/dev-ubuntu-22.04:5.4.2-complete`) that matches the Ubuntu and Python versions required for ROCm. This ensures essential drivers and libraries are correctly installed. +2. **Hardware Support Limitations**: Official ROCm support for gfx803 ends at specific versions (e.g., 5.7 or earlier). Using versions beyond this can lead to compatibility issues, missing kernels, or low-level errors like `invalid device function` or `segfault in libamdhip64.so`. +3. **Official PyTorch ROCm Wheels May Be Misleading**: Wheels from `download.pytorch.org/whl/rocmX.Y` are often optimized for newer architectures and may not support older GPUs. If `torch.cuda.is_available()` returns `True` but runtime errors occur (e.g., `HIP error: invalid device function`), the wheels are likely incompatible. +4. **Source Compilation for PyTorch is Often Necessary**: For older hardware, compiling PyTorch from source with `PYTORCH_ROCM_ARCH=gfx803` ensures the correct kernels are built. While time-consuming, this is the most reliable way to achieve compatibility. +5. **Kernel Version Matters**: The host system's Linux kernel version can affect ROCm driver compatibility, especially with newer ROCm versions. Ensure your kernel matches versions listed as "supported" in ROCm documentation. +6. **C++ and Python Development Headers are Essential**: Source compilation requires tools like `build-essential`, `cmake`, `ninja-build`, and Python development headers (`python3.X-dev`) along with `pkg-config`. +7. **Third-Party Dependency Compilation**: PyTorch and other libraries (e.g., rocBLAS, TorchAudio) may compile additional C/C++ dependencies. Reading `install.sh` scripts and patching with `sed` if needed is common. Packages like `libmsgpack-dev` or `python3-joblib` may be required. +8. **Dependency Conflicts and Version Management**: + - Conflicts are inevitable when installing multiple libraries (e.g., PyTorch, RVC, Fairseq) due to overlapping dependencies like `torch`, `numpy`, or `gradio`. + - Using a `constraints.txt` file to pin critical versions (e.g., custom PyTorch wheels) is vital. + - Cleaning `requirements.txt` files with `sed` to remove conflicting lines (e.g., `torch*`) prevents `pip` from pulling incorrect versions. + - Installing conflicting extensions or packages in separate `RUN` blocks with `--no-deps` and manually installing dependencies with `-c constraints.txt` helps resolve issues. +9. **Docker Build vs. Runtime Environment**: GPU access is unavailable during `docker build`, so `torch.cuda.is_available()` will return `False`. The real test is during `docker run --device...` when it should return `True`. +10. **Gradio and Pandas Issues**: Version mismatches in libraries like NumPy, Pandas, or Gradio can cause errors (e.g., `numpy.dtype size changed`). Resolve these by finding compatible versions with `pip install`. +11. **Model Files and Volumes**: Ensure model files and caches are downloaded to the correct locations and mounted with `docker run -v ...` to avoid `FileNotFoundError` and issues after container restarts. + +These experiences highlight the level of detail and care required when working with ROCm on older hardware. They can guide future projects or troubleshooting efforts. + +--- + +## Retrieval-based-Voice-Conversion-WebUI (RVC) Usage + +### What is RVC? + +RVC (Retrieval-based-Voice-Conversion-WebUI) is an open-source tool for voice conversion, allowing users to transform audio input into a different voice using pre-trained models. It leverages deep learning frameworks like PyTorch for GPU-accelerated processing and provides a user-friendly web interface via Gradio. + +### How to Use RVC WebUI + +1. **Access the Interface**: After starting the container (see `docker run` instructions below), open your browser and navigate to `http://localhost:7865` (or the IP/port if running on a remote server). +2. **Load Models**: Ensure pre-trained models are available in the `/app/assets/` directory (handled by the entrypoint script or volume mounts). Select a model in the interface. +3. **Upload Audio**: Upload an audio file or record input directly in the interface. +4. **Convert Voice**: Adjust parameters if needed (e.g., pitch, half-precision settings via `config.py`) and click to process the audio. +5. **Download Result**: Once processed, download the converted audio from the interface. +6. **Training with Custom Data**: To train models with your own datasets, provide the path to your training data in the RVC interface. Ensure the path is a container-internal path mapped via a volume mount (see "File Paths in RVC Interface" below). + +### Screenshots of RVC WebUI + +To help users visualize the interface, below are placeholders for screenshots. These will be added to demonstrate key features like model selection, audio upload, and conversion output. + +- **Screenshot 1**: Model Train Interface (`screenshots/screenshot1.png`) +- ![Main Interface](screenshots/screenshot3.png) +- **Screenshot 2**: Model Selection & Extract (`screenshots/screenshot2.png`) +- ![Model Selection](screenshots/screenshot2.png) +- **Screenshot 3**: Audio Conversion Result (`screenshots/screenshot3.png`) +- ![Audio Conversion Result](screenshots/screenshot1.png) + +*Note*: Screenshots are not included in this README yet. They will be added in future updates. If you wish to contribute screenshots, please upload them to this repository and update the paths above. + +### File Paths in RVC Interface + +When using the RVC WebUI to specify paths for training datasets or input audio files, **always use container-internal paths** mapped via volume mounts in your `docker run` command. Docker containers are isolated from the host filesystem, so host paths (e.g., `/home/levent/Downloads/rvc_todo`) will result in `FileNotFoundError` unless explicitly mounted. + +**Steps to Use File Paths Correctly**: +1. **Mount Host Directories to Container**: Use the `-v` flag in your `docker run` command to map host directories to container-internal paths. For example: + - `-v /home/levent/rvc_training_data:/datasets` maps the host directory `/home/levent/rvc_training_data` to `/datasets` inside the container. +2. **Specify Container-Internal Paths in RVC**: In the RVC interface (e.g., "Trainset directory" field), enter the container-internal path. If your dataset is in `/home/levent/rvc_training_data/my_dataset` on the host, use `/datasets/my_dataset` in the RVC interface. +3. **Ensure Host Paths Exist**: Before running the container, create the host directories for volume mounts if they don't exist (e.g., `mkdir -p /home/levent/rvc_training_data`). + +**Example Error and Fix**: +- **Error**: Entering a host path like `/home/levent/Downloads/rvc_todo` directly in the RVC interface results in `FileNotFoundError: [Errno 2] No such file or directory`. +- **Fix**: Mount the host directory with `-v /home/levent/Downloads:/mnt/host_downloads` in your `docker run` command, then use `/mnt/host_downloads/rvc_todo` in the RVC interface. + +### Note on Errors and Output Tracking + +During usage, you may encounter error messages in the web interface even though the outputs are successfully generated. It is recommended to monitor the container logs for detailed information on the process and to confirm the status of output generation. You can view the logs by running the following command: + +```bash +docker logs rocm54_rvcwebui +``` +--- + + +## Docker Instructions + +### Prerequisites + +- **Docker**: Ensure Docker is installed on your system. +- **AMD GPU**: An AMD GPU with gfx803 architecture (e.g., RX580 / Polaris). Ensure ROCm-compatible drivers are installed on the host if not using a pre-configured base image. +- **Host Kernel Compatibility**: Verify your Linux kernel version matches ROCm 5.4.2 supported versions to avoid low-level errors. + + +--- + +## Detailed Build Process and Entrypoint Logic + +### Two-Stage Build Process + +This project employs a two-stage Docker build process to ensure a modular and efficient setup for running the Retrieval-based-Voice-Conversion-WebUI (RVC) with ROCm 5.4.2 on older AMD GPUs (gfx803 / Polaris, e.g., RX580). + +1. **Stage 1: Building the Base Image with ROCm and PyTorch** + The first stage focuses on creating a base image with the appropriate operating system (Ubuntu 22.04) and ROCm version (5.4.2). This stage involves compiling PyTorch 2.0.1, TorchVision, and TorchAudio from source to ensure compatibility with the gfx803 architecture. A verification block is included at the end of the compilation process to check and log version information (e.g., Python, PyTorch, ROCm availability). This log output is crucial for debugging and confirming the success of the build. Note that this build process can take several hours due to the source compilation of PyTorch and related libraries. The resulting image size for this stage is approximately **23.3 GB**. The build command for this stage is: + + + ```bash + docker build -f rocm_5.4/Dockerfile.base_rocm5.4_source_compile -t rocm542_gfx803_base:5.4.2 . + +2. **Stage 2: Building the RVC WebUI Image** + In the second stage, the base image (`rocm542_gfx803_base:5.4.2`) is used to build the application-specific image for RVC. This stage considers the system dependencies and requirements specific to RVC, installing necessary libraries, cloning the RVC repository, and setting up the Python environment with compatible dependencies. This build process is generally shorter than the first stage, often completing in less time. The resulting image size for this stage is approximately **26.4 GB**. The build command for this stage is: + + + ```bash + docker build -f rocm_5.4/Dockerfile.rvc_original -t rvc_webui_rocm:5.4.2 . + +### Entrypoint Logic with `entrypoint_rvc.sh` + +The `entrypoint_rvc.sh` script plays a critical role in preparing the container's runtime environment when it is first started. This script is copied into the image during the Stage 2 build and must be located in the same directory as `Dockerfile.rvc_original` to ensure it is included correctly. Its primary functions are: + +- **Environment Setup**: Activates the Python virtual environment (located at `/app/.venv`) to ensure the correct Python and dependency versions are used for RVC. +- **Model Download and Verification**: Checks if pre-trained models are present in the `/app/assets` directory (which is typically mounted to a host volume for persistence). If models are not found, it downloads a set of standard models from the Hugging Face repository using `aria2c`. This ensures the container is ready for immediate use. Additional models can be downloaded from the Hugging Face page ([https://huggingface.co/lj1995/VoiceConversionWebUI](https://huggingface.co/lj1995/VoiceConversionWebUI)) and copied to the appropriate host directories mapped via volume mounts (e.g., `/app/assets`, `/app/weights`). +- **Starting the RVC Server**: Launches the RVC WebUI server using `infer-web.py` (or `run.sh` if available) on the specified port (default: 7865), making the web interface accessible. + +This script ensures that even if models are not included in the Docker image (to keep the image size small), they are available at runtime through volume mounts or automatic download. + +### Running the Docker Container + +To run the RVC WebUI container with GPU access and persistent storage for models, weights, logs, and cache data, use the following command: + +```bash + docker run -d \ + --name rocm54_rvcwebui \ + --device=/dev/kfd --device=/dev/dri --group-add video \ + -e HSA_OVERRIDE_GFX_VERSION=8.0.3 \ + -e PYTORCH_ROCM_ARCH=gfx803 \ + -e RVC_PORT=7865 \ + -p 7865:7865 \ + -v /home/levent/rvc_training_data:/datasets \ + -v /virt-machines/dockerdata/rvc_rocm_data/assets:/app/assets \ + -v /virt-machines/dockerdata/rvc_rocm_data/weights:/app/weights \ + -v /virt-machines/dockerdata/rvc_rocm_data/logs:/app/logs \ + -v /virt-machines/dockerdata/applio_rocm/huggingface_cache:/root/.cache/huggingface \ + -e HUGGINGFACE_HUB_CACHE="/root/.cache/huggingface" \ + -v /virt-machines/dockerdata/applio_rocm/torch_cache:/root/.cache/torch \ + -e TORCH_HOME="/root/.cache/torch" \ + -v /virt-machines/dockerdata/applio_rocm/general_cache:/root/.cache \ + -e XDG_CACHE_HOME="/root/.cache" \ + rvc_webui_rocm:5.4.2 +``` + +#### Explanation of Volume Mounts and Parameters + +- **`--device=/dev/kfd` and `--device=/dev/dri`**: Grants the container access to the AMD GPU kernel driver and rendering interface for ROCm support. +- **`--group-add video`**: Adds the container user to the necessary group for GPU access (may already be handled if running as root). +- **`-e HSA_OVERRIDE_GFX_VERSION=8.0.3` and `-e PYTORCH_ROCM_ARCH=gfx803`**: Sets environment variables to ensure ROCm compatibility with gfx803 architecture. +- **`-e RVC_PORT=7865` and `-p 7865:7865`**: Configures and maps the container's port 7865 (default RVC port) to the host's port 7865, allowing access to the web interface at `http://localhost:7865`. +- **`-v /home/levent/rvc_training_data:/datasets`**: Mounts a host directory for training datasets. Use `/datasets/...` paths in the RVC interface for training data. +- **`-v /virt-machines/dockerdata/rvc_rocm_data/assets:/app/assets`**: Mounts a host directory to store pre-trained models persistently. This ensures models are not re-downloaded on container restarts. +- **`-v /virt-machines/dockerdata/rvc_rocm_data/weights:/app/weights`**: Mounts a host directory for RVC weights or processed data, critical for saving trained or processed data across container runs. +- **`-v /virt-machines/dockerdata/rvc_rocm_data/logs:/app/logs`**: Mounts a host directory for RVC logs, useful for debugging and tracking training processes. +- **`-v ...:/root/.cache/...` and `-e ...`**: Mounts and sets environment variables for various cache directories (Hugging Face, Torch, general cache) to persist model downloads and intermediate data on the host, reducing redundant downloads and improving performance. + +*Note*: Ensure the host paths for volumes exist before running the container. Create them with `mkdir -p /path/to/host/directory` if needed. Adjust paths in the `docker run` command to match your host system's directory structure. + +#### Additional Setup for ROCm on Linux + +To use ROCm on Linux, ensure all required drivers are installed as described in the official AMD ROCm documentation (refer to [AMD ROCm Installation Guide](https://docs.amd.com/)). You might also need to set the following environment variables on your host system before running the container (or include them in the `docker run` command as shown above): + +export ROCM_PATH=/opt/rocm +export HSA_OVERRIDE_GFX_VERSION=8.0.3 + +Make sure your user is part of the `render` and `video` groups to access GPU resources: + +sudo usermod -aG render $USERNAME +sudo usermod -aG video $USERNAME + +*Note*: Replace `$USERNAME` with your actual username on the host system. These commands ensure proper permissions for GPU access, which is essential for ROCm functionality. If running the container as root or with appropriate Docker configurations, these group settings may already be handled. + +### Logging Build Errors for Debugging + +During the build process, errors may occur due to dependency conflicts, compilation issues, or network problems. To facilitate debugging, it is recommended to redirect build logs to a file for later review. This captures both standard output and error messages. Below is an example command to build the Stage 2 image while saving logs to a file: + + ``` bash + docker build -f rocm_5.4/Dockerfile.rvc_original -t rvc_webui_rocm:5.4.2 . 2>&1 | tee build_rvc.log``` +``` + + +- **`2>&1`**: Redirects both standard output and standard error to the same stream. +- **`tee build_rvc.log`**: Writes the output to both the terminal and the specified log file (`build_rvc.log`). + +Similarly, for Stage 1, you can use: + +``` bash + docker build -f rocm_5.4/Dockerfile.base_rocm5.4_source_compile -t rocm542_gfx803_base:5.4.2 . 2>&1 | tee build_base.log +``` + + +Saving logs is especially useful for troubleshooting long builds or identifying specific errors in the compilation or dependency installation steps. After the build, review the log files (`build_base.log` or `build_rvc.log`) to pinpoint issues if the build fails. + +**Note on Build Logs**: For those interested in reviewing the build logs for debugging or analysis, the log files for both stages are available as text files. You can access them here: +- [Stage 1 Build Log1](logs/build_rocm542.log) +- [Stage 1 Build Log2](logs/build_rocm542_v1.log) +- [Stage 1 Build Log3](logs/build_rocm542_v2.log) +- [Stage 1 Build Log4](logs/build_rocm542_v3.log) +- [Stage 1 Build Log5](logs/build_rocm542_v4.log) + +- [Stage 2 Build Log1](logs/build_rvc.log) +- [Stage 2 Build Log2](logs/build_rvc1.log) +- [Stage 2 Build Log3](logs/build_rvc12.log) +- [Stage 2 Build Log4](logs/build_rvc13.log) +- [Stage 2 Build Log5](logs/build_rvc14.log) diff --git a/rocm_5.4/entrypoint_rvc.sh b/rocm_5.4/entrypoint_rvc.sh new file mode 100644 index 000000000..48f497f56 --- /dev/null +++ b/rocm_5.4/entrypoint_rvc.sh @@ -0,0 +1,63 @@ +#!/bin/bash +set -e + +# Entrypoint Script for RVC WebUI with ROCm 5.4.2 for RX580 / Polaris / gfx803 AMD GPU +# Created by Levent Sunay (lsunay) - May-April 2025 +# +# Description: +# This script serves as the entrypoint for the Retrieval-based-Voice-Conversion-WebUI (RVC) Docker container. +# It activates the Python virtual environment, downloads necessary pre-trained models if not already present, +# and starts the RVC server on the specified port. + +APP_DIR="/app" # Main directory where RVC files are located +echo "--- RVC Entrypoint Started ---" +cd "$APP_DIR" +echo "Current directory: $(pwd)" +echo "Python3 version: $(python3 --version)" + +VENV_PATH="./.venv" +echo "Entrypoint: Activating Python venv for RVC at ${VENV_PATH}..." +if [ -f "${VENV_PATH}/bin/activate" ]; then + source "${VENV_PATH}/bin/activate" + echo "RVC Python venv activated. Active Python: $(python --version)" +else + echo "ERROR: RVC Python venv not found at ${VENV_PATH}/bin/activate" + exit 1 +fi + +# === Model Download (Only if required files are not present under assets) === +ASSETS_DIR="./assets" +HUBERT_FILE="${ASSETS_DIR}/hubert/hubert_base.pt" +if [ ! -f "${HUBERT_FILE}" ]; then + echo "Required model files not found in ${ASSETS_DIR}. Downloading RVC pre-models..." + mkdir -p "${ASSETS_DIR}/pretrained_v2" "${ASSETS_DIR}/uvr5_weights" "${ASSETS_DIR}/hubert" "${ASSETS_DIR}/rmvpe" + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/D40k.pth -d "${ASSETS_DIR}/pretrained_v2/" -o D40k.pth + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/G40k.pth -d "${ASSETS_DIR}/pretrained_v2/" -o G40k.pth + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0D40k.pth -d "${ASSETS_DIR}/pretrained_v2/" -o f0D40k.pth + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0G40k.pth -d "${ASSETS_DIR}/pretrained_v2/" -o f0G40k.pth + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d "${ASSETS_DIR}/uvr5_weights/" -o HP2-人声vocals+非人声instrumentals.pth + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d "${ASSETS_DIR}/uvr5_weights/" -o HP5-主旋律人声vocals+其他instrumentals.pth + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d "${ASSETS_DIR}/hubert/" -o hubert_base.pt + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d "${ASSETS_DIR}/rmvpe/" -o rmvpe.pt + aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.onnx -d "${ASSETS_DIR}/rmvpe/" -o rmvpe.onnx + echo "RVC pre-models downloaded to ${ASSETS_DIR}." +else + echo "RVC pre-models already found in ${ASSETS_DIR}." +fi +# === End of Model Download === + +echo "Starting RVC server..." +if [ -f "infer-web.py" ]; then + echo "Found infer-web.py, executing with port ${RVC_PORT:-7865}" + # Removed --host 0.0.0.0 argument. + # --pycmd python (or python3) can be added based on RVC's expectation. + # Gradio typically uses server_name="0.0.0.0" internally in the code. + exec python infer-web.py --port ${RVC_PORT:-7865} --pycmd python "$@" # <-- Fixed line +elif [ -f "run.sh" ]; then # If RVC's own run.sh exists, it can be used instead. + echo "Found run.sh, executing it..." + # Check if run.sh accepts arguments. + exec ./run.sh # It might accept arguments like --port ${RVC_PORT:-7865} +else + echo "ERROR: Main RVC script (infer-web.py or run.sh) not found in $(pwd)" + exit 1 +fi diff --git a/rocm_5.4/logs/build_rocm542.log b/rocm_5.4/logs/build_rocm542.log new file mode 100644 index 000000000..db5225355 --- /dev/null +++ b/rocm_5.4/logs/build_rocm542.log @@ -0,0 +1,1350 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 7.12kB done +#1 DONE 0.1s + +#2 [internal] load metadata for docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#2 DONE 1.7s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.1s + +#4 [ 1/18] FROM docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete@sha256:764f768bacf7373d13afab326d45c81faa5c2cd6201b575afb3212e6856f90b5 +#4 resolve docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete@sha256:764f768bacf7373d13afab326d45c81faa5c2cd6201b575afb3212e6856f90b5 0.0s done +#4 sha256:a80f6d4e82881dc329534ec7316101b5764657c25a5a0c5fecafc40e6fa28c39 0B / 236B 0.1s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 0B / 2.96GB 0.1s +#4 sha256:764f768bacf7373d13afab326d45c81faa5c2cd6201b575afb3212e6856f90b5 1.16kB / 1.16kB done +#4 sha256:de68d4f90c96ce7f8fd7a75e804dc0c96d72022c2af93d36a0e78f4b0b60a624 3.78kB / 3.78kB done +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 0B / 30.43MB 0.1s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 2.10MB / 30.43MB 0.6s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 4.19MB / 30.43MB 0.8s +#4 sha256:a80f6d4e82881dc329534ec7316101b5764657c25a5a0c5fecafc40e6fa28c39 236B / 236B 0.9s done +#4 sha256:b3a946840785caad93bd841d97754a90f2c79ea7920de083079ab035350d85f0 0B / 654B 0.9s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 6.29MB / 30.43MB 1.0s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 8.39MB / 30.43MB 1.2s +#4 sha256:b3a946840785caad93bd841d97754a90f2c79ea7920de083079ab035350d85f0 654B / 654B 1.2s +#4 sha256:b3a946840785caad93bd841d97754a90f2c79ea7920de083079ab035350d85f0 654B / 654B 1.2s done +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 10.49MB / 30.43MB 1.5s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 14.68MB / 30.43MB 2.0s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 17.83MB / 30.43MB 2.5s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 19.92MB / 30.43MB 2.7s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 22.02MB / 30.43MB 3.0s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 26.21MB / 30.43MB 3.5s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 28.31MB / 30.43MB 3.8s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 30.43MB / 30.43MB 4.0s +#4 sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 30.43MB / 30.43MB 4.1s done +#4 extracting sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 0.1s +#4 extracting sha256:6e3729cf69e0ce2de9e779575a1fec8b7fb5efdfa822829290ab6d5d1bc3e797 0.6s done +#4 extracting sha256:a80f6d4e82881dc329534ec7316101b5764657c25a5a0c5fecafc40e6fa28c39 done +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 15.73MB / 2.96GB 5.3s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 42.99MB / 2.96GB 10.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 100.66MB / 2.96GB 15.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 157.29MB / 2.96GB 20.6s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 217.06MB / 2.96GB 25.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 272.63MB / 2.96GB 30.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 332.40MB / 2.96GB 35.8s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 387.97MB / 2.96GB 40.8s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 445.64MB / 2.96GB 45.8s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 502.27MB / 2.96GB 50.9s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 562.04MB / 2.96GB 56.0s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 618.66MB / 2.96GB 61.1s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 677.38MB / 2.96GB 66.1s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 734.00MB / 2.96GB 71.2s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 792.72MB / 2.96GB 76.3s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 850.40MB / 2.96GB 81.3s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 908.07MB / 2.96GB 86.4s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 967.84MB / 2.96GB 91.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.02GB / 2.96GB 96.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.08GB / 2.96GB 101.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.14GB / 2.96GB 106.8s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.20GB / 2.96GB 111.8s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.26GB / 2.96GB 116.9s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.31GB / 2.96GB 121.9s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.37GB / 2.96GB 127.0s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.43GB / 2.96GB 132.2s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.49GB / 2.96GB 137.2s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.55GB / 2.96GB 142.4s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.60GB / 2.96GB 147.4s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.66GB / 2.96GB 152.6s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.72GB / 2.96GB 157.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.78GB / 2.96GB 162.8s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.84GB / 2.96GB 168.0s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.90GB / 2.96GB 173.2s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 1.95GB / 2.96GB 178.3s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.02GB / 2.96GB 183.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.07GB / 2.96GB 188.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.13GB / 2.96GB 193.6s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.19GB / 2.96GB 198.6s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.25GB / 2.96GB 203.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.30GB / 2.96GB 208.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.36GB / 2.96GB 213.9s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.42GB / 2.96GB 219.0s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.48GB / 2.96GB 224.0s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.54GB / 2.96GB 229.1s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.60GB / 2.96GB 234.2s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.65GB / 2.96GB 239.3s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.71GB / 2.96GB 244.4s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.77GB / 2.96GB 249.4s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.83GB / 2.96GB 254.5s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.89GB / 2.96GB 259.7s +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.94GB / 2.96GB 264.7s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b +#4 sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 2.96GB / 2.96GB 266.2s done +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 5.1s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 10.2s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 15.2s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 20.3s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 25.4s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 30.5s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 35.5s +#4 extracting sha256:38e662cf794b832c758e71bfbfd3b0302f4e33468f774131d50bd9dd194f2d3b 40.6s done +#4 extracting sha256:b3a946840785caad93bd841d97754a90f2c79ea7920de083079ab035350d85f0 +#4 extracting sha256:b3a946840785caad93bd841d97754a90f2c79ea7920de083079ab035350d85f0 done +#4 DONE 310.9s + +#5 [ 2/18] RUN echo "MAX_JOBS=14" >> /etc/environment && echo "HSA_OVERRIDE_GFX_VERSION=8.0.3" >> /etc/environment && echo "PYTORCH_ROCM_ARCH=gfx803" >> /etc/environment && echo "ROCM_ARCH=gfx803" >> /etc/environment && echo "TORCH_BLAS_PREFER_HIPBLASLT=0" >> /etc/environment && echo "ROC_ENABLE_PRE_VEGA=1" >> /etc/environment && echo "PIP_ROOT_USER_ACTION=ignore" >> /etc/environment && true +#5 DONE 9.7s + +#6 [ 3/18] RUN apt-get update -y && apt-get install -y --no-install-recommends git wget curl ffmpeg ninja-build && python3 -m pip install --upgrade pip wheel setuptools && apt-get clean && rm -rf /var/lib/apt/lists/* && true +#6 0.542 Get:1 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] +#6 0.542 Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] +#6 0.625 Get:3 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy InRelease [5415 B] +#6 0.678 Get:4 https://repo.radeon.com/rocm/apt/5.4.2 jammy InRelease [2603 B] +#6 0.806 Get:5 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy/main amd64 Packages [9601 B] +#6 0.896 Get:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] +#6 0.908 Get:7 https://repo.radeon.com/rocm/apt/5.4.2 jammy/main amd64 Packages [31.8 kB] +#6 0.979 Get:8 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [47.7 kB] +#6 0.982 Get:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] +#6 1.061 Get:10 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2901 kB] +#6 1.069 Get:11 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB] +#6 1.098 Get:12 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB] +#6 1.146 Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB] +#6 1.911 Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [4282 kB] +#6 2.592 Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1245 kB] +#6 3.480 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB] +#6 3.630 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [4436 kB] +#6 4.043 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1546 kB] +#6 4.192 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [55.7 kB] +#6 4.197 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3212 kB] +#6 4.510 Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.2 kB] +#6 4.517 Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB] +#6 4.622 Fetched 38.2 MB in 4s (8938 kB/s) +#6 4.622 Reading package lists... +#6 5.353 W: https://repo.radeon.com/amdgpu/5.4.2/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#6 5.353 W: https://repo.radeon.com/rocm/apt/5.4.2/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#6 5.385 Reading package lists... +#6 6.084 Building dependency tree... +#6 6.243 Reading state information... +#6 6.391 The following additional packages will be installed: +#6 6.391 fontconfig fontconfig-config fonts-dejavu-core gcc-12-base git-man libaom3 +#6 6.391 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 libatomic1 +#6 6.391 libavc1394-0 libavcodec58 libavdevice58 libavfilter7 libavformat58 +#6 6.391 libavutil56 libblas3 libbluray2 libbs2b0 libcaca0 libcairo-gobject2 +#6 6.391 libcairo2 libcc1-0 libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 +#6 6.391 libcodec2-1.0 libcurl3-gnutls libcurl4 libdatrie1 libdav1d5 libdbus-1-3 +#6 6.391 libdc1394-25 libdecor-0-0 libdeflate0 liberror-perl libflac8 libflite1 +#6 6.391 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgcc-s1 +#6 6.391 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 libgme0 libgomp1 +#6 6.391 libgraphite2-3 libgsm1 libharfbuzz0b libiec61883-0 libitm1 libjack-jackd2-0 +#6 6.392 libjbig0 libjpeg-turbo8 libjpeg8 liblapack3 liblilv-0-0 liblsan0 libmfx1 +#6 6.392 libmp3lame0 libmpg123-0 libmysofa1 libnorm1 libogg0 libopenal-data +#6 6.392 libopenal1 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0 +#6 6.392 libpangocairo-1.0-0 libpangoft2-1.0-0 libpgm-5.3-0 libpixman-1-0 libpng16-16 +#6 6.392 libpocketsphinx3 libpostproc55 libpulse0 libquadmath0 librabbitmq4 +#6 6.392 libraw1394-11 librsvg2-2 librubberband2 libsamplerate0 libsdl2-2.0-0 +#6 6.392 libserd-0-0 libshine3 libslang2 libsnappy1v5 libsndfile1 libsndio7.0 +#6 6.392 libsodium23 libsord-0-0 libsoxr0 libspeex1 libsphinxbase3 libsratom-0-0 +#6 6.392 libsrt1.4-gnutls libssh-gcrypt-4 libstdc++6 libswresample3 libswscale5 +#6 6.392 libthai-data libthai0 libtheora0 libtiff5 libtwolame0 libubsan1 libudfread0 +#6 6.392 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 +#6 6.392 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx7 libwayland-client0 +#6 6.392 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 +#6 6.392 libx264-163 libx265-199 libxcb-randr0 libxcb-render0 libxcb-shape0 +#6 6.392 libxcursor1 libxi6 libxinerama1 libxkbcommon0 libxrandr2 libxrender1 libxss1 +#6 6.392 libxv1 libxvidcore4 libzimg2 libzmq5 libzvbi-common libzvbi0 +#6 6.392 ocl-icd-libopencl1 shared-mime-info ucf x11-common xkb-data +#6 6.393 Suggested packages: +#6 6.393 ffmpeg-doc gettext-base git-daemon-run | git-daemon-sysvinit git-doc +#6 6.393 git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn +#6 6.393 libasound2-plugins alsa-utils libcuda1 libnvcuvid1 libnvidia-encode1 +#6 6.393 libbluray-bdj jackd2 libportaudio2 opus-tools pulseaudio libraw1394-doc +#6 6.393 librsvg2-bin xdg-utils serdi sndiod sordi speex opencl-icd +#6 6.393 Recommended packages: +#6 6.393 less ssh-client alsa-ucm-conf alsa-topology-conf libaacs0 dbus +#6 6.393 libdecor-0-plugin-1-cairo | libdecor-0-plugin-1 libgdk-pixbuf2.0-bin +#6 6.393 pocketsphinx-en-us librsvg2-common va-driver-all | va-driver +#6 6.393 vdpau-driver-all | vdpau-driver +#6 6.660 The following NEW packages will be installed: +#6 6.660 ffmpeg fontconfig fontconfig-config fonts-dejavu-core git git-man libaom3 +#6 6.660 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 libavc1394-0 +#6 6.660 libavcodec58 libavdevice58 libavfilter7 libavformat58 libavutil56 libblas3 +#6 6.660 libbluray2 libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2 +#6 6.660 libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-1.0 libcurl3-gnutls +#6 6.660 libdatrie1 libdav1d5 libdbus-1-3 libdc1394-25 libdecor-0-0 libdeflate0 +#6 6.660 liberror-perl libflac8 libflite1 libfontconfig1 libfreetype6 libfribidi0 +#6 6.660 libgbm1 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 libgme0 +#6 6.661 libgraphite2-3 libgsm1 libharfbuzz0b libiec61883-0 libjack-jackd2-0 libjbig0 +#6 6.661 libjpeg-turbo8 libjpeg8 liblapack3 liblilv-0-0 libmfx1 libmp3lame0 +#6 6.661 libmpg123-0 libmysofa1 libnorm1 libogg0 libopenal-data libopenal1 +#6 6.661 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0 libpangocairo-1.0-0 +#6 6.661 libpangoft2-1.0-0 libpgm-5.3-0 libpixman-1-0 libpng16-16 libpocketsphinx3 +#6 6.661 libpostproc55 libpulse0 librabbitmq4 libraw1394-11 librsvg2-2 librubberband2 +#6 6.661 libsamplerate0 libsdl2-2.0-0 libserd-0-0 libshine3 libslang2 libsnappy1v5 +#6 6.661 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0 libspeex1 +#6 6.661 libsphinxbase3 libsratom-0-0 libsrt1.4-gnutls libssh-gcrypt-4 libswresample3 +#6 6.661 libswscale5 libthai-data libthai0 libtheora0 libtiff5 libtwolame0 +#6 6.661 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 libvdpau1 +#6 6.661 libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx7 +#6 6.661 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 +#6 6.661 libwebp7 libwebpmux3 libx264-163 libx265-199 libxcb-randr0 libxcb-render0 +#6 6.661 libxcb-shape0 libxcursor1 libxi6 libxinerama1 libxkbcommon0 libxrandr2 +#6 6.661 libxrender1 libxss1 libxv1 libxvidcore4 libzimg2 libzmq5 libzvbi-common +#6 6.661 libzvbi0 ninja-build ocl-icd-libopencl1 shared-mime-info ucf wget x11-common +#6 6.661 xkb-data +#6 6.662 The following packages will be upgraded: +#6 6.662 curl gcc-12-base libatomic1 libcc1-0 libcurl4 libgcc-s1 libgomp1 libitm1 +#6 6.663 liblsan0 libquadmath0 libstdc++6 libubsan1 +#6 7.016 12 upgraded, 146 newly installed, 0 to remove and 131 not upgraded. +#6 7.016 Need to get 73.5 MB of archives. +#6 7.016 After this operation, 221 MB of additional disk space will be used. +#6 7.016 Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04 [10.4 kB] +#6 7.158 Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB] +#6 7.948 Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-12-base amd64 12.3.0-1ubuntu1~22.04 [20.1 kB] +#6 7.952 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++6 amd64 12.3.0-1ubuntu1~22.04 [699 kB] +#6 8.065 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB] +#6 8.088 Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1069 kB] +#6 8.246 Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB] +#6 8.250 Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04 [126 kB] +#6 8.269 Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB] +#6 8.276 Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-s1 amd64 12.3.0-1ubuntu1~22.04 [53.9 kB] +#6 8.284 Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libapparmor1 amd64 3.0.4-2ubuntu2.4 [39.7 kB] +#6 8.290 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdbus-1-3 amd64 1.12.20-2ubuntu4.1 [189 kB] +#6 8.318 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfribidi0 amd64 1.0.8-2ubuntu3.1 [26.1 kB] +#6 8.321 Get:14 http://archive.ubuntu.com/ubuntu jammy/main amd64 libslang2 amd64 2.3.2-5build4 [468 kB] +#6 8.391 Get:15 http://archive.ubuntu.com/ubuntu jammy/main amd64 shared-mime-info amd64 2.1-2 [454 kB] +#6 8.782 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 ucf all 3.0043 [56.1 kB] +#6 8.783 Get:17 http://archive.ubuntu.com/ubuntu jammy/main amd64 xkb-data all 2.33-1 [394 kB] +#6 8.785 Get:18 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpng16-16 amd64 1.6.37-3build5 [191 kB] +#6 8.787 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libusb-1.0-0 amd64 2:1.0.25-1ubuntu2 [52.7 kB] +#6 8.787 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 wget amd64 1.21.2-2ubuntu1.1 [339 kB] +#6 8.790 Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 curl amd64 7.81.0-1ubuntu1.20 [194 kB] +#6 8.791 Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl4 amd64 7.81.0-1ubuntu1.20 [289 kB] +#6 8.795 Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libaom3 amd64 3.3.0-1ubuntu0.1 [1748 kB] +#6 8.950 Get:24 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva2 amd64 2.14.0-1 [65.0 kB] +#6 8.956 Get:25 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmfx1 amd64 22.3.0-1 [3105 kB] +#6 9.404 Get:26 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-drm2 amd64 2.14.0-1 [7502 B] +#6 9.404 Get:27 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-x11-2 amd64 2.14.0-1 [12.6 kB] +#6 9.404 Get:28 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvdpau1 amd64 1.4-3build2 [27.0 kB] +#6 9.404 Get:29 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ocl-icd-libopencl1 amd64 2.2.14-3 [39.1 kB] +#6 9.405 Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavutil56 amd64 7:4.4.2-0ubuntu0.22.04.1 [290 kB] +#6 9.536 Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6 amd64 2.11.1+dfsg-1ubuntu0.3 [388 kB] +#6 9.712 Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB] +#6 9.812 Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB] +#6 9.814 Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB] +#6 9.825 Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpixman-1-0 amd64 0.40.0-1ubuntu0.22.04.1 [264 kB] +#6 9.847 Get:36 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0 amd64 1.14-3ubuntu3 [16.4 kB] +#6 9.848 Get:37 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrender1 amd64 1:0.9.10-1build4 [19.7 kB] +#6 9.848 Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2 amd64 1.16.0-5ubuntu2 [628 kB] +#6 9.852 Get:39 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libcodec2-1.0 amd64 1.0.1-3 [8435 kB] +#6 10.62 Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdav1d5 amd64 0.9.2-1 [463 kB] +#6 10.66 Get:41 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgsm1 amd64 1.0.19-1 [27.7 kB] +#6 10.66 Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmp3lame0 amd64 3.100-3build2 [141 kB] +#6 10.67 Get:43 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libopenjp2-7 amd64 2.4.0-6ubuntu0.3 [158 kB] +#6 10.68 Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus0 amd64 1.3.1-0.1build2 [203 kB] +#6 10.70 Get:45 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo-gobject2 amd64 1.16.0-5ubuntu2 [19.4 kB] +#6 10.70 Get:46 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf2.0-common all 2.42.8+dfsg-1ubuntu0.3 [5630 B] +#6 10.70 Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB] +#6 10.72 Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2264 B] +#6 10.75 Get:49 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB] +#6 10.89 Get:50 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB] +#6 10.89 Get:51 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB] +#6 10.91 Get:52 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.10 [185 kB] +#6 10.93 Get:53 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.8+dfsg-1ubuntu0.3 [148 kB] +#6 10.94 Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig amd64 2.13.1-4.2ubuntu5 [177 kB] +#6 10.96 Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgraphite2-3 amd64 1.3.14-1build2 [71.3 kB] +#6 10.96 Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz0b amd64 2.7.4-1ubuntu3.2 [353 kB] +#6 10.99 Get:57 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai-data all 0.1.29-1build1 [162 kB] +#6 11.01 Get:58 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdatrie1 amd64 0.2.13-2 [19.9 kB] +#6 11.03 Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai0 amd64 0.1.29-1build1 [19.2 kB] +#6 11.17 Get:60 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpango-1.0-0 amd64 1.50.6+ds-2ubuntu1 [230 kB] +#6 11.19 Get:61 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangoft2-1.0-0 amd64 1.50.6+ds-2ubuntu1 [54.0 kB] +#6 11.19 Get:62 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangocairo-1.0-0 amd64 1.50.6+ds-2ubuntu1 [39.8 kB] +#6 11.19 Get:63 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 librsvg2-2 amd64 2.52.5+dfsg-3ubuntu0.2 [2974 kB] +#6 11.45 Get:64 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libshine3 amd64 3.1.1-2 [23.2 kB] +#6 11.45 Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsnappy1v5 amd64 1.1.8-1build3 [17.5 kB] +#6 11.46 Get:66 http://archive.ubuntu.com/ubuntu jammy/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu3 [57.9 kB] +#6 11.46 Get:67 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsoxr0 amd64 0.1.3-4build2 [79.8 kB] +#6 11.47 Get:68 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswresample3 amd64 7:4.4.2-0ubuntu0.22.04.1 [62.2 kB] +#6 11.47 Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg0 amd64 1.3.5-0ubuntu3 [22.9 kB] +#6 11.47 Get:70 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu4 [209 kB] +#6 11.49 Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtwolame0 amd64 0.4.0-2build2 [52.5 kB] +#6 11.50 Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis0a amd64 1.3.7-1build2 [99.2 kB] +#6 11.61 Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisenc2 amd64 1.3.7-1build2 [82.6 kB] +#6 11.62 Get:74 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libvpx7 amd64 1.11.0-2ubuntu2.3 [1078 kB] +#6 11.71 Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebpmux3 amd64 1.2.2-2ubuntu0.22.04.2 [20.5 kB] +#6 11.71 Get:76 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx264-163 amd64 2:0.163.3060+git5db6aa6-2build1 [591 kB] +#6 11.76 Get:77 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx265-199 amd64 3.5-2 [1170 kB] +#6 11.86 Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libxvidcore4 amd64 2:1.3.7-1 [201 kB] +#6 11.89 Get:79 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi-common all 0.2.35-19 [35.5 kB] +#6 11.89 Get:80 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi0 amd64 0.2.35-19 [262 kB] +#6 11.91 Get:81 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavcodec58 amd64 7:4.4.2-0ubuntu0.22.04.1 [5567 kB] +#6 12.39 Get:82 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2-data all 1.2.6.1-1ubuntu1 [19.1 kB] +#6 12.39 Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2 amd64 1.2.6.1-1ubuntu1 [390 kB] +#6 12.42 Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 libraw1394-11 amd64 2.1.2-2build2 [27.0 kB] +#6 12.42 Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 libavc1394-0 amd64 0.5.4-5build2 [17.0 kB] +#6 12.42 Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libass9 amd64 1:0.15.2-1 [97.5 kB] +#6 12.43 Get:87 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libudfread0 amd64 1.1.2-1 [16.2 kB] +#6 12.43 Get:88 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbluray2 amd64 1:1.3.1-1 [159 kB] +#6 12.45 Get:89 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libchromaprint1 amd64 1.5.1-2 [28.4 kB] +#6 12.45 Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgme0 amd64 0.6.3-2 [127 kB] +#6 12.53 Get:91 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libmpg123-0 amd64 1.29.3-1ubuntu0.1 [172 kB] +#6 12.66 Get:92 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisfile3 amd64 1.3.7-1build2 [17.1 kB] +#6 12.66 Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenmpt0 amd64 0.6.1-1 [592 kB] +#6 12.72 Get:94 http://archive.ubuntu.com/ubuntu jammy/main amd64 librabbitmq4 amd64 0.10.0-1ubuntu2 [39.3 kB] +#6 12.72 Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsrt1.4-gnutls amd64 1.4.4-4 [309 kB] +#6 12.74 Get:96 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssh-gcrypt-4 amd64 0.9.6-2ubuntu0.22.04.3 [223 kB] +#6 12.76 Get:97 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB] +#6 12.78 Get:98 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB] +#6 12.80 Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsodium23 amd64 1.0.18-1build2 [164 kB] +#6 12.81 Get:100 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzmq5 amd64 4.3.4-2 [256 kB] +#6 12.83 Get:101 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavformat58 amd64 7:4.4.2-0ubuntu0.22.04.1 [1103 kB] +#6 13.10 Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbs2b0 amd64 3.1.0+dfsg-2.2build1 [10.2 kB] +#6 13.17 Get:103 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libflite1 amd64 2.2-3 [13.7 MB] +#6 17.01 Get:104 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libserd-0-0 amd64 0.30.10-2 [40.8 kB] +#6 17.01 Get:105 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsord-0-0 amd64 0.16.8-2 [21.2 kB] +#6 17.02 Get:106 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsratom-0-0 amd64 0.6.8-1 [17.0 kB] +#6 17.02 Get:107 http://archive.ubuntu.com/ubuntu jammy/universe amd64 liblilv-0-0 amd64 0.24.12-2 [42.8 kB] +#6 17.02 Get:108 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmysofa1 amd64 1.2.1~dfsg0-1 [1157 kB] +#6 17.19 Get:109 http://archive.ubuntu.com/ubuntu jammy/main amd64 libblas3 amd64 3.10.0-2ubuntu1 [228 kB] +#6 17.22 Get:110 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgfortran5 amd64 12.3.0-1ubuntu1~22.04 [879 kB] +#6 17.34 Get:111 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblapack3 amd64 3.10.0-2ubuntu1 [2504 kB] +#6 17.67 Get:112 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasyncns0 amd64 0.8-6build2 [12.8 kB] +#6 17.68 Get:113 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac8 amd64 1.3.3-2ubuntu0.2 [111 kB] +#6 17.69 Get:114 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1 amd64 1.0.31-2ubuntu0.2 [196 kB] +#6 17.71 Get:115 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpulse0 amd64 1:15.99.1+dfsg1-1ubuntu2.2 [298 kB] +#6 17.74 Get:116 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsphinxbase3 amd64 0.8+5prealpha+1-13build1 [126 kB] +#6 17.76 Get:117 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpocketsphinx3 amd64 0.8.0+real5prealpha+1-14ubuntu1 [132 kB] +#6 17.77 Get:118 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libpostproc55 amd64 7:4.4.2-0ubuntu0.22.04.1 [60.1 kB] +#6 17.78 Get:119 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsamplerate0 amd64 0.2.2-1build1 [1359 kB] +#6 17.93 Get:120 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librubberband2 amd64 2.0.0-2 [90.0 kB] +#6 17.94 Get:121 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswscale5 amd64 7:4.4.2-0ubuntu0.22.04.1 [180 kB] +#6 17.96 Get:122 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libvidstab1.1 amd64 1.1.0-2 [35.0 kB] +#6 17.97 Get:123 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzimg2 amd64 3.0.3+ds1-1 [241 kB] +#6 17.99 Get:124 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavfilter7 amd64 7:4.4.2-0ubuntu0.22.04.1 [1496 kB] +#6 18.14 Get:125 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcaca0 amd64 0.99.beta19-2.2ubuntu4 [224 kB] +#6 18.17 Get:126 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcdio19 amd64 2.1.0-3ubuntu0.2 [63.6 kB] +#6 18.17 Get:127 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-cdda2 amd64 10.2+2.0.0-1build3 [16.7 kB] +#6 18.18 Get:128 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-paranoia2 amd64 10.2+2.0.0-1build3 [15.9 kB] +#6 18.18 Get:129 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdc1394-25 amd64 2.2.6-4 [88.8 kB] +#6 18.19 Get:130 http://archive.ubuntu.com/ubuntu jammy/main amd64 libiec61883-0 amd64 1.2.0-4build3 [25.9 kB] +#6 18.19 Get:131 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjack-jackd2-0 amd64 1.9.20~dfsg-1 [293 kB] +#6 18.22 Get:132 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal-data all 1:1.19.1-2build3 [164 kB] +#6 18.24 Get:133 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsndio7.0 amd64 1.8.1-1.1 [29.3 kB] +#6 18.24 Get:134 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal1 amd64 1:1.19.1-2build3 [535 kB] +#6 18.29 Get:135 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-client0 amd64 1.20.0-1ubuntu0.1 [25.9 kB] +#6 18.29 Get:136 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdecor-0-0 amd64 0.1.0-3build1 [15.1 kB] +#6 18.30 Get:137 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-server0 amd64 1.20.0-1ubuntu0.1 [34.3 kB] +#6 18.30 Get:138 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-randr0 amd64 1.14-3ubuntu3 [18.3 kB] +#6 18.30 Get:139 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgbm1 amd64 23.2.1-1ubuntu3.1~22.04.3 [33.5 kB] +#6 18.31 Get:140 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-cursor0 amd64 1.20.0-1ubuntu0.1 [10.7 kB] +#6 18.34 Get:141 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-egl1 amd64 1.20.0-1ubuntu0.1 [5582 B] +#6 18.34 Get:142 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcursor1 amd64 1:1.2.0-2build4 [20.9 kB] +#6 18.34 Get:143 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxi6 amd64 2:1.8-1build1 [32.6 kB] +#6 18.40 Get:144 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxinerama1 amd64 2:1.1.4-3 [7382 B] +#6 18.40 Get:145 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxkbcommon0 amd64 1.4.0-1 [125 kB] +#6 18.41 Get:146 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrandr2 amd64 2:1.5.2-1build1 [20.4 kB] +#6 18.41 Get:147 http://archive.ubuntu.com/ubuntu jammy/main amd64 x11-common all 1:7.7+23ubuntu2 [23.4 kB] +#6 18.41 Get:148 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxss1 amd64 1:1.2.3-1build2 [8476 B] +#6 18.41 Get:149 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsdl2-2.0-0 amd64 2.0.20+dfsg-2ubuntu1.22.04.1 [582 kB] +#6 18.47 Get:150 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shape0 amd64 1.14-3ubuntu3 [6158 B] +#6 18.47 Get:151 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxv1 amd64 2:1.0.11-1build2 [11.2 kB] +#6 18.48 Get:152 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavdevice58 amd64 7:4.4.2-0ubuntu0.22.04.1 [87.5 kB] +#6 18.48 Get:153 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 ffmpeg amd64 7:4.4.2-0ubuntu0.22.04.1 [1696 kB] +#6 18.66 Get:154 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl3-gnutls amd64 7.81.0-1ubuntu1.20 [284 kB] +#6 18.68 Get:155 http://archive.ubuntu.com/ubuntu jammy/main amd64 liberror-perl all 0.17029-1 [26.5 kB] +#6 18.69 Get:156 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git-man all 1:2.34.1-1ubuntu1.12 [955 kB] +#6 18.78 Get:157 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git amd64 1:2.34.1-1ubuntu1.12 [3165 kB] +#6 19.08 Get:158 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ninja-build amd64 1.10.1-1 [111 kB] +#6 19.23 debconf: delaying package configuration, since apt-utils is not installed +#6 19.26 Fetched 73.5 MB in 12s (5920 kB/s) +#6 19.30 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26227 files and directories currently installed.) +#6 19.33 Preparing to unpack .../libatomic1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 19.36 Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 19.44 Preparing to unpack .../libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 19.47 Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 19.56 Preparing to unpack .../gcc-12-base_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 19.58 Unpacking gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 19.67 Setting up gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 19.75 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26227 files and directories currently installed.) +#6 19.76 Preparing to unpack .../libstdc++6_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 19.80 Unpacking libstdc++6:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 19.92 Setting up libstdc++6:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 20.00 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26227 files and directories currently installed.) +#6 20.02 Preparing to unpack .../0-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 20.04 Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 20.13 Preparing to unpack .../1-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 20.15 Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 20.26 Preparing to unpack .../2-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 20.29 Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 20.37 Preparing to unpack .../3-libgomp1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 20.40 Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 20.48 Preparing to unpack .../4-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 20.51 Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 20.59 Preparing to unpack .../5-libgcc-s1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 20.62 Unpacking libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 20.70 Setting up libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 20.78 Selecting previously unselected package libapparmor1:amd64. +#6 20.78 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26227 files and directories currently installed.) +#6 20.79 Preparing to unpack .../000-libapparmor1_3.0.4-2ubuntu2.4_amd64.deb ... +#6 20.80 Unpacking libapparmor1:amd64 (3.0.4-2ubuntu2.4) ... +#6 20.87 Selecting previously unselected package libdbus-1-3:amd64. +#6 20.87 Preparing to unpack .../001-libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb ... +#6 20.88 Unpacking libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ... +#6 20.95 Selecting previously unselected package libfribidi0:amd64. +#6 20.95 Preparing to unpack .../002-libfribidi0_1.0.8-2ubuntu3.1_amd64.deb ... +#6 20.96 Unpacking libfribidi0:amd64 (1.0.8-2ubuntu3.1) ... +#6 21.02 Selecting previously unselected package libslang2:amd64. +#6 21.03 Preparing to unpack .../003-libslang2_2.3.2-5build4_amd64.deb ... +#6 21.04 Unpacking libslang2:amd64 (2.3.2-5build4) ... +#6 21.11 Selecting previously unselected package shared-mime-info. +#6 21.11 Preparing to unpack .../004-shared-mime-info_2.1-2_amd64.deb ... +#6 21.12 Unpacking shared-mime-info (2.1-2) ... +#6 21.21 Selecting previously unselected package ucf. +#6 21.21 Preparing to unpack .../005-ucf_3.0043_all.deb ... +#6 21.22 Moving old data out of the way +#6 21.22 Unpacking ucf (3.0043) ... +#6 21.28 Selecting previously unselected package xkb-data. +#6 21.28 Preparing to unpack .../006-xkb-data_2.33-1_all.deb ... +#6 21.29 Unpacking xkb-data (2.33-1) ... +#6 21.40 Selecting previously unselected package libpng16-16:amd64. +#6 21.41 Preparing to unpack .../007-libpng16-16_1.6.37-3build5_amd64.deb ... +#6 21.41 Unpacking libpng16-16:amd64 (1.6.37-3build5) ... +#6 21.48 Selecting previously unselected package libusb-1.0-0:amd64. +#6 21.48 Preparing to unpack .../008-libusb-1.0-0_2%3a1.0.25-1ubuntu2_amd64.deb ... +#6 21.49 Unpacking libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ... +#6 21.55 Selecting previously unselected package wget. +#6 21.55 Preparing to unpack .../009-wget_1.21.2-2ubuntu1.1_amd64.deb ... +#6 21.56 Unpacking wget (1.21.2-2ubuntu1.1) ... +#6 21.62 Preparing to unpack .../010-curl_7.81.0-1ubuntu1.20_amd64.deb ... +#6 21.65 Unpacking curl (7.81.0-1ubuntu1.20) over (7.81.0-1ubuntu1.7) ... +#6 21.74 Preparing to unpack .../011-libcurl4_7.81.0-1ubuntu1.20_amd64.deb ... +#6 21.77 Unpacking libcurl4:amd64 (7.81.0-1ubuntu1.20) over (7.81.0-1ubuntu1.7) ... +#6 21.86 Selecting previously unselected package libaom3:amd64. +#6 21.86 Preparing to unpack .../012-libaom3_3.3.0-1ubuntu0.1_amd64.deb ... +#6 21.87 Unpacking libaom3:amd64 (3.3.0-1ubuntu0.1) ... +#6 21.95 Selecting previously unselected package libva2:amd64. +#6 21.96 Preparing to unpack .../013-libva2_2.14.0-1_amd64.deb ... +#6 21.96 Unpacking libva2:amd64 (2.14.0-1) ... +#6 22.03 Selecting previously unselected package libmfx1:amd64. +#6 22.03 Preparing to unpack .../014-libmfx1_22.3.0-1_amd64.deb ... +#6 22.04 Unpacking libmfx1:amd64 (22.3.0-1) ... +#6 22.18 Selecting previously unselected package libva-drm2:amd64. +#6 22.18 Preparing to unpack .../015-libva-drm2_2.14.0-1_amd64.deb ... +#6 22.19 Unpacking libva-drm2:amd64 (2.14.0-1) ... +#6 22.25 Selecting previously unselected package libva-x11-2:amd64. +#6 22.26 Preparing to unpack .../016-libva-x11-2_2.14.0-1_amd64.deb ... +#6 22.26 Unpacking libva-x11-2:amd64 (2.14.0-1) ... +#6 22.34 Selecting previously unselected package libvdpau1:amd64. +#6 22.34 Preparing to unpack .../017-libvdpau1_1.4-3build2_amd64.deb ... +#6 22.35 Unpacking libvdpau1:amd64 (1.4-3build2) ... +#6 22.41 Selecting previously unselected package ocl-icd-libopencl1:amd64. +#6 22.42 Preparing to unpack .../018-ocl-icd-libopencl1_2.2.14-3_amd64.deb ... +#6 22.42 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-3) ... +#6 22.50 Selecting previously unselected package libavutil56:amd64. +#6 22.50 Preparing to unpack .../019-libavutil56_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 22.51 Unpacking libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 22.58 Selecting previously unselected package libfreetype6:amd64. +#6 22.58 Preparing to unpack .../020-libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb ... +#6 22.59 Unpacking libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ... +#6 22.65 Selecting previously unselected package fonts-dejavu-core. +#6 22.65 Preparing to unpack .../021-fonts-dejavu-core_2.37-2build1_all.deb ... +#6 22.66 Unpacking fonts-dejavu-core (2.37-2build1) ... +#6 22.79 Selecting previously unselected package fontconfig-config. +#6 22.79 Preparing to unpack .../022-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ... +#6 22.80 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ... +#6 22.87 Selecting previously unselected package libfontconfig1:amd64. +#6 22.87 Preparing to unpack .../023-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ... +#6 22.88 Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ... +#6 22.95 Selecting previously unselected package libpixman-1-0:amd64. +#6 22.95 Preparing to unpack .../024-libpixman-1-0_0.40.0-1ubuntu0.22.04.1_amd64.deb ... +#6 22.96 Unpacking libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ... +#6 23.03 Selecting previously unselected package libxcb-render0:amd64. +#6 23.03 Preparing to unpack .../025-libxcb-render0_1.14-3ubuntu3_amd64.deb ... +#6 23.04 Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ... +#6 23.10 Selecting previously unselected package libxrender1:amd64. +#6 23.10 Preparing to unpack .../026-libxrender1_1%3a0.9.10-1build4_amd64.deb ... +#6 23.11 Unpacking libxrender1:amd64 (1:0.9.10-1build4) ... +#6 23.18 Selecting previously unselected package libcairo2:amd64. +#6 23.18 Preparing to unpack .../027-libcairo2_1.16.0-5ubuntu2_amd64.deb ... +#6 23.19 Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ... +#6 23.26 Selecting previously unselected package libcodec2-1.0:amd64. +#6 23.26 Preparing to unpack .../028-libcodec2-1.0_1.0.1-3_amd64.deb ... +#6 23.27 Unpacking libcodec2-1.0:amd64 (1.0.1-3) ... +#6 23.38 Selecting previously unselected package libdav1d5:amd64. +#6 23.38 Preparing to unpack .../029-libdav1d5_0.9.2-1_amd64.deb ... +#6 23.39 Unpacking libdav1d5:amd64 (0.9.2-1) ... +#6 23.45 Selecting previously unselected package libgsm1:amd64. +#6 23.46 Preparing to unpack .../030-libgsm1_1.0.19-1_amd64.deb ... +#6 23.47 Unpacking libgsm1:amd64 (1.0.19-1) ... +#6 23.53 Selecting previously unselected package libmp3lame0:amd64. +#6 23.53 Preparing to unpack .../031-libmp3lame0_3.100-3build2_amd64.deb ... +#6 23.54 Unpacking libmp3lame0:amd64 (3.100-3build2) ... +#6 23.61 Selecting previously unselected package libopenjp2-7:amd64. +#6 23.61 Preparing to unpack .../032-libopenjp2-7_2.4.0-6ubuntu0.3_amd64.deb ... +#6 23.62 Unpacking libopenjp2-7:amd64 (2.4.0-6ubuntu0.3) ... +#6 23.69 Selecting previously unselected package libopus0:amd64. +#6 23.69 Preparing to unpack .../033-libopus0_1.3.1-0.1build2_amd64.deb ... +#6 23.70 Unpacking libopus0:amd64 (1.3.1-0.1build2) ... +#6 23.77 Selecting previously unselected package libcairo-gobject2:amd64. +#6 23.77 Preparing to unpack .../034-libcairo-gobject2_1.16.0-5ubuntu2_amd64.deb ... +#6 23.78 Unpacking libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ... +#6 23.83 Selecting previously unselected package libgdk-pixbuf2.0-common. +#6 23.83 Preparing to unpack .../035-libgdk-pixbuf2.0-common_2.42.8+dfsg-1ubuntu0.3_all.deb ... +#6 23.84 Unpacking libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.3) ... +#6 23.91 Selecting previously unselected package libjpeg-turbo8:amd64. +#6 23.91 Preparing to unpack .../036-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ... +#6 23.92 Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ... +#6 23.97 Selecting previously unselected package libjpeg8:amd64. +#6 23.98 Preparing to unpack .../037-libjpeg8_8c-2ubuntu10_amd64.deb ... +#6 23.99 Unpacking libjpeg8:amd64 (8c-2ubuntu10) ... +#6 24.05 Selecting previously unselected package libdeflate0:amd64. +#6 24.05 Preparing to unpack .../038-libdeflate0_1.10-2_amd64.deb ... +#6 24.06 Unpacking libdeflate0:amd64 (1.10-2) ... +#6 24.13 Selecting previously unselected package libjbig0:amd64. +#6 24.14 Preparing to unpack .../039-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ... +#6 24.14 Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ... +#6 24.22 Selecting previously unselected package libwebp7:amd64. +#6 24.22 Preparing to unpack .../040-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ... +#6 24.23 Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 24.30 Selecting previously unselected package libtiff5:amd64. +#6 24.30 Preparing to unpack .../041-libtiff5_4.3.0-6ubuntu0.10_amd64.deb ... +#6 24.31 Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.10) ... +#6 24.39 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +#6 24.40 Preparing to unpack .../042-libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.3_amd64.deb ... +#6 24.41 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ... +#6 24.49 Selecting previously unselected package fontconfig. +#6 24.49 Preparing to unpack .../043-fontconfig_2.13.1-4.2ubuntu5_amd64.deb ... +#6 24.50 Unpacking fontconfig (2.13.1-4.2ubuntu5) ... +#6 24.58 Selecting previously unselected package libgraphite2-3:amd64. +#6 24.58 Preparing to unpack .../044-libgraphite2-3_1.3.14-1build2_amd64.deb ... +#6 24.59 Unpacking libgraphite2-3:amd64 (1.3.14-1build2) ... +#6 24.66 Selecting previously unselected package libharfbuzz0b:amd64. +#6 24.66 Preparing to unpack .../045-libharfbuzz0b_2.7.4-1ubuntu3.2_amd64.deb ... +#6 24.67 Unpacking libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ... +#6 24.73 Selecting previously unselected package libthai-data. +#6 24.73 Preparing to unpack .../046-libthai-data_0.1.29-1build1_all.deb ... +#6 24.74 Unpacking libthai-data (0.1.29-1build1) ... +#6 24.82 Selecting previously unselected package libdatrie1:amd64. +#6 24.82 Preparing to unpack .../047-libdatrie1_0.2.13-2_amd64.deb ... +#6 24.83 Unpacking libdatrie1:amd64 (0.2.13-2) ... +#6 24.90 Selecting previously unselected package libthai0:amd64. +#6 24.90 Preparing to unpack .../048-libthai0_0.1.29-1build1_amd64.deb ... +#6 24.91 Unpacking libthai0:amd64 (0.1.29-1build1) ... +#6 24.99 Selecting previously unselected package libpango-1.0-0:amd64. +#6 24.99 Preparing to unpack .../049-libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 25.00 Unpacking libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 25.08 Selecting previously unselected package libpangoft2-1.0-0:amd64. +#6 25.08 Preparing to unpack .../050-libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 25.09 Unpacking libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 25.16 Selecting previously unselected package libpangocairo-1.0-0:amd64. +#6 25.16 Preparing to unpack .../051-libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 25.17 Unpacking libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 25.25 Selecting previously unselected package librsvg2-2:amd64. +#6 25.25 Preparing to unpack .../052-librsvg2-2_2.52.5+dfsg-3ubuntu0.2_amd64.deb ... +#6 25.26 Unpacking librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ... +#6 25.36 Selecting previously unselected package libshine3:amd64. +#6 25.37 Preparing to unpack .../053-libshine3_3.1.1-2_amd64.deb ... +#6 25.37 Unpacking libshine3:amd64 (3.1.1-2) ... +#6 25.42 Selecting previously unselected package libsnappy1v5:amd64. +#6 25.42 Preparing to unpack .../054-libsnappy1v5_1.1.8-1build3_amd64.deb ... +#6 25.42 Unpacking libsnappy1v5:amd64 (1.1.8-1build3) ... +#6 25.49 Selecting previously unselected package libspeex1:amd64. +#6 25.50 Preparing to unpack .../055-libspeex1_1.2~rc1.2-1.1ubuntu3_amd64.deb ... +#6 25.50 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ... +#6 25.59 Selecting previously unselected package libsoxr0:amd64. +#6 25.60 Preparing to unpack .../056-libsoxr0_0.1.3-4build2_amd64.deb ... +#6 25.61 Unpacking libsoxr0:amd64 (0.1.3-4build2) ... +#6 25.70 Selecting previously unselected package libswresample3:amd64. +#6 25.70 Preparing to unpack .../057-libswresample3_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 25.71 Unpacking libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 25.80 Selecting previously unselected package libogg0:amd64. +#6 25.80 Preparing to unpack .../058-libogg0_1.3.5-0ubuntu3_amd64.deb ... +#6 25.81 Unpacking libogg0:amd64 (1.3.5-0ubuntu3) ... +#6 25.90 Selecting previously unselected package libtheora0:amd64. +#6 25.90 Preparing to unpack .../059-libtheora0_1.1.1+dfsg.1-15ubuntu4_amd64.deb ... +#6 25.92 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ... +#6 26.01 Selecting previously unselected package libtwolame0:amd64. +#6 26.01 Preparing to unpack .../060-libtwolame0_0.4.0-2build2_amd64.deb ... +#6 26.02 Unpacking libtwolame0:amd64 (0.4.0-2build2) ... +#6 26.11 Selecting previously unselected package libvorbis0a:amd64. +#6 26.12 Preparing to unpack .../061-libvorbis0a_1.3.7-1build2_amd64.deb ... +#6 26.13 Unpacking libvorbis0a:amd64 (1.3.7-1build2) ... +#6 26.23 Selecting previously unselected package libvorbisenc2:amd64. +#6 26.23 Preparing to unpack .../062-libvorbisenc2_1.3.7-1build2_amd64.deb ... +#6 26.24 Unpacking libvorbisenc2:amd64 (1.3.7-1build2) ... +#6 26.33 Selecting previously unselected package libvpx7:amd64. +#6 26.34 Preparing to unpack .../063-libvpx7_1.11.0-2ubuntu2.3_amd64.deb ... +#6 26.35 Unpacking libvpx7:amd64 (1.11.0-2ubuntu2.3) ... +#6 26.44 Selecting previously unselected package libwebpmux3:amd64. +#6 26.45 Preparing to unpack .../064-libwebpmux3_1.2.2-2ubuntu0.22.04.2_amd64.deb ... +#6 26.46 Unpacking libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 26.54 Selecting previously unselected package libx264-163:amd64. +#6 26.54 Preparing to unpack .../065-libx264-163_2%3a0.163.3060+git5db6aa6-2build1_amd64.deb ... +#6 26.56 Unpacking libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ... +#6 26.66 Selecting previously unselected package libx265-199:amd64. +#6 26.66 Preparing to unpack .../066-libx265-199_3.5-2_amd64.deb ... +#6 26.68 Unpacking libx265-199:amd64 (3.5-2) ... +#6 26.80 Selecting previously unselected package libxvidcore4:amd64. +#6 26.80 Preparing to unpack .../067-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +#6 26.81 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +#6 26.89 Selecting previously unselected package libzvbi-common. +#6 26.90 Preparing to unpack .../068-libzvbi-common_0.2.35-19_all.deb ... +#6 26.91 Unpacking libzvbi-common (0.2.35-19) ... +#6 26.99 Selecting previously unselected package libzvbi0:amd64. +#6 27.00 Preparing to unpack .../069-libzvbi0_0.2.35-19_amd64.deb ... +#6 27.01 Unpacking libzvbi0:amd64 (0.2.35-19) ... +#6 27.11 Selecting previously unselected package libavcodec58:amd64. +#6 27.11 Preparing to unpack .../070-libavcodec58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 27.12 Unpacking libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 27.24 Selecting previously unselected package libasound2-data. +#6 27.24 Preparing to unpack .../071-libasound2-data_1.2.6.1-1ubuntu1_all.deb ... +#6 27.25 Unpacking libasound2-data (1.2.6.1-1ubuntu1) ... +#6 27.35 Selecting previously unselected package libasound2:amd64. +#6 27.35 Preparing to unpack .../072-libasound2_1.2.6.1-1ubuntu1_amd64.deb ... +#6 27.36 Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ... +#6 27.45 Selecting previously unselected package libraw1394-11:amd64. +#6 27.46 Preparing to unpack .../073-libraw1394-11_2.1.2-2build2_amd64.deb ... +#6 27.47 Unpacking libraw1394-11:amd64 (2.1.2-2build2) ... +#6 27.56 Selecting previously unselected package libavc1394-0:amd64. +#6 27.56 Preparing to unpack .../074-libavc1394-0_0.5.4-5build2_amd64.deb ... +#6 27.58 Unpacking libavc1394-0:amd64 (0.5.4-5build2) ... +#6 27.67 Selecting previously unselected package libass9:amd64. +#6 27.67 Preparing to unpack .../075-libass9_1%3a0.15.2-1_amd64.deb ... +#6 27.68 Unpacking libass9:amd64 (1:0.15.2-1) ... +#6 27.77 Selecting previously unselected package libudfread0:amd64. +#6 27.77 Preparing to unpack .../076-libudfread0_1.1.2-1_amd64.deb ... +#6 27.79 Unpacking libudfread0:amd64 (1.1.2-1) ... +#6 27.88 Selecting previously unselected package libbluray2:amd64. +#6 27.88 Preparing to unpack .../077-libbluray2_1%3a1.3.1-1_amd64.deb ... +#6 27.89 Unpacking libbluray2:amd64 (1:1.3.1-1) ... +#6 27.98 Selecting previously unselected package libchromaprint1:amd64. +#6 27.99 Preparing to unpack .../078-libchromaprint1_1.5.1-2_amd64.deb ... +#6 28.00 Unpacking libchromaprint1:amd64 (1.5.1-2) ... +#6 28.08 Selecting previously unselected package libgme0:amd64. +#6 28.09 Preparing to unpack .../079-libgme0_0.6.3-2_amd64.deb ... +#6 28.10 Unpacking libgme0:amd64 (0.6.3-2) ... +#6 28.20 Selecting previously unselected package libmpg123-0:amd64. +#6 28.20 Preparing to unpack .../080-libmpg123-0_1.29.3-1ubuntu0.1_amd64.deb ... +#6 28.22 Unpacking libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ... +#6 28.31 Selecting previously unselected package libvorbisfile3:amd64. +#6 28.31 Preparing to unpack .../081-libvorbisfile3_1.3.7-1build2_amd64.deb ... +#6 28.32 Unpacking libvorbisfile3:amd64 (1.3.7-1build2) ... +#6 28.45 Selecting previously unselected package libopenmpt0:amd64. +#6 28.45 Preparing to unpack .../082-libopenmpt0_0.6.1-1_amd64.deb ... +#6 28.46 Unpacking libopenmpt0:amd64 (0.6.1-1) ... +#6 28.56 Selecting previously unselected package librabbitmq4:amd64. +#6 28.56 Preparing to unpack .../083-librabbitmq4_0.10.0-1ubuntu2_amd64.deb ... +#6 28.57 Unpacking librabbitmq4:amd64 (0.10.0-1ubuntu2) ... +#6 28.65 Selecting previously unselected package libsrt1.4-gnutls:amd64. +#6 28.66 Preparing to unpack .../084-libsrt1.4-gnutls_1.4.4-4_amd64.deb ... +#6 28.67 Unpacking libsrt1.4-gnutls:amd64 (1.4.4-4) ... +#6 28.76 Selecting previously unselected package libssh-gcrypt-4:amd64. +#6 28.76 Preparing to unpack .../085-libssh-gcrypt-4_0.9.6-2ubuntu0.22.04.3_amd64.deb ... +#6 28.78 Unpacking libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.3) ... +#6 28.87 Selecting previously unselected package libnorm1:amd64. +#6 28.88 Preparing to unpack .../086-libnorm1_1.5.9+dfsg-2_amd64.deb ... +#6 28.89 Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ... +#6 28.99 Selecting previously unselected package libpgm-5.3-0:amd64. +#6 28.99 Preparing to unpack .../087-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ... +#6 29.00 Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#6 29.10 Selecting previously unselected package libsodium23:amd64. +#6 29.10 Preparing to unpack .../088-libsodium23_1.0.18-1build2_amd64.deb ... +#6 29.11 Unpacking libsodium23:amd64 (1.0.18-1build2) ... +#6 29.21 Selecting previously unselected package libzmq5:amd64. +#6 29.21 Preparing to unpack .../089-libzmq5_4.3.4-2_amd64.deb ... +#6 29.23 Unpacking libzmq5:amd64 (4.3.4-2) ... +#6 29.32 Selecting previously unselected package libavformat58:amd64. +#6 29.33 Preparing to unpack .../090-libavformat58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 29.34 Unpacking libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 29.43 Selecting previously unselected package libbs2b0:amd64. +#6 29.43 Preparing to unpack .../091-libbs2b0_3.1.0+dfsg-2.2build1_amd64.deb ... +#6 29.45 Unpacking libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ... +#6 29.54 Selecting previously unselected package libflite1:amd64. +#6 29.55 Preparing to unpack .../092-libflite1_2.2-3_amd64.deb ... +#6 29.56 Unpacking libflite1:amd64 (2.2-3) ... +#6 29.73 Selecting previously unselected package libserd-0-0:amd64. +#6 29.73 Preparing to unpack .../093-libserd-0-0_0.30.10-2_amd64.deb ... +#6 29.74 Unpacking libserd-0-0:amd64 (0.30.10-2) ... +#6 29.84 Selecting previously unselected package libsord-0-0:amd64. +#6 29.84 Preparing to unpack .../094-libsord-0-0_0.16.8-2_amd64.deb ... +#6 29.85 Unpacking libsord-0-0:amd64 (0.16.8-2) ... +#6 29.94 Selecting previously unselected package libsratom-0-0:amd64. +#6 29.94 Preparing to unpack .../095-libsratom-0-0_0.6.8-1_amd64.deb ... +#6 29.96 Unpacking libsratom-0-0:amd64 (0.6.8-1) ... +#6 30.05 Selecting previously unselected package liblilv-0-0:amd64. +#6 30.05 Preparing to unpack .../096-liblilv-0-0_0.24.12-2_amd64.deb ... +#6 30.06 Unpacking liblilv-0-0:amd64 (0.24.12-2) ... +#6 30.16 Selecting previously unselected package libmysofa1:amd64. +#6 30.16 Preparing to unpack .../097-libmysofa1_1.2.1~dfsg0-1_amd64.deb ... +#6 30.17 Unpacking libmysofa1:amd64 (1.2.1~dfsg0-1) ... +#6 30.28 Selecting previously unselected package libblas3:amd64. +#6 30.28 Preparing to unpack .../098-libblas3_3.10.0-2ubuntu1_amd64.deb ... +#6 30.30 Unpacking libblas3:amd64 (3.10.0-2ubuntu1) ... +#6 30.39 Selecting previously unselected package libgfortran5:amd64. +#6 30.40 Preparing to unpack .../099-libgfortran5_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 30.41 Unpacking libgfortran5:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 30.52 Selecting previously unselected package liblapack3:amd64. +#6 30.52 Preparing to unpack .../100-liblapack3_3.10.0-2ubuntu1_amd64.deb ... +#6 30.53 Unpacking liblapack3:amd64 (3.10.0-2ubuntu1) ... +#6 30.65 Selecting previously unselected package libasyncns0:amd64. +#6 30.65 Preparing to unpack .../101-libasyncns0_0.8-6build2_amd64.deb ... +#6 30.66 Unpacking libasyncns0:amd64 (0.8-6build2) ... +#6 30.76 Selecting previously unselected package libflac8:amd64. +#6 30.76 Preparing to unpack .../102-libflac8_1.3.3-2ubuntu0.2_amd64.deb ... +#6 30.78 Unpacking libflac8:amd64 (1.3.3-2ubuntu0.2) ... +#6 30.87 Selecting previously unselected package libsndfile1:amd64. +#6 30.87 Preparing to unpack .../103-libsndfile1_1.0.31-2ubuntu0.2_amd64.deb ... +#6 30.88 Unpacking libsndfile1:amd64 (1.0.31-2ubuntu0.2) ... +#6 31.01 Selecting previously unselected package libpulse0:amd64. +#6 31.01 Preparing to unpack .../104-libpulse0_1%3a15.99.1+dfsg1-1ubuntu2.2_amd64.deb ... +#6 31.03 Unpacking libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ... +#6 31.13 Selecting previously unselected package libsphinxbase3:amd64. +#6 31.13 Preparing to unpack .../105-libsphinxbase3_0.8+5prealpha+1-13build1_amd64.deb ... +#6 31.15 Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ... +#6 31.24 Selecting previously unselected package libpocketsphinx3:amd64. +#6 31.24 Preparing to unpack .../106-libpocketsphinx3_0.8.0+real5prealpha+1-14ubuntu1_amd64.deb ... +#6 31.25 Unpacking libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ... +#6 31.35 Selecting previously unselected package libpostproc55:amd64. +#6 31.35 Preparing to unpack .../107-libpostproc55_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 31.37 Unpacking libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 31.45 Selecting previously unselected package libsamplerate0:amd64. +#6 31.45 Preparing to unpack .../108-libsamplerate0_0.2.2-1build1_amd64.deb ... +#6 31.47 Unpacking libsamplerate0:amd64 (0.2.2-1build1) ... +#6 31.56 Selecting previously unselected package librubberband2:amd64. +#6 31.56 Preparing to unpack .../109-librubberband2_2.0.0-2_amd64.deb ... +#6 31.57 Unpacking librubberband2:amd64 (2.0.0-2) ... +#6 31.67 Selecting previously unselected package libswscale5:amd64. +#6 31.67 Preparing to unpack .../110-libswscale5_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 31.68 Unpacking libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 31.77 Selecting previously unselected package libvidstab1.1:amd64. +#6 31.78 Preparing to unpack .../111-libvidstab1.1_1.1.0-2_amd64.deb ... +#6 31.79 Unpacking libvidstab1.1:amd64 (1.1.0-2) ... +#6 31.89 Selecting previously unselected package libzimg2:amd64. +#6 31.89 Preparing to unpack .../112-libzimg2_3.0.3+ds1-1_amd64.deb ... +#6 31.90 Unpacking libzimg2:amd64 (3.0.3+ds1-1) ... +#6 32.00 Selecting previously unselected package libavfilter7:amd64. +#6 32.00 Preparing to unpack .../113-libavfilter7_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 32.02 Unpacking libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 32.12 Selecting previously unselected package libcaca0:amd64. +#6 32.13 Preparing to unpack .../114-libcaca0_0.99.beta19-2.2ubuntu4_amd64.deb ... +#6 32.14 Unpacking libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ... +#6 32.25 Selecting previously unselected package libcdio19:amd64. +#6 32.25 Preparing to unpack .../115-libcdio19_2.1.0-3ubuntu0.2_amd64.deb ... +#6 32.26 Unpacking libcdio19:amd64 (2.1.0-3ubuntu0.2) ... +#6 32.36 Selecting previously unselected package libcdio-cdda2:amd64. +#6 32.36 Preparing to unpack .../116-libcdio-cdda2_10.2+2.0.0-1build3_amd64.deb ... +#6 32.38 Unpacking libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ... +#6 32.47 Selecting previously unselected package libcdio-paranoia2:amd64. +#6 32.47 Preparing to unpack .../117-libcdio-paranoia2_10.2+2.0.0-1build3_amd64.deb ... +#6 32.48 Unpacking libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ... +#6 32.58 Selecting previously unselected package libdc1394-25:amd64. +#6 32.59 Preparing to unpack .../118-libdc1394-25_2.2.6-4_amd64.deb ... +#6 32.60 Unpacking libdc1394-25:amd64 (2.2.6-4) ... +#6 32.70 Selecting previously unselected package libiec61883-0:amd64. +#6 32.70 Preparing to unpack .../119-libiec61883-0_1.2.0-4build3_amd64.deb ... +#6 32.71 Unpacking libiec61883-0:amd64 (1.2.0-4build3) ... +#6 32.80 Selecting previously unselected package libjack-jackd2-0:amd64. +#6 32.80 Preparing to unpack .../120-libjack-jackd2-0_1.9.20~dfsg-1_amd64.deb ... +#6 32.81 Unpacking libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ... +#6 32.90 Selecting previously unselected package libopenal-data. +#6 32.90 Preparing to unpack .../121-libopenal-data_1%3a1.19.1-2build3_all.deb ... +#6 32.92 Unpacking libopenal-data (1:1.19.1-2build3) ... +#6 33.03 Selecting previously unselected package libsndio7.0:amd64. +#6 33.03 Preparing to unpack .../122-libsndio7.0_1.8.1-1.1_amd64.deb ... +#6 33.04 Unpacking libsndio7.0:amd64 (1.8.1-1.1) ... +#6 33.14 Selecting previously unselected package libopenal1:amd64. +#6 33.14 Preparing to unpack .../123-libopenal1_1%3a1.19.1-2build3_amd64.deb ... +#6 33.17 Unpacking libopenal1:amd64 (1:1.19.1-2build3) ... +#6 33.27 Selecting previously unselected package libwayland-client0:amd64. +#6 33.27 Preparing to unpack .../124-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 33.29 Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ... +#6 33.39 Selecting previously unselected package libdecor-0-0:amd64. +#6 33.39 Preparing to unpack .../125-libdecor-0-0_0.1.0-3build1_amd64.deb ... +#6 33.40 Unpacking libdecor-0-0:amd64 (0.1.0-3build1) ... +#6 33.49 Selecting previously unselected package libwayland-server0:amd64. +#6 33.50 Preparing to unpack .../126-libwayland-server0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 33.51 Unpacking libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ... +#6 33.59 Selecting previously unselected package libxcb-randr0:amd64. +#6 33.59 Preparing to unpack .../127-libxcb-randr0_1.14-3ubuntu3_amd64.deb ... +#6 33.61 Unpacking libxcb-randr0:amd64 (1.14-3ubuntu3) ... +#6 33.71 Selecting previously unselected package libgbm1:amd64. +#6 33.71 Preparing to unpack .../128-libgbm1_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ... +#6 33.73 Unpacking libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ... +#6 33.82 Selecting previously unselected package libwayland-cursor0:amd64. +#6 33.82 Preparing to unpack .../129-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 33.84 Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ... +#6 33.94 Selecting previously unselected package libwayland-egl1:amd64. +#6 33.94 Preparing to unpack .../130-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ... +#6 33.95 Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ... +#6 34.04 Selecting previously unselected package libxcursor1:amd64. +#6 34.05 Preparing to unpack .../131-libxcursor1_1%3a1.2.0-2build4_amd64.deb ... +#6 34.06 Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ... +#6 34.16 Selecting previously unselected package libxi6:amd64. +#6 34.16 Preparing to unpack .../132-libxi6_2%3a1.8-1build1_amd64.deb ... +#6 34.17 Unpacking libxi6:amd64 (2:1.8-1build1) ... +#6 34.26 Selecting previously unselected package libxinerama1:amd64. +#6 34.26 Preparing to unpack .../133-libxinerama1_2%3a1.1.4-3_amd64.deb ... +#6 34.27 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... +#6 34.37 Selecting previously unselected package libxkbcommon0:amd64. +#6 34.38 Preparing to unpack .../134-libxkbcommon0_1.4.0-1_amd64.deb ... +#6 34.39 Unpacking libxkbcommon0:amd64 (1.4.0-1) ... +#6 34.48 Selecting previously unselected package libxrandr2:amd64. +#6 34.48 Preparing to unpack .../135-libxrandr2_2%3a1.5.2-1build1_amd64.deb ... +#6 34.50 Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ... +#6 34.60 Selecting previously unselected package x11-common. +#6 34.61 Preparing to unpack .../136-x11-common_1%3a7.7+23ubuntu2_all.deb ... +#6 34.62 Unpacking x11-common (1:7.7+23ubuntu2) ... +#6 34.72 Selecting previously unselected package libxss1:amd64. +#6 34.72 Preparing to unpack .../137-libxss1_1%3a1.2.3-1build2_amd64.deb ... +#6 34.74 Unpacking libxss1:amd64 (1:1.2.3-1build2) ... +#6 34.84 Selecting previously unselected package libsdl2-2.0-0:amd64. +#6 34.84 Preparing to unpack .../138-libsdl2-2.0-0_2.0.20+dfsg-2ubuntu1.22.04.1_amd64.deb ... +#6 34.85 Unpacking libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ... +#6 34.96 Selecting previously unselected package libxcb-shape0:amd64. +#6 34.96 Preparing to unpack .../139-libxcb-shape0_1.14-3ubuntu3_amd64.deb ... +#6 34.98 Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ... +#6 35.07 Selecting previously unselected package libxv1:amd64. +#6 35.07 Preparing to unpack .../140-libxv1_2%3a1.0.11-1build2_amd64.deb ... +#6 35.09 Unpacking libxv1:amd64 (2:1.0.11-1build2) ... +#6 35.19 Selecting previously unselected package libavdevice58:amd64. +#6 35.19 Preparing to unpack .../141-libavdevice58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 35.20 Unpacking libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 35.28 Selecting previously unselected package ffmpeg. +#6 35.28 Preparing to unpack .../142-ffmpeg_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 35.29 Unpacking ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ... +#6 35.39 Selecting previously unselected package libcurl3-gnutls:amd64. +#6 35.39 Preparing to unpack .../143-libcurl3-gnutls_7.81.0-1ubuntu1.20_amd64.deb ... +#6 35.40 Unpacking libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.20) ... +#6 35.48 Selecting previously unselected package liberror-perl. +#6 35.49 Preparing to unpack .../144-liberror-perl_0.17029-1_all.deb ... +#6 35.50 Unpacking liberror-perl (0.17029-1) ... +#6 35.58 Selecting previously unselected package git-man. +#6 35.58 Preparing to unpack .../145-git-man_1%3a2.34.1-1ubuntu1.12_all.deb ... +#6 35.60 Unpacking git-man (1:2.34.1-1ubuntu1.12) ... +#6 35.71 Selecting previously unselected package git. +#6 35.72 Preparing to unpack .../146-git_1%3a2.34.1-1ubuntu1.12_amd64.deb ... +#6 35.73 Unpacking git (1:2.34.1-1ubuntu1.12) ... +#6 35.92 Selecting previously unselected package ninja-build. +#6 35.92 Preparing to unpack .../147-ninja-build_1.10.1-1_amd64.deb ... +#6 35.93 Unpacking ninja-build (1.10.1-1) ... +#6 36.04 Setting up libgme0:amd64 (0.6.3-2) ... +#6 36.07 Setting up libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.3) ... +#6 36.51 Setting up libgraphite2-3:amd64 (1.3.14-1build2) ... +#6 36.55 Setting up libsrt1.4-gnutls:amd64 (1.4.4-4) ... +#6 36.59 Setting up libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ... +#6 36.63 Setting up libudfread0:amd64 (1.1.2-1) ... +#6 36.67 Setting up libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ... +#6 36.70 Setting up libaom3:amd64 (3.3.0-1ubuntu0.1) ... +#6 36.75 Setting up librabbitmq4:amd64 (0.10.0-1ubuntu2) ... +#6 36.79 Setting up libraw1394-11:amd64 (2.1.2-2build2) ... +#6 36.83 Setting up libapparmor1:amd64 (3.0.4-2ubuntu2.4) ... +#6 36.87 Setting up libcodec2-1.0:amd64 (1.0.1-3) ... +#6 36.92 Setting up libsodium23:amd64 (1.0.18-1build2) ... +#6 36.96 Setting up libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ... +#6 36.99 Setting up libogg0:amd64 (1.3.5-0ubuntu3) ... +#6 37.03 Setting up libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ... +#6 37.08 Setting up libshine3:amd64 (3.1.1-2) ... +#6 37.12 Setting up wget (1.21.2-2ubuntu1.1) ... +#6 37.17 Setting up libxi6:amd64 (2:1.8-1build1) ... +#6 37.22 Setting up libtwolame0:amd64 (0.4.0-2build2) ... +#6 37.25 Setting up libxrender1:amd64 (1:0.9.10-1build4) ... +#6 37.29 Setting up libdatrie1:amd64 (0.2.13-2) ... +#6 37.33 Setting up libgsm1:amd64 (1.0.19-1) ... +#6 37.38 Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ... +#6 37.41 Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#6 37.45 Setting up libxcursor1:amd64 (1:1.2.0-2build4) ... +#6 37.49 Setting up libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.3) ... +#6 37.54 Setting up libnorm1:amd64 (1.5.9+dfsg-2) ... +#6 37.57 Setting up libmysofa1:amd64 (1.2.1~dfsg0-1) ... +#6 37.61 Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ... +#6 37.65 Setting up x11-common (1:7.7+23ubuntu2) ... +#6 37.93 invoke-rc.d: could not determine current runlevel +#6 37.93 invoke-rc.d: policy-rc.d denied execution of start. +#6 37.95 Setting up libdeflate0:amd64 (1.10-2) ... +#6 37.98 Setting up xkb-data (2.33-1) ... +#6 38.02 Setting up libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.20) ... +#6 38.07 Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 38.10 Setting up libcdio19:amd64 (2.1.0-3ubuntu0.2) ... +#6 38.14 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +#6 38.21 Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ... +#6 38.24 Setting up ninja-build (1.10.1-1) ... +#6 38.28 Setting up libsnappy1v5:amd64 (1.1.8-1build3) ... +#6 38.33 Setting up libflac8:amd64 (1.3.3-2ubuntu0.2) ... +#6 38.36 Setting up liberror-perl (0.17029-1) ... +#6 38.40 Setting up libasound2-data (1.2.6.1-1ubuntu1) ... +#6 38.44 Setting up libblas3:amd64 (3.10.0-2ubuntu1) ... +#6 38.48 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#6 38.51 Setting up libslang2:amd64 (2.3.2-5build4) ... +#6 38.55 Setting up libva2:amd64 (2.14.0-1) ... +#6 38.59 Setting up libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ... +#6 38.63 Setting up libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ... +#6 38.67 Setting up libfribidi0:amd64 (1.0.8-2ubuntu3.1) ... +#6 38.71 Setting up libopus0:amd64 (1.3.1-0.1build2) ... +#6 38.75 Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 38.80 Setting up shared-mime-info (2.1-2) ... +#6 42.61 Setting up libxinerama1:amd64 (2:1.1.4-3) ... +#6 42.63 Setting up libxv1:amd64 (2:1.0.11-1build2) ... +#6 42.66 Setting up libpng16-16:amd64 (1.6.37-3build5) ... +#6 42.69 Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 42.71 Setting up libvorbis0a:amd64 (1.3.7-1build2) ... +#6 42.74 Setting up libxrandr2:amd64 (2:1.5.2-1build1) ... +#6 42.76 Setting up fonts-dejavu-core (2.37-2build1) ... +#6 42.90 Setting up ucf (3.0043) ... +#6 42.99 Setting up libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ... +#6 43.02 Setting up libgfortran5:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 43.04 Setting up libx265-199:amd64 (3.5-2) ... +#6 43.07 Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 43.09 Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 43.12 Setting up libvidstab1.1:amd64 (1.1.0-2) ... +#6 43.15 Setting up libva-drm2:amd64 (2.14.0-1) ... +#6 43.17 Setting up ocl-icd-libopencl1:amd64 (2.2.14-3) ... +#6 43.20 Setting up libasyncns0:amd64 (0.8-6build2) ... +#6 43.22 Setting up libvdpau1:amd64 (1.4-3build2) ... +#6 43.26 Setting up libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ... +#6 43.29 Setting up libxcb-randr0:amd64 (1.14-3ubuntu3) ... +#6 43.31 Setting up libasound2:amd64 (1.2.6.1-1ubuntu1) ... +#6 43.34 Setting up libzimg2:amd64 (3.0.3+ds1-1) ... +#6 43.39 Setting up libcurl4:amd64 (7.81.0-1ubuntu1.20) ... +#6 43.41 Setting up libopenjp2-7:amd64 (2.4.0-6ubuntu0.3) ... +#6 43.44 Setting up git-man (1:2.34.1-1ubuntu1.12) ... +#6 43.47 Setting up libopenal-data (1:1.19.1-2build3) ... +#6 43.50 Setting up libthai-data (0.1.29-1build1) ... +#6 43.53 Setting up libvpx7:amd64 (1.11.0-2ubuntu2.3) ... +#6 43.56 Setting up curl (7.81.0-1ubuntu1.20) ... +#6 43.58 Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ... +#6 43.61 Setting up libxss1:amd64 (1:1.2.3-1build2) ... +#6 43.64 Setting up libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ... +#6 43.66 Setting up libdav1d5:amd64 (0.9.2-1) ... +#6 43.69 Setting up libmfx1:amd64 (22.3.0-1) ... +#6 43.71 Setting up libsamplerate0:amd64 (0.2.2-1build1) ... +#6 43.74 Setting up libva-x11-2:amd64 (2.14.0-1) ... +#6 43.77 Setting up libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 43.79 Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 43.82 Setting up libzvbi-common (0.2.35-19) ... +#6 43.85 Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 43.87 Setting up libmp3lame0:amd64 (3.100-3build2) ... +#6 43.90 Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 43.92 Setting up libvorbisenc2:amd64 (1.3.7-1build2) ... +#6 43.95 Setting up libiec61883-0:amd64 (1.2.0-4build3) ... +#6 43.98 Setting up libserd-0-0:amd64 (0.30.10-2) ... +#6 44.00 Setting up libxkbcommon0:amd64 (1.4.0-1) ... +#6 44.03 Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ... +#6 44.06 Setting up libjpeg8:amd64 (8c-2ubuntu10) ... +#6 44.08 Setting up libavc1394-0:amd64 (0.5.4-5build2) ... +#6 44.11 Setting up libzvbi0:amd64 (0.2.35-19) ... +#6 44.14 Setting up liblapack3:amd64 (3.10.0-2ubuntu1) ... +#6 44.16 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#6 44.17 Setting up libzmq5:amd64 (4.3.4-2) ... +#6 44.21 Setting up libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ... +#6 44.23 Setting up libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ... +#6 44.26 Setting up libsoxr0:amd64 (0.1.3-4build2) ... +#6 44.29 Setting up libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ... +#6 44.31 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ... +#6 44.69 Setting up libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ... +#6 44.71 Setting up libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 44.74 Setting up libthai0:amd64 (0.1.29-1build1) ... +#6 44.77 Setting up libvorbisfile3:amd64 (1.3.7-1build2) ... +#6 44.79 Setting up libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ... +#6 44.82 Setting up libdc1394-25:amd64 (2.2.6-4) ... +#6 44.84 Setting up libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 44.87 Setting up git (1:2.34.1-1ubuntu1.12) ... +#6 44.91 Setting up librubberband2:amd64 (2.0.0-2) ... +#6 44.94 Setting up libsndio7.0:amd64 (1.8.1-1.1) ... +#6 44.97 Setting up libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ... +#6 44.99 Setting up libflite1:amd64 (2.2-3) ... +#6 45.02 Setting up libsord-0-0:amd64 (0.16.8-2) ... +#6 45.05 Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ... +#6 45.07 Setting up libsratom-0-0:amd64 (0.6.8-1) ... +#6 45.10 Setting up libdecor-0-0:amd64 (0.1.0-3build1) ... +#6 45.13 Setting up libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ... +#6 45.15 Setting up libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 45.18 Setting up libtiff5:amd64 (4.3.0-6ubuntu0.10) ... +#6 45.21 Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ... +#6 45.23 Setting up libsndfile1:amd64 (1.0.31-2ubuntu0.2) ... +#6 45.26 Setting up libbluray2:amd64 (1:1.3.1-1) ... +#6 45.29 Setting up liblilv-0-0:amd64 (0.24.12-2) ... +#6 45.31 Setting up libopenmpt0:amd64 (0.6.1-1) ... +#6 45.34 Setting up fontconfig (2.13.1-4.2ubuntu5) ... +#6 45.36 Regenerating fonts cache... done. +#6 47.38 Setting up libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ... +#6 47.44 Setting up libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 47.47 Setting up libopenal1:amd64 (1:1.19.1-2build3) ... +#6 47.50 Setting up libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 47.52 Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ... +#6 47.55 Setting up libass9:amd64 (1:0.15.2-1) ... +#6 47.58 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ... +#6 47.60 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ... +#6 47.64 Setting up libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ... +#6 47.67 Setting up libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 47.72 Setting up libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ... +#6 47.74 Setting up libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 47.77 Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ... +#6 47.79 Setting up librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ... +#6 47.82 Setting up libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ... +#6 47.85 Setting up libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 47.87 Setting up libchromaprint1:amd64 (1.5.1-2) ... +#6 47.90 Setting up libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 47.93 Setting up libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 47.95 Setting up libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 47.98 Setting up ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ... +#6 48.01 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#6 48.45 Requirement already satisfied: pip in /usr/lib/python3/dist-packages (22.0.2) +#6 53.85 Collecting pip +#6 54.14 Downloading pip-25.1.1-py3-none-any.whl (1.8 MB) +#6 54.49 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 5.3 MB/s eta 0:00:00 +#6 54.49 Requirement already satisfied: wheel in /usr/lib/python3/dist-packages (0.37.1) +#6 54.59 Collecting wheel +#6 54.65 Downloading wheel-0.45.1-py3-none-any.whl (72 kB) +#6 54.66 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 72.5/72.5 KB 4.2 MB/s eta 0:00:00 +#6 54.67 Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (59.6.0) +#6 55.03 Collecting setuptools +#6 55.08 Downloading setuptools-80.6.0-py3-none-any.whl (1.2 MB) +#6 55.24 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 7.3 MB/s eta 0:00:00 +#6 55.34 Installing collected packages: wheel, setuptools, pip +#6 55.34 Attempting uninstall: wheel +#6 55.34 Found existing installation: wheel 0.37.1 +#6 55.34 Not uninstalling wheel at /usr/lib/python3/dist-packages, outside environment /usr +#6 55.34 Can't uninstall 'wheel'. No files were found to uninstall. +#6 55.39 Attempting uninstall: setuptools +#6 55.39 Found existing installation: setuptools 59.6.0 +#6 55.39 Not uninstalling setuptools at /usr/lib/python3/dist-packages, outside environment /usr +#6 55.39 Can't uninstall 'setuptools'. No files were found to uninstall. +#6 55.93 Attempting uninstall: pip +#6 55.93 Found existing installation: pip 22.0.2 +#6 55.93 Not uninstalling pip at /usr/lib/python3/dist-packages, outside environment /usr +#6 55.93 Can't uninstall 'pip'. No files were found to uninstall. +#6 57.14 Successfully installed pip-25.1.1 setuptools-80.6.0 wheel-0.45.1 +#6 57.14 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#6 DONE 58.4s + +#7 [ 4/18] RUN python3 --version && pip3 --version +#7 0.338 Python 3.10.6 +#7 0.468 pip 25.1.1 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10) +#7 DONE 0.5s + +#8 [ 5/18] RUN echo "Checkout PyTorch Version: v2.0.1" && git clone --depth 1 --recursive --branch v2.0.1 https://github.com/pytorch/pytorch.git /pytorch && true +#8 0.323 Checkout PyTorch Version: v2.0.1 +#8 0.324 Cloning into '/pytorch'... +#8 17.58 Note: switching to 'e9ebda29d87ce0916ab08c06ab26fd3766a870e5'. +#8 17.58 +#8 17.58 You are in 'detached HEAD' state. You can look around, make experimental +#8 17.58 changes and commit them, and you can discard any commits you make in this +#8 17.58 state without impacting any branches by switching back to a branch. +#8 17.58 +#8 17.58 If you want to create a new branch to retain commits you create, you may +#8 17.58 do so (now or later) by using -c with the switch command. Example: +#8 17.58 +#8 17.58 git switch -c +#8 17.58 +#8 17.58 Or undo this operation with: +#8 17.58 +#8 17.58 git switch - +#8 17.58 +#8 17.58 Turn off this advice by setting config variable advice.detachedHead to false +#8 17.58 +#8 18.59 Updating files: 58% (6947/11881) Updating files: 59% (7010/11881) Updating files: 60% (7129/11881) Updating files: 61% (7248/11881) Updating files: 62% (7367/11881) Updating files: 63% (7486/11881) Updating files: 64% (7604/11881) Updating files: 65% (7723/11881) Updating files: 66% (7842/11881) Updating files: 67% (7961/11881) Updating files: 68% (8080/11881) Updating files: 69% (8198/11881) Updating files: 70% (8317/11881) Updating files: 71% (8436/11881) Updating files: 72% (8555/11881) Updating files: 73% (8674/11881) Updating files: 74% (8792/11881) Updating files: 75% (8911/11881) Updating files: 76% (9030/11881) Updating files: 77% (9149/11881) Updating files: 78% (9268/11881) Updating files: 79% (9386/11881) Updating files: 80% (9505/11881) Updating files: 81% (9624/11881) Updating files: 82% (9743/11881) Updating files: 83% (9862/11881) Updating files: 84% (9981/11881) Updating files: 85% (10099/11881) Updating files: 86% (10218/11881) Updating files: 87% (10337/11881) Updating files: 88% (10456/11881) Updating files: 89% (10575/11881) Updating files: 90% (10693/11881) Updating files: 91% (10812/11881) Updating files: 92% (10931/11881) Updating files: 93% (11050/11881) Updating files: 94% (11169/11881) Updating files: 95% (11287/11881) Updating files: 96% (11406/11881) Updating files: 97% (11525/11881) Updating files: 98% (11644/11881) Updating files: 99% (11763/11881) Updating files: 100% (11881/11881) Updating files: 100% (11881/11881), done. +#8 19.07 Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' +#8 19.07 Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' +#8 19.07 Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' +#8 19.07 Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' +#8 19.07 Submodule 'third_party/QNNPACK' (https://github.com/pytorch/QNNPACK) registered for path 'third_party/QNNPACK' +#8 19.07 Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' +#8 19.07 Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' +#8 19.07 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' +#8 19.07 Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' +#8 19.07 Submodule 'third_party/cub' (https://github.com/NVlabs/cub.git) registered for path 'third_party/cub' +#8 19.07 Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' +#8 19.07 Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' +#8 19.07 Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' +#8 19.07 Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' +#8 19.07 Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' +#8 19.07 Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' +#8 19.07 Submodule 'third_party/foxi' (https://github.com/houseroad/foxi.git) registered for path 'third_party/foxi' +#8 19.07 Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' +#8 19.07 Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' +#8 19.07 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' +#8 19.07 Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' +#8 19.07 Submodule 'third_party/ios-cmake' (https://github.com/Yangqing/ios-cmake.git) registered for path 'third_party/ios-cmake' +#8 19.07 Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' +#8 19.07 Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' +#8 19.07 Submodule 'third_party/nccl/nccl' (https://github.com/NVIDIA/nccl) registered for path 'third_party/nccl/nccl' +#8 19.07 Submodule 'third_party/neon2sse' (https://github.com/intel/ARM_NEON_2_x86_SSE.git) registered for path 'third_party/neon2sse' +#8 19.07 Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' +#8 19.07 Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' +#8 19.07 Submodule 'third_party/onnx-tensorrt' (https://github.com/onnx/onnx-tensorrt) registered for path 'third_party/onnx-tensorrt' +#8 19.07 Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' +#8 19.07 Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' +#8 19.07 Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' +#8 19.07 Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' +#8 19.08 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' +#8 19.08 Submodule 'third_party/python-enum' (https://github.com/PeachPy/enum34.git) registered for path 'third_party/python-enum' +#8 19.08 Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' +#8 19.08 Submodule 'third_party/python-six' (https://github.com/benjaminp/six.git) registered for path 'third_party/python-six' +#8 19.08 Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' +#8 19.08 Submodule 'third_party/tbb' (https://github.com/01org/tbb) registered for path 'third_party/tbb' +#8 19.08 Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' +#8 19.08 Submodule 'third_party/zstd' (https://github.com/facebook/zstd.git) registered for path 'third_party/zstd' +#8 19.08 Cloning into '/pytorch/android/libs/fbjni'... +#8 25.23 Cloning into '/pytorch/third_party/FP16'... +#8 31.17 Cloning into '/pytorch/third_party/FXdiv'... +#8 37.03 Cloning into '/pytorch/third_party/NNPACK'... +#8 43.16 Cloning into '/pytorch/third_party/QNNPACK'... +#8 49.22 Cloning into '/pytorch/third_party/VulkanMemoryAllocator'... +#8 59.27 Cloning into '/pytorch/third_party/XNNPACK'... +#8 85.56 Cloning into '/pytorch/third_party/benchmark'... +#8 92.02 Cloning into '/pytorch/third_party/cpuinfo'... +#8 98.76 Cloning into '/pytorch/third_party/cub'... +#8 106.8 Cloning into '/pytorch/third_party/cudnn_frontend'... +#8 116.4 Cloning into '/pytorch/third_party/cutlass'... +#8 131.2 Cloning into '/pytorch/third_party/eigen'... +#8 147.9 Cloning into '/pytorch/third_party/fbgemm'... +#8 155.7 Cloning into '/pytorch/third_party/flatbuffers'... +#8 164.3 Cloning into '/pytorch/third_party/fmt'... +#8 172.4 Cloning into '/pytorch/third_party/foxi'... +#8 178.2 Cloning into '/pytorch/third_party/gemmlowp/gemmlowp'... +#8 184.7 Cloning into '/pytorch/third_party/gloo'... +#8 191.0 Cloning into '/pytorch/third_party/googletest'... +#8 198.7 Cloning into '/pytorch/third_party/ideep'... +#8 204.8 Cloning into '/pytorch/third_party/ios-cmake'... +#8 210.7 Cloning into '/pytorch/third_party/ittapi'... +#8 216.9 Cloning into '/pytorch/third_party/kineto'... +#8 225.1 Cloning into '/pytorch/third_party/nccl/nccl'... +#8 231.7 Cloning into '/pytorch/third_party/neon2sse'... +#8 237.9 Cloning into '/pytorch/third_party/nlohmann'... +#8 262.7 Cloning into '/pytorch/third_party/onnx'... +#8 272.7 Cloning into '/pytorch/third_party/onnx-tensorrt'... +#8 279.2 Cloning into '/pytorch/third_party/pocketfft'... +#8 285.3 Cloning into '/pytorch/third_party/protobuf'... +#8 310.0 Cloning into '/pytorch/third_party/psimd'... +#8 315.8 Cloning into '/pytorch/third_party/pthreadpool'... +#8 321.9 Cloning into '/pytorch/third_party/pybind11'... +#8 329.1 Cloning into '/pytorch/third_party/python-enum'... +#8 335.0 Cloning into '/pytorch/third_party/python-peachpy'... +#8 341.2 Cloning into '/pytorch/third_party/python-six'... +#8 347.4 Cloning into '/pytorch/third_party/sleef'... +#8 354.5 Cloning into '/pytorch/third_party/tbb'... +#8 361.5 Cloning into '/pytorch/third_party/tensorpipe'... +#8 367.9 Cloning into '/pytorch/third_party/zstd'... +#8 378.2 Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' +#8 378.2 Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' +#8 378.2 Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' +#8 378.3 Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' +#8 378.3 Submodule path 'third_party/QNNPACK': checked out '7d2a4e9931a82adc3814275b6219a03e24e36b4c' +#8 378.3 Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' +#8 379.3 Submodule path 'third_party/XNNPACK': checked out '51a987591a6fc9f0fc0707077f53d763ac132cbf' +#8 379.4 Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' +#8 379.5 Submodule path 'third_party/cpuinfo': checked out '8ec7bd91ad0470e61cf38f618cc1f270dede599c' +#8 379.5 Submodule path 'third_party/cub': checked out 'd106ddb991a56c3df1b6d51b2409e36ba8181ce4' +#8 379.9 Submodule path 'third_party/cudnn_frontend': checked out '81a041a68245cd8f871c43bbbbd5b6b627979a30' +#8 380.4 Submodule path 'third_party/cutlass': checked out 'b72cbf957df8cf84a6d0ff91c190ad51a9c1d24a' +#8 393.1 From https://gitlab.com/libeigen/eigen +#8 393.1 * branch 3147391d946bb4b6c68edd901f2add6ac1f31f8c -> FETCH_HEAD +#8 393.3 Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' +#8 393.4 Submodule path 'third_party/fbgemm': checked out '03b2046676707da64504e898490ab46104d4682a' +#8 393.4 Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' +#8 393.4 Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' +#8 393.4 Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' +#8 393.4 Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' +#8 393.4 Submodule 'third_party/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/third_party/hipify_torch' +#8 393.4 Cloning into '/pytorch/third_party/fbgemm/third_party/asmjit'... +#8 400.7 Cloning into '/pytorch/third_party/fbgemm/third_party/cpuinfo'... +#8 407.4 Cloning into '/pytorch/third_party/fbgemm/third_party/cutlass'... +#8 418.7 Cloning into '/pytorch/third_party/fbgemm/third_party/googletest'... +#8 426.5 Cloning into '/pytorch/third_party/fbgemm/third_party/hipify_torch'... +#8 432.6 Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' +#8 432.7 Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' +#8 433.2 Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' +#8 433.3 Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' +#8 433.3 Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '1840658c184f3eeba787dae0f06c45756c1daaf5' +#8 433.5 Submodule path 'third_party/flatbuffers': checked out 'd0cede9c90c5257537c293517a21376408b549fa' +#8 433.5 Submodule path 'third_party/fmt': checked out 'a33701196adfad74917046096bf5a2aa0ab0bb50' +#8 433.5 Submodule path 'third_party/foxi': checked out 'c278588e34e535f0bb8f00df3880d26928038cad' +#8 433.6 Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' +#8 433.6 Submodule path 'third_party/gloo': checked out '10909297fedab0a680799211a299203e53515032' +#8 433.7 Submodule path 'third_party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' +#8 445.5 From https://github.com/intel/ideep +#8 445.5 * branch 7bc3e12f7c0cad7fb24f8d4ab63dcd467ffa60c7 -> FETCH_HEAD +#8 445.5 Submodule path 'third_party/ideep': checked out '7bc3e12f7c0cad7fb24f8d4ab63dcd467ffa60c7' +#8 445.5 Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' +#8 445.5 Cloning into '/pytorch/third_party/ideep/mkl-dnn'... +#8 479.9 From https://github.com/intel/mkl-dnn +#8 479.9 * branch 6dbeffbae1f23cbbeae17adb7b5b13f1f37c080e -> FETCH_HEAD +#8 480.4 Submodule path 'third_party/ideep/mkl-dnn': checked out '6dbeffbae1f23cbbeae17adb7b5b13f1f37c080e' +#8 480.5 Submodule path 'third_party/ios-cmake': checked out '8abaed637d56f1337d6e1d2c4026e25c1eade724' +#8 480.5 Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' +#8 480.6 Submodule path 'third_party/kineto': checked out '2da532c91dee9dc36cccc6088206daa1b69e3966' +#8 480.6 Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' +#8 480.6 Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' +#8 480.6 Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' +#8 480.6 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog'... +#8 487.2 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/fmt'... +#8 495.1 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/googletest'... +#8 503.0 Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' +#8 503.0 Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' +#8 503.0 Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' +#8 503.0 Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' +#8 503.0 Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' +#8 503.0 Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' +#8 503.0 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' +#8 503.0 Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' +#8 503.0 Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' +#8 503.0 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... +#8 511.0 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... +#8 517.2 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... +#8 525.3 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... +#8 531.5 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... +#8 537.8 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... +#8 545.5 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... +#8 570.4 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... +#8 576.7 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' +#8 576.7 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' +#8 576.8 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' +#8 576.8 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' +#8 576.8 Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' +#8 576.8 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... +#8 583.0 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' +#8 583.1 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' +#8 594.6 From https://github.com/google/googletest +#8 594.6 * branch 58d77fa8070e8cec2dc1ed015d66b454c8d78850 -> FETCH_HEAD +#8 594.7 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' +#8 594.8 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' +#8 594.9 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' +#8 594.9 Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '2591ab91c3898c9f6544fff04660276537d32ffd' +#8 595.0 Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' +#8 595.0 Submodule path 'third_party/nccl/nccl': checked out 'f89fd4777d2ef9229c039ff750ae21da01626f52' +#8 595.1 Submodule path 'third_party/neon2sse': checked out '97a126f08ce318023be604d03f88bf0820a9464a' +#8 595.2 Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' +#8 607.0 From https://github.com/onnx/onnx +#8 607.0 * branch e192ba01e438d22ca2dedd7956e28e3551626c91 -> FETCH_HEAD +#8 607.5 Submodule path 'third_party/onnx': checked out 'e192ba01e438d22ca2dedd7956e28e3551626c91' +#8 607.5 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx/third_party/benchmark' +#8 607.5 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' +#8 607.5 Cloning into '/pytorch/third_party/onnx/third_party/benchmark'... +#8 613.8 Cloning into '/pytorch/third_party/onnx/third_party/pybind11'... +#8 621.1 Submodule path 'third_party/onnx/third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' +#8 632.7 From https://github.com/pybind/pybind11 +#8 632.7 * branch 914c06fb252b6cc3727d0eedab6736e88a3fcb01 -> FETCH_HEAD +#8 632.7 Submodule path 'third_party/onnx/third_party/pybind11': checked out '914c06fb252b6cc3727d0eedab6736e88a3fcb01' +#8 632.8 Submodule path 'third_party/onnx-tensorrt': checked out 'c153211418a7c57ce071d9ce2a41f8d1c85a878f' +#8 632.8 Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx' +#8 632.8 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx'... +#8 643.0 Submodule path 'third_party/onnx-tensorrt/third_party/onnx': checked out '765f5ee823a67a866f4bd28a9860e81f3c811ce8' +#8 643.0 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark' +#8 643.0 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11' +#8 643.0 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark'... +#8 649.4 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11'... +#8 656.6 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark': checked out 'e776aa0275e293707b6a0901e0e8d8a8a3679508' +#8 656.7 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11': checked out 'a1041190c8b8ff0cd9e2f0752248ad5e3789ea0c' +#8 656.7 Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang' +#8 656.7 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang'... +#8 674.3 From https://github.com/wjakob/clang-cindex-python3 +#8 674.3 * branch 6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5 -> FETCH_HEAD +#8 674.3 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' +#8 674.3 Submodule path 'third_party/pocketfft': checked out 'ea778e37710c07723435b1be58235996d1d43a5a' +#8 674.6 Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' +#8 674.7 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' +#8 674.7 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' +#8 674.7 Cloning into '/pytorch/third_party/protobuf/third_party/benchmark'... +#8 681.0 Cloning into '/pytorch/third_party/protobuf/third_party/googletest'... +#8 688.9 Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' +#8 689.0 Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' +#8 689.0 Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' +#8 689.0 Submodule path 'third_party/pthreadpool': checked out 'a134dd5d4cee80cce15db81a72e7f929d71dd413' +#8 700.6 From https://github.com/pybind/pybind11 +#8 700.6 * branch 80dc998efced8ceb2be59756668a7e90e8bef917 -> FETCH_HEAD +#8 700.7 Submodule path 'third_party/pybind11': checked out '80dc998efced8ceb2be59756668a7e90e8bef917' +#8 700.7 Submodule path 'third_party/python-enum': checked out '4cfedc426c4e2fc52e3f5c2b4297e15ed8d6b8c7' +#8 712.3 From https://github.com/malfet/PeachPy +#8 712.3 * branch f45429b087dd7d5bc78bb40dc7cf06425c252d67 -> FETCH_HEAD +#8 712.4 Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' +#8 712.4 Submodule path 'third_party/python-six': checked out '15e31431af97e5e64b80af0a3f598d382bcdd49a' +#8 712.4 Submodule path 'third_party/sleef': checked out 'e0a003ee838b75d11763aa9c3ef17bf71a725bff' +#8 724.8 From https://github.com/01org/tbb +#8 724.8 * branch a51a90bc609bb73db8ea13841b5cf7aa4344d4a9 -> FETCH_HEAD +#8 725.0 Submodule path 'third_party/tbb': checked out 'a51a90bc609bb73db8ea13841b5cf7aa4344d4a9' +#8 725.0 Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' +#8 725.0 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' +#8 725.0 Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' +#8 725.0 Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' +#8 725.0 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' +#8 725.0 Cloning into '/pytorch/third_party/tensorpipe/third_party/googletest'... +#8 733.1 Cloning into '/pytorch/third_party/tensorpipe/third_party/libnop'... +#8 739.1 Cloning into '/pytorch/third_party/tensorpipe/third_party/libuv'... +#8 746.9 Cloning into '/pytorch/third_party/tensorpipe/third_party/pybind11'... +#8 754.6 Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' +#8 754.6 Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' +#8 754.7 Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' +#8 766.5 From https://github.com/pybind/pybind11 +#8 766.5 * branch a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef -> FETCH_HEAD +#8 766.5 Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' +#8 766.5 Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' +#8 766.5 Cloning into '/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... +#8 784.1 From https://github.com/wjakob/clang-cindex-python3 +#8 784.1 * branch 6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5 -> FETCH_HEAD +#8 784.1 Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' +#8 784.2 Submodule path 'third_party/zstd': checked out 'aec56a52fbab207fc639a1937d1e708a282edca8' +#8 DONE 784.4s + +#9 [ 6/18] WORKDIR /pytorch +#9 DONE 0.1s + +#10 [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r requirements.txt && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true +#10 0.268 BUILDING PYTORCH v2.0.1 for gfx803 *** +#10 0.269 Python 3.10.6 +#10 0.385 Building wheel torch-2.0.0a0+gite9ebda2 +#10 0.385 Traceback (most recent call last): +#10 0.385 File "/pytorch/setup.py", line 321, in +#10 0.385 cmake = CMake() +#10 0.385 File "/pytorch/tools/setup_helpers/cmake.py", line 38, in __init__ +#10 0.385 self._cmake_command = CMake._get_cmake_command() +#10 0.385 File "/pytorch/tools/setup_helpers/cmake.py", line 67, in _get_cmake_command +#10 0.385 raise RuntimeError("no cmake or cmake3 with version >= 3.13.0 found") +#10 0.385 RuntimeError: no cmake or cmake3 with version >= 3.13.0 found +#10 ERROR: process "/bin/sh -c echo \"BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** \" && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r ${REQS_FILE} && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true" did not complete successfully: exit code: 1 +------ + > [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r requirements.txt && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true: +0.269 Python 3.10.6 +0.385 Building wheel torch-2.0.0a0+gite9ebda2 +0.385 Traceback (most recent call last): +0.385 File "/pytorch/setup.py", line 321, in +0.385 cmake = CMake() +0.385 File "/pytorch/tools/setup_helpers/cmake.py", line 38, in __init__ +0.385 self._cmake_command = CMake._get_cmake_command() +0.385 File "/pytorch/tools/setup_helpers/cmake.py", line 67, in _get_cmake_command +0.385 raise RuntimeError("no cmake or cmake3 with version >= 3.13.0 found") +0.385 RuntimeError: no cmake or cmake3 with version >= 3.13.0 found +------ +Dockerfile:73 +-------------------- + 72 | WORKDIR /pytorch + 73 | >>> RUN echo "BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** " && \ + 74 | >>> python3 --version && \ + 75 | >>> # dpkg komutu base imajın yapısına göre gerekmeyebilir, Ubuntu 22.04 için denenebilir. + 76 | >>> # dpkg -r --force-depends python3-yaml python3-filelock || true && \ + 77 | >>> mkdir -p /pytorch/dist && \ + 78 | >>> python3 setup.py clean && \ + 79 | >>> # PyTorch'un kendi requirements.txt'sini kuralım + 80 | >>> python3 -m pip install --break-system-packages -r ${REQS_FILE} && \ + 81 | >>> # Ortam değişkenlerinin (PYTORCH_ROCM_ARCH, HSA_OVERRIDE_GFX_VERSION, USE_NINJA) + 82 | >>> # build_amd.py ve setup.py tarafından doğru okunduğundan emin olalım. + 83 | >>> # Gerekirse build_amd.py'ye argüman olarak da geçirilebilirler. + 84 | >>> python3 tools/amd_build/build_amd.py && \ + 85 | >>> python3 setup.py bdist_wheel && \ + 86 | >>> python3 -m pip install --break-system-packages dist/torch*.whl && \ + 87 | >>> ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && \ + 88 | >>> true + 89 | +-------------------- +ERROR: failed to solve: process "/bin/sh -c echo \"BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** \" && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r ${REQS_FILE} && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true" did not complete successfully: exit code: 1 diff --git a/rocm_5.4/logs/build_rocm542_v1.log b/rocm_5.4/logs/build_rocm542_v1.log new file mode 100644 index 000000000..92173a573 --- /dev/null +++ b/rocm_5.4/logs/build_rocm542_v1.log @@ -0,0 +1,21766 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 5.55kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/18] FROM docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#4 CACHED + +#5 [ 2/18] RUN echo "MAX_JOBS=14" >> /etc/environment && echo "HSA_OVERRIDE_GFX_VERSION=8.0.3" >> /etc/environment && echo "PYTORCH_ROCM_ARCH=gfx803" >> /etc/environment && echo "ROCM_ARCH=gfx803" >> /etc/environment && echo "TORCH_BLAS_PREFER_HIPBLASLT=0" >> /etc/environment && echo "ROC_ENABLE_PRE_VEGA=1" >> /etc/environment && echo "PIP_ROOT_USER_ACTION=ignore" >> /etc/environment && echo "CMAKE_POLICY_VERSION_MINIMUM=3.18" >> /etc/environment && true +#5 DONE 0.3s + +#6 [ 3/18] RUN apt-get update -y && apt-get install -y --no-install-recommends git wget curl ffmpeg python3.10 python3-pip python3.10-dev python3.10-venv ninja-build libopenblas-dev libomp-dev pkg-config && python3 -m pip install --upgrade pip wheel setuptools && python3 -m pip install "cmake==3.20.2" && apt-get clean && rm -rf /var/lib/apt/lists/* && true +#6 0.584 Get:1 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] +#6 0.695 Get:2 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy InRelease [5415 B] +#6 0.768 Get:3 https://repo.radeon.com/rocm/apt/5.4.2 jammy InRelease [2603 B] +#6 0.828 Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] +#6 0.946 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] +#6 0.982 Get:6 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy/main amd64 Packages [9601 B] +#6 1.035 Get:7 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] +#6 1.070 Get:8 https://repo.radeon.com/rocm/apt/5.4.2 jammy/main amd64 Packages [31.8 kB] +#6 1.126 Get:9 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB] +#6 1.155 Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB] +#6 1.197 Get:11 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2901 kB] +#6 1.386 Get:12 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB] +#6 1.416 Get:13 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB] +#6 2.018 Get:14 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [4282 kB] +#6 2.755 Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1245 kB] +#6 3.045 Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [47.7 kB] +#6 3.647 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [4517 kB] +#6 4.029 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] +#6 4.305 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1546 kB] +#6 4.435 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [55.7 kB] +#6 4.440 Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.2 kB] +#6 4.447 Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB] +#6 4.502 Fetched 38.4 MB in 4s (9313 kB/s) +#6 4.502 Reading package lists... +#6 5.191 W: https://repo.radeon.com/amdgpu/5.4.2/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#6 5.191 W: https://repo.radeon.com/rocm/apt/5.4.2/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#6 5.222 Reading package lists... +#6 5.925 Building dependency tree... +#6 6.090 Reading state information... +#6 6.231 The following additional packages will be installed: +#6 6.231 fontconfig fontconfig-config fonts-dejavu-core gcc-12-base git-man libaom3 +#6 6.231 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 libatomic1 +#6 6.231 libavc1394-0 libavcodec58 libavdevice58 libavfilter7 libavformat58 +#6 6.231 libavutil56 libblas3 libbluray2 libbs2b0 libcaca0 libcairo-gobject2 +#6 6.231 libcairo2 libcc1-0 libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 +#6 6.231 libcodec2-1.0 libcurl3-gnutls libcurl4 libdatrie1 libdav1d5 libdbus-1-3 +#6 6.231 libdc1394-25 libdecor-0-0 libdeflate0 liberror-perl libexpat1 libexpat1-dev +#6 6.231 libflac8 libflite1 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgcc-s1 +#6 6.231 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 libgme0 libgomp1 +#6 6.231 libgraphite2-3 libgsm1 libharfbuzz0b libiec61883-0 libitm1 libjack-jackd2-0 +#6 6.231 libjbig0 libjpeg-turbo8 libjpeg8 liblapack3 liblilv-0-0 libllvm14 liblsan0 +#6 6.231 libmfx1 libmp3lame0 libmpg123-0 libmysofa1 libnorm1 libogg0 libomp-14-dev +#6 6.231 libomp5-14 libopenal-data libopenal1 libopenblas-pthread-dev libopenblas0 +#6 6.231 libopenblas0-pthread libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0 +#6 6.231 libpangocairo-1.0-0 libpangoft2-1.0-0 libpgm-5.3-0 libpixman-1-0 libpng16-16 +#6 6.231 libpocketsphinx3 libpostproc55 libpulse0 libpython3.10 libpython3.10-dev +#6 6.231 libpython3.10-minimal libpython3.10-stdlib libquadmath0 librabbitmq4 +#6 6.231 libraw1394-11 librsvg2-2 librubberband2 libsamplerate0 libsdl2-2.0-0 +#6 6.231 libserd-0-0 libshine3 libslang2 libsnappy1v5 libsndfile1 libsndio7.0 +#6 6.231 libsodium23 libsord-0-0 libsoxr0 libspeex1 libsphinxbase3 libsratom-0-0 +#6 6.231 libsrt1.4-gnutls libssh-gcrypt-4 libstdc++6 libswresample3 libswscale5 +#6 6.231 libthai-data libthai0 libtheora0 libtiff5 libtwolame0 libubsan1 libudfread0 +#6 6.231 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 +#6 6.231 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx7 libwayland-client0 +#6 6.231 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 +#6 6.231 libx264-163 libx265-199 libxcb-randr0 libxcb-render0 libxcb-shape0 +#6 6.231 libxcursor1 libxi6 libxinerama1 libxkbcommon0 libxrandr2 libxrender1 libxss1 +#6 6.232 libxv1 libxvidcore4 libzimg2 libzmq5 libzvbi-common libzvbi0 +#6 6.232 ocl-icd-libopencl1 python3-pip-whl python3-setuptools-whl python3.10-minimal +#6 6.232 shared-mime-info ucf x11-common xkb-data +#6 6.233 Suggested packages: +#6 6.233 ffmpeg-doc gettext-base git-daemon-run | git-daemon-sysvinit git-doc +#6 6.233 git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn +#6 6.233 libasound2-plugins alsa-utils libcuda1 libnvcuvid1 libnvidia-encode1 +#6 6.233 libbluray-bdj jackd2 libomp-14-doc libportaudio2 opus-tools pulseaudio +#6 6.233 libraw1394-doc librsvg2-bin xdg-utils serdi sndiod sordi speex opencl-icd +#6 6.233 python3.10-doc binfmt-support +#6 6.233 Recommended packages: +#6 6.233 less ssh-client alsa-ucm-conf alsa-topology-conf libaacs0 dbus +#6 6.233 libdecor-0-plugin-1-cairo | libdecor-0-plugin-1 libgdk-pixbuf2.0-bin +#6 6.233 pocketsphinx-en-us librsvg2-common va-driver-all | va-driver +#6 6.233 vdpau-driver-all | vdpau-driver python3-dev +#6 6.558 The following NEW packages will be installed: +#6 6.558 ffmpeg fontconfig fontconfig-config fonts-dejavu-core git git-man libaom3 +#6 6.558 libapparmor1 libasound2 libasound2-data libass9 libasyncns0 libavc1394-0 +#6 6.558 libavcodec58 libavdevice58 libavfilter7 libavformat58 libavutil56 libblas3 +#6 6.558 libbluray2 libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2 +#6 6.558 libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-1.0 libcurl3-gnutls +#6 6.558 libdatrie1 libdav1d5 libdbus-1-3 libdc1394-25 libdecor-0-0 libdeflate0 +#6 6.558 liberror-perl libexpat1-dev libflac8 libflite1 libfontconfig1 libfreetype6 +#6 6.558 libfribidi0 libgbm1 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 +#6 6.558 libgme0 libgraphite2-3 libgsm1 libharfbuzz0b libiec61883-0 libjack-jackd2-0 +#6 6.558 libjbig0 libjpeg-turbo8 libjpeg8 liblapack3 liblilv-0-0 libllvm14 libmfx1 +#6 6.558 libmp3lame0 libmpg123-0 libmysofa1 libnorm1 libogg0 libomp-14-dev libomp-dev +#6 6.558 libomp5-14 libopenal-data libopenal1 libopenblas-dev libopenblas-pthread-dev +#6 6.558 libopenblas0 libopenblas0-pthread libopenjp2-7 libopenmpt0 libopus0 +#6 6.558 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpgm-5.3-0 +#6 6.558 libpixman-1-0 libpng16-16 libpocketsphinx3 libpostproc55 libpulse0 +#6 6.558 libpython3.10-dev librabbitmq4 libraw1394-11 librsvg2-2 librubberband2 +#6 6.558 libsamplerate0 libsdl2-2.0-0 libserd-0-0 libshine3 libslang2 libsnappy1v5 +#6 6.558 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 libsoxr0 libspeex1 +#6 6.558 libsphinxbase3 libsratom-0-0 libsrt1.4-gnutls libssh-gcrypt-4 libswresample3 +#6 6.558 libswscale5 libthai-data libthai0 libtheora0 libtiff5 libtwolame0 +#6 6.558 libudfread0 libusb-1.0-0 libva-drm2 libva-x11-2 libva2 libvdpau1 +#6 6.558 libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 libvpx7 +#6 6.558 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 +#6 6.558 libwebp7 libwebpmux3 libx264-163 libx265-199 libxcb-randr0 libxcb-render0 +#6 6.558 libxcb-shape0 libxcursor1 libxi6 libxinerama1 libxkbcommon0 libxrandr2 +#6 6.558 libxrender1 libxss1 libxv1 libxvidcore4 libzimg2 libzmq5 libzvbi-common +#6 6.559 libzvbi0 ninja-build ocl-icd-libopencl1 pkg-config python3-pip-whl +#6 6.559 python3-setuptools-whl python3.10-dev python3.10-venv shared-mime-info ucf +#6 6.559 wget x11-common xkb-data +#6 6.560 The following packages will be upgraded: +#6 6.560 curl gcc-12-base libatomic1 libcc1-0 libcurl4 libexpat1 libgcc-s1 libgomp1 +#6 6.560 libitm1 liblsan0 libpython3.10 libpython3.10-minimal libpython3.10-stdlib +#6 6.561 libquadmath0 libstdc++6 libubsan1 python3-pip python3.10 python3.10-minimal +#6 6.778 19 upgraded, 161 newly installed, 0 to remove and 124 not upgraded. +#6 6.778 Need to get 126 MB of archives. +#6 6.778 After this operation, 472 MB of additional disk space will be used. +#6 6.778 Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1 amd64 2.4.7-1ubuntu0.6 [92.1 kB] +#6 7.041 Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10 amd64 3.10.12-1~22.04.9 [1949 kB] +#6 7.703 Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10 amd64 3.10.12-1~22.04.9 [508 kB] +#6 7.859 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-stdlib amd64 3.10.12-1~22.04.9 [1850 kB] +#6 8.368 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-minimal amd64 3.10.12-1~22.04.9 [2263 kB] +#6 8.786 Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-minimal amd64 3.10.12-1~22.04.9 [815 kB] +#6 8.936 Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04 [10.4 kB] +#6 8.938 Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB] +#6 9.117 Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-12-base amd64 12.3.0-1ubuntu1~22.04 [20.1 kB] +#6 9.121 Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++6 amd64 12.3.0-1ubuntu1~22.04 [699 kB] +#6 9.250 Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB] +#6 9.278 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1069 kB] +#6 9.460 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB] +#6 9.466 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04 [126 kB] +#6 9.485 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB] +#6 9.493 Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-s1 amd64 12.3.0-1ubuntu1~22.04 [53.9 kB] +#6 9.501 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libapparmor1 amd64 3.0.4-2ubuntu2.4 [39.7 kB] +#6 9.507 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdbus-1-3 amd64 1.12.20-2ubuntu4.1 [189 kB] +#6 9.537 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfribidi0 amd64 1.0.8-2ubuntu3.1 [26.1 kB] +#6 9.541 Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 libslang2 amd64 2.3.2-5build4 [468 kB] +#6 9.617 Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 shared-mime-info amd64 2.1-2 [454 kB] +#6 9.688 Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 ucf all 3.0043 [56.1 kB] +#6 9.696 Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 xkb-data all 2.33-1 [394 kB] +#6 9.758 Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpng16-16 amd64 1.6.37-3build5 [191 kB] +#6 9.788 Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libusb-1.0-0 amd64 2:1.0.25-1ubuntu2 [52.7 kB] +#6 9.796 Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 wget amd64 1.21.2-2ubuntu1.1 [339 kB] +#6 9.848 Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 curl amd64 7.81.0-1ubuntu1.20 [194 kB] +#6 9.879 Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl4 amd64 7.81.0-1ubuntu1.20 [289 kB] +#6 9.924 Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libaom3 amd64 3.3.0-1ubuntu0.1 [1748 kB] +#6 10.20 Get:30 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva2 amd64 2.14.0-1 [65.0 kB] +#6 10.20 Get:31 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmfx1 amd64 22.3.0-1 [3105 kB] +#6 10.68 Get:32 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-drm2 amd64 2.14.0-1 [7502 B] +#6 10.68 Get:33 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-x11-2 amd64 2.14.0-1 [12.6 kB] +#6 10.68 Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvdpau1 amd64 1.4-3build2 [27.0 kB] +#6 10.68 Get:35 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ocl-icd-libopencl1 amd64 2.2.14-3 [39.1 kB] +#6 10.69 Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavutil56 amd64 7:4.4.2-0ubuntu0.22.04.1 [290 kB] +#6 10.73 Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6 amd64 2.11.1+dfsg-1ubuntu0.3 [388 kB] +#6 10.79 Get:38 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB] +#6 10.94 Get:39 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB] +#6 10.95 Get:40 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB] +#6 10.97 Get:41 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpixman-1-0 amd64 0.40.0-1ubuntu0.22.04.1 [264 kB] +#6 11.01 Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0 amd64 1.14-3ubuntu3 [16.4 kB] +#6 11.01 Get:43 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrender1 amd64 1:0.9.10-1build4 [19.7 kB] +#6 11.01 Get:44 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2 amd64 1.16.0-5ubuntu2 [628 kB] +#6 11.10 Get:45 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libcodec2-1.0 amd64 1.0.1-3 [8435 kB] +#6 12.23 Get:46 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdav1d5 amd64 0.9.2-1 [463 kB] +#6 12.28 Get:47 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgsm1 amd64 1.0.19-1 [27.7 kB] +#6 12.28 Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmp3lame0 amd64 3.100-3build2 [141 kB] +#6 12.29 Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libopenjp2-7 amd64 2.4.0-6ubuntu0.3 [158 kB] +#6 12.31 Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus0 amd64 1.3.1-0.1build2 [203 kB] +#6 12.33 Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo-gobject2 amd64 1.16.0-5ubuntu2 [19.4 kB] +#6 12.36 Get:52 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf2.0-common all 2.42.8+dfsg-1ubuntu0.3 [5630 B] +#6 12.36 Get:53 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB] +#6 12.38 Get:54 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2264 B] +#6 12.38 Get:55 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB] +#6 12.38 Get:56 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB] +#6 12.39 Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB] +#6 12.41 Get:58 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.10 [185 kB] +#6 12.43 Get:59 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.8+dfsg-1ubuntu0.3 [148 kB] +#6 12.44 Get:60 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig amd64 2.13.1-4.2ubuntu5 [177 kB] +#6 12.46 Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgraphite2-3 amd64 1.3.14-1build2 [71.3 kB] +#6 12.49 Get:62 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz0b amd64 2.7.4-1ubuntu3.2 [353 kB] +#6 12.53 Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai-data all 0.1.29-1build1 [162 kB] +#6 12.55 Get:64 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdatrie1 amd64 0.2.13-2 [19.9 kB] +#6 12.55 Get:65 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai0 amd64 0.1.29-1build1 [19.2 kB] +#6 12.55 Get:66 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpango-1.0-0 amd64 1.50.6+ds-2ubuntu1 [230 kB] +#6 12.57 Get:67 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangoft2-1.0-0 amd64 1.50.6+ds-2ubuntu1 [54.0 kB] +#6 12.58 Get:68 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangocairo-1.0-0 amd64 1.50.6+ds-2ubuntu1 [39.8 kB] +#6 12.58 Get:69 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 librsvg2-2 amd64 2.52.5+dfsg-3ubuntu0.2 [2974 kB] +#6 12.89 Get:70 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libshine3 amd64 3.1.1-2 [23.2 kB] +#6 12.89 Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsnappy1v5 amd64 1.1.8-1build3 [17.5 kB] +#6 12.89 Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu3 [57.9 kB] +#6 12.90 Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsoxr0 amd64 0.1.3-4build2 [79.8 kB] +#6 12.91 Get:74 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswresample3 amd64 7:4.4.2-0ubuntu0.22.04.1 [62.2 kB] +#6 12.91 Get:75 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg0 amd64 1.3.5-0ubuntu3 [22.9 kB] +#6 12.92 Get:76 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu4 [209 kB] +#6 12.94 Get:77 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtwolame0 amd64 0.4.0-2build2 [52.5 kB] +#6 12.94 Get:78 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis0a amd64 1.3.7-1build2 [99.2 kB] +#6 12.95 Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisenc2 amd64 1.3.7-1build2 [82.6 kB] +#6 13.02 Get:80 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libvpx7 amd64 1.11.0-2ubuntu2.3 [1078 kB] +#6 13.13 Get:81 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebpmux3 amd64 1.2.2-2ubuntu0.22.04.2 [20.5 kB] +#6 13.13 Get:82 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx264-163 amd64 2:0.163.3060+git5db6aa6-2build1 [591 kB] +#6 13.19 Get:83 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx265-199 amd64 3.5-2 [1170 kB] +#6 13.30 Get:84 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libxvidcore4 amd64 2:1.3.7-1 [201 kB] +#6 13.32 Get:85 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi-common all 0.2.35-19 [35.5 kB] +#6 13.32 Get:86 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi0 amd64 0.2.35-19 [262 kB] +#6 13.34 Get:87 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavcodec58 amd64 7:4.4.2-0ubuntu0.22.04.1 [5567 kB] +#6 13.84 Get:88 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2-data all 1.2.6.1-1ubuntu1 [19.1 kB] +#6 13.85 Get:89 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2 amd64 1.2.6.1-1ubuntu1 [390 kB] +#6 13.88 Get:90 http://archive.ubuntu.com/ubuntu jammy/main amd64 libraw1394-11 amd64 2.1.2-2build2 [27.0 kB] +#6 13.88 Get:91 http://archive.ubuntu.com/ubuntu jammy/main amd64 libavc1394-0 amd64 0.5.4-5build2 [17.0 kB] +#6 13.88 Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libass9 amd64 1:0.15.2-1 [97.5 kB] +#6 13.89 Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libudfread0 amd64 1.1.2-1 [16.2 kB] +#6 13.89 Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbluray2 amd64 1:1.3.1-1 [159 kB] +#6 13.91 Get:95 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libchromaprint1 amd64 1.5.1-2 [28.4 kB] +#6 13.91 Get:96 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgme0 amd64 0.6.3-2 [127 kB] +#6 13.92 Get:97 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libmpg123-0 amd64 1.29.3-1ubuntu0.1 [172 kB] +#6 13.98 Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisfile3 amd64 1.3.7-1build2 [17.1 kB] +#6 13.98 Get:99 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenmpt0 amd64 0.6.1-1 [592 kB] +#6 14.03 Get:100 http://archive.ubuntu.com/ubuntu jammy/main amd64 librabbitmq4 amd64 0.10.0-1ubuntu2 [39.3 kB] +#6 14.04 Get:101 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsrt1.4-gnutls amd64 1.4.4-4 [309 kB] +#6 14.42 Get:102 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssh-gcrypt-4 amd64 0.9.6-2ubuntu0.22.04.3 [223 kB] +#6 15.18 Get:103 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB] +#6 15.29 Get:104 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB] +#6 15.40 Get:105 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsodium23 amd64 1.0.18-1build2 [164 kB] +#6 15.46 Get:106 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzmq5 amd64 4.3.4-2 [256 kB] +#6 15.52 Get:107 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavformat58 amd64 7:4.4.2-0ubuntu0.22.04.1 [1103 kB] +#6 15.69 Get:108 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbs2b0 amd64 3.1.0+dfsg-2.2build1 [10.2 kB] +#6 15.69 Get:109 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libflite1 amd64 2.2-3 [13.7 MB] +#6 16.86 Get:110 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libserd-0-0 amd64 0.30.10-2 [40.8 kB] +#6 16.86 Get:111 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsord-0-0 amd64 0.16.8-2 [21.2 kB] +#6 16.86 Get:112 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsratom-0-0 amd64 0.6.8-1 [17.0 kB] +#6 16.86 Get:113 http://archive.ubuntu.com/ubuntu jammy/universe amd64 liblilv-0-0 amd64 0.24.12-2 [42.8 kB] +#6 16.87 Get:114 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmysofa1 amd64 1.2.1~dfsg0-1 [1157 kB] +#6 16.97 Get:115 http://archive.ubuntu.com/ubuntu jammy/main amd64 libblas3 amd64 3.10.0-2ubuntu1 [228 kB] +#6 16.99 Get:116 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgfortran5 amd64 12.3.0-1ubuntu1~22.04 [879 kB] +#6 17.06 Get:117 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas0-pthread amd64 0.3.20+ds-1 [6803 kB] +#6 17.64 Get:118 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblapack3 amd64 3.10.0-2ubuntu1 [2504 kB] +#6 17.85 Get:119 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasyncns0 amd64 0.8-6build2 [12.8 kB] +#6 17.85 Get:120 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac8 amd64 1.3.3-2ubuntu0.2 [111 kB] +#6 17.86 Get:121 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1 amd64 1.0.31-2ubuntu0.2 [196 kB] +#6 17.88 Get:122 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpulse0 amd64 1:15.99.1+dfsg1-1ubuntu2.2 [298 kB] +#6 17.90 Get:123 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsphinxbase3 amd64 0.8+5prealpha+1-13build1 [126 kB] +#6 17.92 Get:124 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpocketsphinx3 amd64 0.8.0+real5prealpha+1-14ubuntu1 [132 kB] +#6 17.93 Get:125 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libpostproc55 amd64 7:4.4.2-0ubuntu0.22.04.1 [60.1 kB] +#6 17.93 Get:126 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsamplerate0 amd64 0.2.2-1build1 [1359 kB] +#6 18.05 Get:127 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librubberband2 amd64 2.0.0-2 [90.0 kB] +#6 18.16 Get:128 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswscale5 amd64 7:4.4.2-0ubuntu0.22.04.1 [180 kB] +#6 18.18 Get:129 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libvidstab1.1 amd64 1.1.0-2 [35.0 kB] +#6 18.18 Get:130 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzimg2 amd64 3.0.3+ds1-1 [241 kB] +#6 18.20 Get:131 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavfilter7 amd64 7:4.4.2-0ubuntu0.22.04.1 [1496 kB] +#6 18.33 Get:132 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcaca0 amd64 0.99.beta19-2.2ubuntu4 [224 kB] +#6 18.35 Get:133 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcdio19 amd64 2.1.0-3ubuntu0.2 [63.6 kB] +#6 18.35 Get:134 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-cdda2 amd64 10.2+2.0.0-1build3 [16.7 kB] +#6 18.36 Get:135 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-paranoia2 amd64 10.2+2.0.0-1build3 [15.9 kB] +#6 18.36 Get:136 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdc1394-25 amd64 2.2.6-4 [88.8 kB] +#6 18.36 Get:137 http://archive.ubuntu.com/ubuntu jammy/main amd64 libiec61883-0 amd64 1.2.0-4build3 [25.9 kB] +#6 18.46 Get:138 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjack-jackd2-0 amd64 1.9.20~dfsg-1 [293 kB] +#6 18.48 Get:139 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal-data all 1:1.19.1-2build3 [164 kB] +#6 18.49 Get:140 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsndio7.0 amd64 1.8.1-1.1 [29.3 kB] +#6 18.60 Get:141 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal1 amd64 1:1.19.1-2build3 [535 kB] +#6 18.64 Get:142 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-client0 amd64 1.20.0-1ubuntu0.1 [25.9 kB] +#6 18.65 Get:143 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdecor-0-0 amd64 0.1.0-3build1 [15.1 kB] +#6 18.65 Get:144 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-server0 amd64 1.20.0-1ubuntu0.1 [34.3 kB] +#6 18.65 Get:145 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-randr0 amd64 1.14-3ubuntu3 [18.3 kB] +#6 18.65 Get:146 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgbm1 amd64 23.2.1-1ubuntu3.1~22.04.3 [33.5 kB] +#6 18.65 Get:147 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-cursor0 amd64 1.20.0-1ubuntu0.1 [10.7 kB] +#6 18.74 Get:148 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-egl1 amd64 1.20.0-1ubuntu0.1 [5582 B] +#6 18.74 Get:149 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcursor1 amd64 1:1.2.0-2build4 [20.9 kB] +#6 18.74 Get:150 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxi6 amd64 2:1.8-1build1 [32.6 kB] +#6 18.88 Get:151 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxinerama1 amd64 2:1.1.4-3 [7382 B] +#6 18.88 Get:152 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxkbcommon0 amd64 1.4.0-1 [125 kB] +#6 18.89 Get:153 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrandr2 amd64 2:1.5.2-1build1 [20.4 kB] +#6 18.90 Get:154 http://archive.ubuntu.com/ubuntu jammy/main amd64 x11-common all 1:7.7+23ubuntu2 [23.4 kB] +#6 18.90 Get:155 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxss1 amd64 1:1.2.3-1build2 [8476 B] +#6 18.90 Get:156 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsdl2-2.0-0 amd64 2.0.20+dfsg-2ubuntu1.22.04.1 [582 kB] +#6 18.95 Get:157 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shape0 amd64 1.14-3ubuntu3 [6158 B] +#6 19.03 Get:158 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxv1 amd64 2:1.0.11-1build2 [11.2 kB] +#6 19.03 Get:159 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavdevice58 amd64 7:4.4.2-0ubuntu0.22.04.1 [87.5 kB] +#6 19.03 Get:160 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 ffmpeg amd64 7:4.4.2-0ubuntu0.22.04.1 [1696 kB] +#6 19.18 Get:161 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl3-gnutls amd64 7.81.0-1ubuntu1.20 [284 kB] +#6 19.20 Get:162 http://archive.ubuntu.com/ubuntu jammy/main amd64 liberror-perl all 0.17029-1 [26.5 kB] +#6 19.20 Get:163 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git-man all 1:2.34.1-1ubuntu1.12 [955 kB] +#6 19.29 Get:164 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git amd64 1:2.34.1-1ubuntu1.12 [3165 kB] +#6 19.56 Get:165 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1-dev amd64 2.4.7-1ubuntu0.6 [148 kB] +#6 19.57 Get:166 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libllvm14 amd64 1:14.0.0-1ubuntu1.1 [24.0 MB] +#6 21.61 Get:167 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libomp5-14 amd64 1:14.0.0-1ubuntu1.1 [389 kB] +#6 21.64 Get:168 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libomp-14-dev amd64 1:14.0.0-1ubuntu1.1 [347 kB] +#6 21.67 Get:169 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas0 amd64 0.3.20+ds-1 [6098 B] +#6 21.67 Get:170 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas-pthread-dev amd64 0.3.20+ds-1 [4634 kB] +#6 22.06 Get:171 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas-dev amd64 0.3.20+ds-1 [18.6 kB] +#6 22.06 Get:172 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-dev amd64 3.10.12-1~22.04.9 [4763 kB] +#6 22.47 Get:173 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ninja-build amd64 1.10.1-1 [111 kB] +#6 22.48 Get:174 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] +#6 22.48 Get:175 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-pip all 22.0.2+dfsg-1ubuntu0.5 [1306 kB] +#6 22.59 Get:176 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-pip-whl all 22.0.2+dfsg-1ubuntu0.5 [1680 kB] +#6 22.74 Get:177 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-setuptools-whl all 59.6.0-1.2ubuntu0.22.04.2 [788 kB] +#6 22.80 Get:178 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-dev amd64 3.10.12-1~22.04.9 [508 kB] +#6 22.85 Get:179 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3.10-venv amd64 3.10.12-1~22.04.9 [5722 B] +#6 22.85 Get:180 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libomp-dev amd64 1:14.0-55~exp2 [3074 B] +#6 23.00 debconf: delaying package configuration, since apt-utils is not installed +#6 23.04 Fetched 126 MB in 16s (7765 kB/s) +#6 23.09 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26227 files and directories currently installed.) +#6 23.14 Preparing to unpack .../0-libexpat1_2.4.7-1ubuntu0.6_amd64.deb ... +#6 23.17 Unpacking libexpat1:amd64 (2.4.7-1ubuntu0.6) over (2.4.7-1ubuntu0.2) ... +#6 23.27 Preparing to unpack .../1-libpython3.10_3.10.12-1~22.04.9_amd64.deb ... +#6 23.29 Unpacking libpython3.10:amd64 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 23.43 Preparing to unpack .../2-python3.10_3.10.12-1~22.04.9_amd64.deb ... +#6 23.52 Unpacking python3.10 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 23.61 Preparing to unpack .../3-libpython3.10-stdlib_3.10.12-1~22.04.9_amd64.deb ... +#6 23.67 Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 25.20 Preparing to unpack .../4-python3.10-minimal_3.10.12-1~22.04.9_amd64.deb ... +#6 25.23 Unpacking python3.10-minimal (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 25.40 Preparing to unpack .../5-libpython3.10-minimal_3.10.12-1~22.04.9_amd64.deb ... +#6 25.48 Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 26.81 Preparing to unpack .../6-libatomic1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 26.83 Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 26.91 Preparing to unpack .../7-libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 26.94 Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.04 Preparing to unpack .../8-gcc-12-base_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.07 Unpacking gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.15 Setting up gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 27.23 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26230 files and directories currently installed.) +#6 27.25 Preparing to unpack .../libstdc++6_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.28 Unpacking libstdc++6:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.40 Setting up libstdc++6:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 27.48 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26230 files and directories currently installed.) +#6 27.49 Preparing to unpack .../0-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.52 Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.60 Preparing to unpack .../1-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.63 Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.74 Preparing to unpack .../2-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.76 Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.84 Preparing to unpack .../3-libgomp1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.87 Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 27.96 Preparing to unpack .../4-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 27.98 Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 28.06 Preparing to unpack .../5-libgcc-s1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 28.09 Unpacking libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 28.17 Setting up libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 28.26 Selecting previously unselected package libapparmor1:amd64. +#6 28.26 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26230 files and directories currently installed.) +#6 28.27 Preparing to unpack .../000-libapparmor1_3.0.4-2ubuntu2.4_amd64.deb ... +#6 28.28 Unpacking libapparmor1:amd64 (3.0.4-2ubuntu2.4) ... +#6 28.34 Selecting previously unselected package libdbus-1-3:amd64. +#6 28.35 Preparing to unpack .../001-libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb ... +#6 28.35 Unpacking libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ... +#6 28.42 Selecting previously unselected package libfribidi0:amd64. +#6 28.42 Preparing to unpack .../002-libfribidi0_1.0.8-2ubuntu3.1_amd64.deb ... +#6 28.43 Unpacking libfribidi0:amd64 (1.0.8-2ubuntu3.1) ... +#6 28.50 Selecting previously unselected package libslang2:amd64. +#6 28.50 Preparing to unpack .../003-libslang2_2.3.2-5build4_amd64.deb ... +#6 28.51 Unpacking libslang2:amd64 (2.3.2-5build4) ... +#6 28.58 Selecting previously unselected package shared-mime-info. +#6 28.58 Preparing to unpack .../004-shared-mime-info_2.1-2_amd64.deb ... +#6 28.59 Unpacking shared-mime-info (2.1-2) ... +#6 28.69 Selecting previously unselected package ucf. +#6 28.70 Preparing to unpack .../005-ucf_3.0043_all.deb ... +#6 28.71 Moving old data out of the way +#6 28.71 Unpacking ucf (3.0043) ... +#6 28.77 Selecting previously unselected package xkb-data. +#6 28.77 Preparing to unpack .../006-xkb-data_2.33-1_all.deb ... +#6 28.78 Unpacking xkb-data (2.33-1) ... +#6 28.89 Selecting previously unselected package libpng16-16:amd64. +#6 28.89 Preparing to unpack .../007-libpng16-16_1.6.37-3build5_amd64.deb ... +#6 28.90 Unpacking libpng16-16:amd64 (1.6.37-3build5) ... +#6 28.98 Selecting previously unselected package libusb-1.0-0:amd64. +#6 28.98 Preparing to unpack .../008-libusb-1.0-0_2%3a1.0.25-1ubuntu2_amd64.deb ... +#6 28.99 Unpacking libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ... +#6 29.05 Selecting previously unselected package wget. +#6 29.05 Preparing to unpack .../009-wget_1.21.2-2ubuntu1.1_amd64.deb ... +#6 29.06 Unpacking wget (1.21.2-2ubuntu1.1) ... +#6 29.12 Preparing to unpack .../010-curl_7.81.0-1ubuntu1.20_amd64.deb ... +#6 29.15 Unpacking curl (7.81.0-1ubuntu1.20) over (7.81.0-1ubuntu1.7) ... +#6 29.25 Preparing to unpack .../011-libcurl4_7.81.0-1ubuntu1.20_amd64.deb ... +#6 29.28 Unpacking libcurl4:amd64 (7.81.0-1ubuntu1.20) over (7.81.0-1ubuntu1.7) ... +#6 29.38 Selecting previously unselected package libaom3:amd64. +#6 29.38 Preparing to unpack .../012-libaom3_3.3.0-1ubuntu0.1_amd64.deb ... +#6 29.39 Unpacking libaom3:amd64 (3.3.0-1ubuntu0.1) ... +#6 29.45 Selecting previously unselected package libva2:amd64. +#6 29.45 Preparing to unpack .../013-libva2_2.14.0-1_amd64.deb ... +#6 29.46 Unpacking libva2:amd64 (2.14.0-1) ... +#6 29.50 Selecting previously unselected package libmfx1:amd64. +#6 29.50 Preparing to unpack .../014-libmfx1_22.3.0-1_amd64.deb ... +#6 29.51 Unpacking libmfx1:amd64 (22.3.0-1) ... +#6 29.64 Selecting previously unselected package libva-drm2:amd64. +#6 29.64 Preparing to unpack .../015-libva-drm2_2.14.0-1_amd64.deb ... +#6 29.65 Unpacking libva-drm2:amd64 (2.14.0-1) ... +#6 29.71 Selecting previously unselected package libva-x11-2:amd64. +#6 29.71 Preparing to unpack .../016-libva-x11-2_2.14.0-1_amd64.deb ... +#6 29.72 Unpacking libva-x11-2:amd64 (2.14.0-1) ... +#6 29.79 Selecting previously unselected package libvdpau1:amd64. +#6 29.79 Preparing to unpack .../017-libvdpau1_1.4-3build2_amd64.deb ... +#6 29.80 Unpacking libvdpau1:amd64 (1.4-3build2) ... +#6 29.86 Selecting previously unselected package ocl-icd-libopencl1:amd64. +#6 29.86 Preparing to unpack .../018-ocl-icd-libopencl1_2.2.14-3_amd64.deb ... +#6 29.87 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-3) ... +#6 29.93 Selecting previously unselected package libavutil56:amd64. +#6 29.94 Preparing to unpack .../019-libavutil56_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 29.94 Unpacking libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 30.01 Selecting previously unselected package libfreetype6:amd64. +#6 30.01 Preparing to unpack .../020-libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb ... +#6 30.02 Unpacking libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ... +#6 30.08 Selecting previously unselected package fonts-dejavu-core. +#6 30.08 Preparing to unpack .../021-fonts-dejavu-core_2.37-2build1_all.deb ... +#6 30.09 Unpacking fonts-dejavu-core (2.37-2build1) ... +#6 30.20 Selecting previously unselected package fontconfig-config. +#6 30.21 Preparing to unpack .../022-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ... +#6 30.21 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ... +#6 30.28 Selecting previously unselected package libfontconfig1:amd64. +#6 30.28 Preparing to unpack .../023-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ... +#6 30.29 Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ... +#6 30.35 Selecting previously unselected package libpixman-1-0:amd64. +#6 30.36 Preparing to unpack .../024-libpixman-1-0_0.40.0-1ubuntu0.22.04.1_amd64.deb ... +#6 30.37 Unpacking libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ... +#6 30.43 Selecting previously unselected package libxcb-render0:amd64. +#6 30.43 Preparing to unpack .../025-libxcb-render0_1.14-3ubuntu3_amd64.deb ... +#6 30.44 Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ... +#6 30.50 Selecting previously unselected package libxrender1:amd64. +#6 30.50 Preparing to unpack .../026-libxrender1_1%3a0.9.10-1build4_amd64.deb ... +#6 30.51 Unpacking libxrender1:amd64 (1:0.9.10-1build4) ... +#6 30.57 Selecting previously unselected package libcairo2:amd64. +#6 30.57 Preparing to unpack .../027-libcairo2_1.16.0-5ubuntu2_amd64.deb ... +#6 30.58 Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ... +#6 30.64 Selecting previously unselected package libcodec2-1.0:amd64. +#6 30.64 Preparing to unpack .../028-libcodec2-1.0_1.0.1-3_amd64.deb ... +#6 30.65 Unpacking libcodec2-1.0:amd64 (1.0.1-3) ... +#6 30.75 Selecting previously unselected package libdav1d5:amd64. +#6 30.76 Preparing to unpack .../029-libdav1d5_0.9.2-1_amd64.deb ... +#6 30.76 Unpacking libdav1d5:amd64 (0.9.2-1) ... +#6 30.83 Selecting previously unselected package libgsm1:amd64. +#6 30.83 Preparing to unpack .../030-libgsm1_1.0.19-1_amd64.deb ... +#6 30.84 Unpacking libgsm1:amd64 (1.0.19-1) ... +#6 30.90 Selecting previously unselected package libmp3lame0:amd64. +#6 30.90 Preparing to unpack .../031-libmp3lame0_3.100-3build2_amd64.deb ... +#6 30.91 Unpacking libmp3lame0:amd64 (3.100-3build2) ... +#6 30.97 Selecting previously unselected package libopenjp2-7:amd64. +#6 30.97 Preparing to unpack .../032-libopenjp2-7_2.4.0-6ubuntu0.3_amd64.deb ... +#6 30.98 Unpacking libopenjp2-7:amd64 (2.4.0-6ubuntu0.3) ... +#6 31.04 Selecting previously unselected package libopus0:amd64. +#6 31.05 Preparing to unpack .../033-libopus0_1.3.1-0.1build2_amd64.deb ... +#6 31.05 Unpacking libopus0:amd64 (1.3.1-0.1build2) ... +#6 31.12 Selecting previously unselected package libcairo-gobject2:amd64. +#6 31.12 Preparing to unpack .../034-libcairo-gobject2_1.16.0-5ubuntu2_amd64.deb ... +#6 31.13 Unpacking libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ... +#6 31.18 Selecting previously unselected package libgdk-pixbuf2.0-common. +#6 31.18 Preparing to unpack .../035-libgdk-pixbuf2.0-common_2.42.8+dfsg-1ubuntu0.3_all.deb ... +#6 31.19 Unpacking libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.3) ... +#6 31.25 Selecting previously unselected package libjpeg-turbo8:amd64. +#6 31.25 Preparing to unpack .../036-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ... +#6 31.26 Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ... +#6 31.31 Selecting previously unselected package libjpeg8:amd64. +#6 31.31 Preparing to unpack .../037-libjpeg8_8c-2ubuntu10_amd64.deb ... +#6 31.32 Unpacking libjpeg8:amd64 (8c-2ubuntu10) ... +#6 31.38 Selecting previously unselected package libdeflate0:amd64. +#6 31.38 Preparing to unpack .../038-libdeflate0_1.10-2_amd64.deb ... +#6 31.39 Unpacking libdeflate0:amd64 (1.10-2) ... +#6 31.45 Selecting previously unselected package libjbig0:amd64. +#6 31.45 Preparing to unpack .../039-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ... +#6 31.46 Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ... +#6 31.52 Selecting previously unselected package libwebp7:amd64. +#6 31.52 Preparing to unpack .../040-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ... +#6 31.53 Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 31.59 Selecting previously unselected package libtiff5:amd64. +#6 31.59 Preparing to unpack .../041-libtiff5_4.3.0-6ubuntu0.10_amd64.deb ... +#6 31.60 Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.10) ... +#6 31.67 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +#6 31.67 Preparing to unpack .../042-libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.3_amd64.deb ... +#6 31.68 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ... +#6 31.75 Selecting previously unselected package fontconfig. +#6 31.76 Preparing to unpack .../043-fontconfig_2.13.1-4.2ubuntu5_amd64.deb ... +#6 31.76 Unpacking fontconfig (2.13.1-4.2ubuntu5) ... +#6 31.83 Selecting previously unselected package libgraphite2-3:amd64. +#6 31.83 Preparing to unpack .../044-libgraphite2-3_1.3.14-1build2_amd64.deb ... +#6 31.84 Unpacking libgraphite2-3:amd64 (1.3.14-1build2) ... +#6 31.90 Selecting previously unselected package libharfbuzz0b:amd64. +#6 31.91 Preparing to unpack .../045-libharfbuzz0b_2.7.4-1ubuntu3.2_amd64.deb ... +#6 31.91 Unpacking libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ... +#6 31.97 Selecting previously unselected package libthai-data. +#6 31.97 Preparing to unpack .../046-libthai-data_0.1.29-1build1_all.deb ... +#6 31.98 Unpacking libthai-data (0.1.29-1build1) ... +#6 32.04 Selecting previously unselected package libdatrie1:amd64. +#6 32.04 Preparing to unpack .../047-libdatrie1_0.2.13-2_amd64.deb ... +#6 32.05 Unpacking libdatrie1:amd64 (0.2.13-2) ... +#6 32.11 Selecting previously unselected package libthai0:amd64. +#6 32.11 Preparing to unpack .../048-libthai0_0.1.29-1build1_amd64.deb ... +#6 32.12 Unpacking libthai0:amd64 (0.1.29-1build1) ... +#6 32.18 Selecting previously unselected package libpango-1.0-0:amd64. +#6 32.18 Preparing to unpack .../049-libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 32.19 Unpacking libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 32.26 Selecting previously unselected package libpangoft2-1.0-0:amd64. +#6 32.26 Preparing to unpack .../050-libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 32.27 Unpacking libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 32.33 Selecting previously unselected package libpangocairo-1.0-0:amd64. +#6 32.33 Preparing to unpack .../051-libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 32.34 Unpacking libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 32.40 Selecting previously unselected package librsvg2-2:amd64. +#6 32.40 Preparing to unpack .../052-librsvg2-2_2.52.5+dfsg-3ubuntu0.2_amd64.deb ... +#6 32.41 Unpacking librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ... +#6 32.50 Selecting previously unselected package libshine3:amd64. +#6 32.50 Preparing to unpack .../053-libshine3_3.1.1-2_amd64.deb ... +#6 32.51 Unpacking libshine3:amd64 (3.1.1-2) ... +#6 32.57 Selecting previously unselected package libsnappy1v5:amd64. +#6 32.57 Preparing to unpack .../054-libsnappy1v5_1.1.8-1build3_amd64.deb ... +#6 32.58 Unpacking libsnappy1v5:amd64 (1.1.8-1build3) ... +#6 32.64 Selecting previously unselected package libspeex1:amd64. +#6 32.64 Preparing to unpack .../055-libspeex1_1.2~rc1.2-1.1ubuntu3_amd64.deb ... +#6 32.65 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ... +#6 32.71 Selecting previously unselected package libsoxr0:amd64. +#6 32.71 Preparing to unpack .../056-libsoxr0_0.1.3-4build2_amd64.deb ... +#6 32.72 Unpacking libsoxr0:amd64 (0.1.3-4build2) ... +#6 32.78 Selecting previously unselected package libswresample3:amd64. +#6 32.78 Preparing to unpack .../057-libswresample3_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 32.79 Unpacking libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 32.85 Selecting previously unselected package libogg0:amd64. +#6 32.85 Preparing to unpack .../058-libogg0_1.3.5-0ubuntu3_amd64.deb ... +#6 32.86 Unpacking libogg0:amd64 (1.3.5-0ubuntu3) ... +#6 32.92 Selecting previously unselected package libtheora0:amd64. +#6 32.93 Preparing to unpack .../059-libtheora0_1.1.1+dfsg.1-15ubuntu4_amd64.deb ... +#6 32.93 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ... +#6 32.99 Selecting previously unselected package libtwolame0:amd64. +#6 33.00 Preparing to unpack .../060-libtwolame0_0.4.0-2build2_amd64.deb ... +#6 33.00 Unpacking libtwolame0:amd64 (0.4.0-2build2) ... +#6 33.07 Selecting previously unselected package libvorbis0a:amd64. +#6 33.07 Preparing to unpack .../061-libvorbis0a_1.3.7-1build2_amd64.deb ... +#6 33.08 Unpacking libvorbis0a:amd64 (1.3.7-1build2) ... +#6 33.13 Selecting previously unselected package libvorbisenc2:amd64. +#6 33.14 Preparing to unpack .../062-libvorbisenc2_1.3.7-1build2_amd64.deb ... +#6 33.14 Unpacking libvorbisenc2:amd64 (1.3.7-1build2) ... +#6 33.21 Selecting previously unselected package libvpx7:amd64. +#6 33.21 Preparing to unpack .../063-libvpx7_1.11.0-2ubuntu2.3_amd64.deb ... +#6 33.22 Unpacking libvpx7:amd64 (1.11.0-2ubuntu2.3) ... +#6 33.29 Selecting previously unselected package libwebpmux3:amd64. +#6 33.29 Preparing to unpack .../064-libwebpmux3_1.2.2-2ubuntu0.22.04.2_amd64.deb ... +#6 33.30 Unpacking libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 33.36 Selecting previously unselected package libx264-163:amd64. +#6 33.36 Preparing to unpack .../065-libx264-163_2%3a0.163.3060+git5db6aa6-2build1_amd64.deb ... +#6 33.37 Unpacking libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ... +#6 33.43 Selecting previously unselected package libx265-199:amd64. +#6 33.43 Preparing to unpack .../066-libx265-199_3.5-2_amd64.deb ... +#6 33.44 Unpacking libx265-199:amd64 (3.5-2) ... +#6 33.54 Selecting previously unselected package libxvidcore4:amd64. +#6 33.54 Preparing to unpack .../067-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +#6 33.55 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +#6 33.61 Selecting previously unselected package libzvbi-common. +#6 33.61 Preparing to unpack .../068-libzvbi-common_0.2.35-19_all.deb ... +#6 33.62 Unpacking libzvbi-common (0.2.35-19) ... +#6 33.69 Selecting previously unselected package libzvbi0:amd64. +#6 33.69 Preparing to unpack .../069-libzvbi0_0.2.35-19_amd64.deb ... +#6 33.70 Unpacking libzvbi0:amd64 (0.2.35-19) ... +#6 33.76 Selecting previously unselected package libavcodec58:amd64. +#6 33.76 Preparing to unpack .../070-libavcodec58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 33.77 Unpacking libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 33.86 Selecting previously unselected package libasound2-data. +#6 33.86 Preparing to unpack .../071-libasound2-data_1.2.6.1-1ubuntu1_all.deb ... +#6 33.87 Unpacking libasound2-data (1.2.6.1-1ubuntu1) ... +#6 33.94 Selecting previously unselected package libasound2:amd64. +#6 33.94 Preparing to unpack .../072-libasound2_1.2.6.1-1ubuntu1_amd64.deb ... +#6 33.95 Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ... +#6 34.01 Selecting previously unselected package libraw1394-11:amd64. +#6 34.01 Preparing to unpack .../073-libraw1394-11_2.1.2-2build2_amd64.deb ... +#6 34.02 Unpacking libraw1394-11:amd64 (2.1.2-2build2) ... +#6 34.09 Selecting previously unselected package libavc1394-0:amd64. +#6 34.09 Preparing to unpack .../074-libavc1394-0_0.5.4-5build2_amd64.deb ... +#6 34.10 Unpacking libavc1394-0:amd64 (0.5.4-5build2) ... +#6 34.16 Selecting previously unselected package libass9:amd64. +#6 34.16 Preparing to unpack .../075-libass9_1%3a0.15.2-1_amd64.deb ... +#6 34.17 Unpacking libass9:amd64 (1:0.15.2-1) ... +#6 34.24 Selecting previously unselected package libudfread0:amd64. +#6 34.24 Preparing to unpack .../076-libudfread0_1.1.2-1_amd64.deb ... +#6 34.25 Unpacking libudfread0:amd64 (1.1.2-1) ... +#6 34.31 Selecting previously unselected package libbluray2:amd64. +#6 34.31 Preparing to unpack .../077-libbluray2_1%3a1.3.1-1_amd64.deb ... +#6 34.32 Unpacking libbluray2:amd64 (1:1.3.1-1) ... +#6 34.38 Selecting previously unselected package libchromaprint1:amd64. +#6 34.38 Preparing to unpack .../078-libchromaprint1_1.5.1-2_amd64.deb ... +#6 34.39 Unpacking libchromaprint1:amd64 (1.5.1-2) ... +#6 34.45 Selecting previously unselected package libgme0:amd64. +#6 34.45 Preparing to unpack .../079-libgme0_0.6.3-2_amd64.deb ... +#6 34.46 Unpacking libgme0:amd64 (0.6.3-2) ... +#6 34.53 Selecting previously unselected package libmpg123-0:amd64. +#6 34.53 Preparing to unpack .../080-libmpg123-0_1.29.3-1ubuntu0.1_amd64.deb ... +#6 34.54 Unpacking libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ... +#6 34.60 Selecting previously unselected package libvorbisfile3:amd64. +#6 34.61 Preparing to unpack .../081-libvorbisfile3_1.3.7-1build2_amd64.deb ... +#6 34.61 Unpacking libvorbisfile3:amd64 (1.3.7-1build2) ... +#6 34.70 Selecting previously unselected package libopenmpt0:amd64. +#6 34.70 Preparing to unpack .../082-libopenmpt0_0.6.1-1_amd64.deb ... +#6 34.71 Unpacking libopenmpt0:amd64 (0.6.1-1) ... +#6 34.77 Selecting previously unselected package librabbitmq4:amd64. +#6 34.77 Preparing to unpack .../083-librabbitmq4_0.10.0-1ubuntu2_amd64.deb ... +#6 34.78 Unpacking librabbitmq4:amd64 (0.10.0-1ubuntu2) ... +#6 34.84 Selecting previously unselected package libsrt1.4-gnutls:amd64. +#6 34.84 Preparing to unpack .../084-libsrt1.4-gnutls_1.4.4-4_amd64.deb ... +#6 34.85 Unpacking libsrt1.4-gnutls:amd64 (1.4.4-4) ... +#6 34.92 Selecting previously unselected package libssh-gcrypt-4:amd64. +#6 34.92 Preparing to unpack .../085-libssh-gcrypt-4_0.9.6-2ubuntu0.22.04.3_amd64.deb ... +#6 34.93 Unpacking libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.3) ... +#6 34.99 Selecting previously unselected package libnorm1:amd64. +#6 34.99 Preparing to unpack .../086-libnorm1_1.5.9+dfsg-2_amd64.deb ... +#6 35.00 Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ... +#6 35.07 Selecting previously unselected package libpgm-5.3-0:amd64. +#6 35.07 Preparing to unpack .../087-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ... +#6 35.08 Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#6 35.15 Selecting previously unselected package libsodium23:amd64. +#6 35.15 Preparing to unpack .../088-libsodium23_1.0.18-1build2_amd64.deb ... +#6 35.16 Unpacking libsodium23:amd64 (1.0.18-1build2) ... +#6 35.22 Selecting previously unselected package libzmq5:amd64. +#6 35.23 Preparing to unpack .../089-libzmq5_4.3.4-2_amd64.deb ... +#6 35.23 Unpacking libzmq5:amd64 (4.3.4-2) ... +#6 35.30 Selecting previously unselected package libavformat58:amd64. +#6 35.30 Preparing to unpack .../090-libavformat58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 35.31 Unpacking libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 35.37 Selecting previously unselected package libbs2b0:amd64. +#6 35.38 Preparing to unpack .../091-libbs2b0_3.1.0+dfsg-2.2build1_amd64.deb ... +#6 35.38 Unpacking libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ... +#6 35.45 Selecting previously unselected package libflite1:amd64. +#6 35.45 Preparing to unpack .../092-libflite1_2.2-3_amd64.deb ... +#6 35.46 Unpacking libflite1:amd64 (2.2-3) ... +#6 35.60 Selecting previously unselected package libserd-0-0:amd64. +#6 35.60 Preparing to unpack .../093-libserd-0-0_0.30.10-2_amd64.deb ... +#6 35.61 Unpacking libserd-0-0:amd64 (0.30.10-2) ... +#6 35.68 Selecting previously unselected package libsord-0-0:amd64. +#6 35.68 Preparing to unpack .../094-libsord-0-0_0.16.8-2_amd64.deb ... +#6 35.69 Unpacking libsord-0-0:amd64 (0.16.8-2) ... +#6 35.75 Selecting previously unselected package libsratom-0-0:amd64. +#6 35.75 Preparing to unpack .../095-libsratom-0-0_0.6.8-1_amd64.deb ... +#6 35.76 Unpacking libsratom-0-0:amd64 (0.6.8-1) ... +#6 35.83 Selecting previously unselected package liblilv-0-0:amd64. +#6 35.83 Preparing to unpack .../096-liblilv-0-0_0.24.12-2_amd64.deb ... +#6 35.84 Unpacking liblilv-0-0:amd64 (0.24.12-2) ... +#6 35.90 Selecting previously unselected package libmysofa1:amd64. +#6 35.90 Preparing to unpack .../097-libmysofa1_1.2.1~dfsg0-1_amd64.deb ... +#6 35.91 Unpacking libmysofa1:amd64 (1.2.1~dfsg0-1) ... +#6 35.99 Selecting previously unselected package libblas3:amd64. +#6 35.99 Preparing to unpack .../098-libblas3_3.10.0-2ubuntu1_amd64.deb ... +#6 36.00 Unpacking libblas3:amd64 (3.10.0-2ubuntu1) ... +#6 36.06 Selecting previously unselected package libgfortran5:amd64. +#6 36.07 Preparing to unpack .../099-libgfortran5_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 36.07 Unpacking libgfortran5:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 36.15 Selecting previously unselected package libopenblas0-pthread:amd64. +#6 36.15 Preparing to unpack .../100-libopenblas0-pthread_0.3.20+ds-1_amd64.deb ... +#6 36.16 Unpacking libopenblas0-pthread:amd64 (0.3.20+ds-1) ... +#6 36.35 Selecting previously unselected package liblapack3:amd64. +#6 36.35 Preparing to unpack .../101-liblapack3_3.10.0-2ubuntu1_amd64.deb ... +#6 36.36 Unpacking liblapack3:amd64 (3.10.0-2ubuntu1) ... +#6 36.44 Selecting previously unselected package libasyncns0:amd64. +#6 36.44 Preparing to unpack .../102-libasyncns0_0.8-6build2_amd64.deb ... +#6 36.45 Unpacking libasyncns0:amd64 (0.8-6build2) ... +#6 36.52 Selecting previously unselected package libflac8:amd64. +#6 36.52 Preparing to unpack .../103-libflac8_1.3.3-2ubuntu0.2_amd64.deb ... +#6 36.53 Unpacking libflac8:amd64 (1.3.3-2ubuntu0.2) ... +#6 36.59 Selecting previously unselected package libsndfile1:amd64. +#6 36.59 Preparing to unpack .../104-libsndfile1_1.0.31-2ubuntu0.2_amd64.deb ... +#6 36.60 Unpacking libsndfile1:amd64 (1.0.31-2ubuntu0.2) ... +#6 36.69 Selecting previously unselected package libpulse0:amd64. +#6 36.69 Preparing to unpack .../105-libpulse0_1%3a15.99.1+dfsg1-1ubuntu2.2_amd64.deb ... +#6 36.70 Unpacking libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ... +#6 36.77 Selecting previously unselected package libsphinxbase3:amd64. +#6 36.77 Preparing to unpack .../106-libsphinxbase3_0.8+5prealpha+1-13build1_amd64.deb ... +#6 36.78 Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ... +#6 36.84 Selecting previously unselected package libpocketsphinx3:amd64. +#6 36.85 Preparing to unpack .../107-libpocketsphinx3_0.8.0+real5prealpha+1-14ubuntu1_amd64.deb ... +#6 36.85 Unpacking libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ... +#6 36.92 Selecting previously unselected package libpostproc55:amd64. +#6 36.92 Preparing to unpack .../108-libpostproc55_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 36.93 Unpacking libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 37.00 Selecting previously unselected package libsamplerate0:amd64. +#6 37.00 Preparing to unpack .../109-libsamplerate0_0.2.2-1build1_amd64.deb ... +#6 37.01 Unpacking libsamplerate0:amd64 (0.2.2-1build1) ... +#6 37.07 Selecting previously unselected package librubberband2:amd64. +#6 37.08 Preparing to unpack .../110-librubberband2_2.0.0-2_amd64.deb ... +#6 37.09 Unpacking librubberband2:amd64 (2.0.0-2) ... +#6 37.15 Selecting previously unselected package libswscale5:amd64. +#6 37.15 Preparing to unpack .../111-libswscale5_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 37.16 Unpacking libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 37.22 Selecting previously unselected package libvidstab1.1:amd64. +#6 37.23 Preparing to unpack .../112-libvidstab1.1_1.1.0-2_amd64.deb ... +#6 37.24 Unpacking libvidstab1.1:amd64 (1.1.0-2) ... +#6 37.30 Selecting previously unselected package libzimg2:amd64. +#6 37.30 Preparing to unpack .../113-libzimg2_3.0.3+ds1-1_amd64.deb ... +#6 37.31 Unpacking libzimg2:amd64 (3.0.3+ds1-1) ... +#6 37.38 Selecting previously unselected package libavfilter7:amd64. +#6 37.38 Preparing to unpack .../114-libavfilter7_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 37.39 Unpacking libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 37.47 Selecting previously unselected package libcaca0:amd64. +#6 37.47 Preparing to unpack .../115-libcaca0_0.99.beta19-2.2ubuntu4_amd64.deb ... +#6 37.48 Unpacking libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ... +#6 37.55 Selecting previously unselected package libcdio19:amd64. +#6 37.55 Preparing to unpack .../116-libcdio19_2.1.0-3ubuntu0.2_amd64.deb ... +#6 37.56 Unpacking libcdio19:amd64 (2.1.0-3ubuntu0.2) ... +#6 37.62 Selecting previously unselected package libcdio-cdda2:amd64. +#6 37.63 Preparing to unpack .../117-libcdio-cdda2_10.2+2.0.0-1build3_amd64.deb ... +#6 37.63 Unpacking libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ... +#6 37.70 Selecting previously unselected package libcdio-paranoia2:amd64. +#6 37.70 Preparing to unpack .../118-libcdio-paranoia2_10.2+2.0.0-1build3_amd64.deb ... +#6 37.71 Unpacking libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ... +#6 37.78 Selecting previously unselected package libdc1394-25:amd64. +#6 37.78 Preparing to unpack .../119-libdc1394-25_2.2.6-4_amd64.deb ... +#6 37.79 Unpacking libdc1394-25:amd64 (2.2.6-4) ... +#6 37.85 Selecting previously unselected package libiec61883-0:amd64. +#6 37.86 Preparing to unpack .../120-libiec61883-0_1.2.0-4build3_amd64.deb ... +#6 37.86 Unpacking libiec61883-0:amd64 (1.2.0-4build3) ... +#6 37.93 Selecting previously unselected package libjack-jackd2-0:amd64. +#6 37.93 Preparing to unpack .../121-libjack-jackd2-0_1.9.20~dfsg-1_amd64.deb ... +#6 37.94 Unpacking libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ... +#6 38.00 Selecting previously unselected package libopenal-data. +#6 38.00 Preparing to unpack .../122-libopenal-data_1%3a1.19.1-2build3_all.deb ... +#6 38.01 Unpacking libopenal-data (1:1.19.1-2build3) ... +#6 38.07 Selecting previously unselected package libsndio7.0:amd64. +#6 38.07 Preparing to unpack .../123-libsndio7.0_1.8.1-1.1_amd64.deb ... +#6 38.08 Unpacking libsndio7.0:amd64 (1.8.1-1.1) ... +#6 38.15 Selecting previously unselected package libopenal1:amd64. +#6 38.15 Preparing to unpack .../124-libopenal1_1%3a1.19.1-2build3_amd64.deb ... +#6 38.16 Unpacking libopenal1:amd64 (1:1.19.1-2build3) ... +#6 38.23 Selecting previously unselected package libwayland-client0:amd64. +#6 38.23 Preparing to unpack .../125-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 38.24 Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ... +#6 38.30 Selecting previously unselected package libdecor-0-0:amd64. +#6 38.31 Preparing to unpack .../126-libdecor-0-0_0.1.0-3build1_amd64.deb ... +#6 38.31 Unpacking libdecor-0-0:amd64 (0.1.0-3build1) ... +#6 38.53 Selecting previously unselected package libwayland-server0:amd64. +#6 38.54 Preparing to unpack .../127-libwayland-server0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 38.55 Unpacking libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ... +#6 38.61 Selecting previously unselected package libxcb-randr0:amd64. +#6 38.61 Preparing to unpack .../128-libxcb-randr0_1.14-3ubuntu3_amd64.deb ... +#6 38.62 Unpacking libxcb-randr0:amd64 (1.14-3ubuntu3) ... +#6 38.69 Selecting previously unselected package libgbm1:amd64. +#6 38.69 Preparing to unpack .../129-libgbm1_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ... +#6 38.70 Unpacking libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ... +#6 38.77 Selecting previously unselected package libwayland-cursor0:amd64. +#6 38.77 Preparing to unpack .../130-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 38.78 Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ... +#6 38.85 Selecting previously unselected package libwayland-egl1:amd64. +#6 38.85 Preparing to unpack .../131-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ... +#6 38.86 Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ... +#6 38.92 Selecting previously unselected package libxcursor1:amd64. +#6 38.92 Preparing to unpack .../132-libxcursor1_1%3a1.2.0-2build4_amd64.deb ... +#6 38.93 Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ... +#6 38.99 Selecting previously unselected package libxi6:amd64. +#6 38.99 Preparing to unpack .../133-libxi6_2%3a1.8-1build1_amd64.deb ... +#6 39.00 Unpacking libxi6:amd64 (2:1.8-1build1) ... +#6 39.06 Selecting previously unselected package libxinerama1:amd64. +#6 39.06 Preparing to unpack .../134-libxinerama1_2%3a1.1.4-3_amd64.deb ... +#6 39.07 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... +#6 39.13 Selecting previously unselected package libxkbcommon0:amd64. +#6 39.13 Preparing to unpack .../135-libxkbcommon0_1.4.0-1_amd64.deb ... +#6 39.14 Unpacking libxkbcommon0:amd64 (1.4.0-1) ... +#6 39.21 Selecting previously unselected package libxrandr2:amd64. +#6 39.21 Preparing to unpack .../136-libxrandr2_2%3a1.5.2-1build1_amd64.deb ... +#6 39.22 Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ... +#6 39.29 Selecting previously unselected package x11-common. +#6 39.29 Preparing to unpack .../137-x11-common_1%3a7.7+23ubuntu2_all.deb ... +#6 39.30 Unpacking x11-common (1:7.7+23ubuntu2) ... +#6 39.36 Selecting previously unselected package libxss1:amd64. +#6 39.37 Preparing to unpack .../138-libxss1_1%3a1.2.3-1build2_amd64.deb ... +#6 39.37 Unpacking libxss1:amd64 (1:1.2.3-1build2) ... +#6 39.44 Selecting previously unselected package libsdl2-2.0-0:amd64. +#6 39.44 Preparing to unpack .../139-libsdl2-2.0-0_2.0.20+dfsg-2ubuntu1.22.04.1_amd64.deb ... +#6 39.45 Unpacking libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ... +#6 39.52 Selecting previously unselected package libxcb-shape0:amd64. +#6 39.52 Preparing to unpack .../140-libxcb-shape0_1.14-3ubuntu3_amd64.deb ... +#6 39.53 Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ... +#6 39.59 Selecting previously unselected package libxv1:amd64. +#6 39.59 Preparing to unpack .../141-libxv1_2%3a1.0.11-1build2_amd64.deb ... +#6 39.60 Unpacking libxv1:amd64 (2:1.0.11-1build2) ... +#6 39.67 Selecting previously unselected package libavdevice58:amd64. +#6 39.67 Preparing to unpack .../142-libavdevice58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 39.68 Unpacking libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 39.73 Selecting previously unselected package ffmpeg. +#6 39.73 Preparing to unpack .../143-ffmpeg_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 39.74 Unpacking ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ... +#6 39.81 Selecting previously unselected package libcurl3-gnutls:amd64. +#6 39.81 Preparing to unpack .../144-libcurl3-gnutls_7.81.0-1ubuntu1.20_amd64.deb ... +#6 39.82 Unpacking libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.20) ... +#6 39.87 Selecting previously unselected package liberror-perl. +#6 39.88 Preparing to unpack .../145-liberror-perl_0.17029-1_all.deb ... +#6 39.88 Unpacking liberror-perl (0.17029-1) ... +#6 39.94 Selecting previously unselected package git-man. +#6 39.94 Preparing to unpack .../146-git-man_1%3a2.34.1-1ubuntu1.12_all.deb ... +#6 39.95 Unpacking git-man (1:2.34.1-1ubuntu1.12) ... +#6 40.02 Selecting previously unselected package git. +#6 40.03 Preparing to unpack .../147-git_1%3a2.34.1-1ubuntu1.12_amd64.deb ... +#6 40.04 Unpacking git (1:2.34.1-1ubuntu1.12) ... +#6 40.18 Selecting previously unselected package libexpat1-dev:amd64. +#6 40.18 Preparing to unpack .../148-libexpat1-dev_2.4.7-1ubuntu0.6_amd64.deb ... +#6 40.19 Unpacking libexpat1-dev:amd64 (2.4.7-1ubuntu0.6) ... +#6 40.25 Selecting previously unselected package libllvm14:amd64. +#6 40.25 Preparing to unpack .../149-libllvm14_1%3a14.0.0-1ubuntu1.1_amd64.deb ... +#6 40.26 Unpacking libllvm14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 40.61 Selecting previously unselected package libomp5-14:amd64. +#6 40.61 Preparing to unpack .../150-libomp5-14_1%3a14.0.0-1ubuntu1.1_amd64.deb ... +#6 40.62 Unpacking libomp5-14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 40.68 Selecting previously unselected package libomp-14-dev. +#6 40.68 Preparing to unpack .../151-libomp-14-dev_1%3a14.0.0-1ubuntu1.1_amd64.deb ... +#6 40.69 Unpacking libomp-14-dev (1:14.0.0-1ubuntu1.1) ... +#6 40.76 Selecting previously unselected package libopenblas0:amd64. +#6 40.76 Preparing to unpack .../152-libopenblas0_0.3.20+ds-1_amd64.deb ... +#6 40.77 Unpacking libopenblas0:amd64 (0.3.20+ds-1) ... +#6 40.83 Selecting previously unselected package libopenblas-pthread-dev:amd64. +#6 40.83 Preparing to unpack .../153-libopenblas-pthread-dev_0.3.20+ds-1_amd64.deb ... +#6 40.84 Unpacking libopenblas-pthread-dev:amd64 (0.3.20+ds-1) ... +#6 41.04 Selecting previously unselected package libopenblas-dev:amd64. +#6 41.04 Preparing to unpack .../154-libopenblas-dev_0.3.20+ds-1_amd64.deb ... +#6 41.05 Unpacking libopenblas-dev:amd64 (0.3.20+ds-1) ... +#6 41.10 Selecting previously unselected package libpython3.10-dev:amd64. +#6 41.11 Preparing to unpack .../155-libpython3.10-dev_3.10.12-1~22.04.9_amd64.deb ... +#6 41.11 Unpacking libpython3.10-dev:amd64 (3.10.12-1~22.04.9) ... +#6 41.24 Selecting previously unselected package ninja-build. +#6 41.24 Preparing to unpack .../156-ninja-build_1.10.1-1_amd64.deb ... +#6 41.25 Unpacking ninja-build (1.10.1-1) ... +#6 41.32 Selecting previously unselected package pkg-config. +#6 41.32 Preparing to unpack .../157-pkg-config_0.29.2-1ubuntu3_amd64.deb ... +#6 41.33 Unpacking pkg-config (0.29.2-1ubuntu3) ... +#6 41.40 Preparing to unpack .../158-python3-pip_22.0.2+dfsg-1ubuntu0.5_all.deb ... +#6 41.71 Unpacking python3-pip (22.0.2+dfsg-1ubuntu0.5) over (22.0.2+dfsg-1ubuntu0.1) ... +#6 44.13 Selecting previously unselected package python3-pip-whl. +#6 44.13 Preparing to unpack .../159-python3-pip-whl_22.0.2+dfsg-1ubuntu0.5_all.deb ... +#6 44.14 Unpacking python3-pip-whl (22.0.2+dfsg-1ubuntu0.5) ... +#6 44.20 Selecting previously unselected package python3-setuptools-whl. +#6 44.20 Preparing to unpack .../160-python3-setuptools-whl_59.6.0-1.2ubuntu0.22.04.2_all.deb ... +#6 44.21 Unpacking python3-setuptools-whl (59.6.0-1.2ubuntu0.22.04.2) ... +#6 44.26 Selecting previously unselected package python3.10-dev. +#6 44.26 Preparing to unpack .../161-python3.10-dev_3.10.12-1~22.04.9_amd64.deb ... +#6 44.27 Unpacking python3.10-dev (3.10.12-1~22.04.9) ... +#6 44.34 Selecting previously unselected package python3.10-venv. +#6 44.34 Preparing to unpack .../162-python3.10-venv_3.10.12-1~22.04.9_amd64.deb ... +#6 44.35 Unpacking python3.10-venv (3.10.12-1~22.04.9) ... +#6 44.40 Selecting previously unselected package libomp-dev:amd64. +#6 44.40 Preparing to unpack .../163-libomp-dev_1%3a14.0-55~exp2_amd64.deb ... +#6 44.41 Unpacking libomp-dev:amd64 (1:14.0-55~exp2) ... +#6 44.48 Setting up libgme0:amd64 (0.6.3-2) ... +#6 44.51 Setting up libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.3) ... +#6 44.53 Setting up libexpat1:amd64 (2.4.7-1ubuntu0.6) ... +#6 44.56 Setting up libgraphite2-3:amd64 (1.3.14-1build2) ... +#6 44.58 Setting up libsrt1.4-gnutls:amd64 (1.4.4-4) ... +#6 44.61 Setting up libomp5-14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 44.63 Setting up libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ... +#6 44.66 Setting up libudfread0:amd64 (1.1.2-1) ... +#6 44.69 Setting up libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ... +#6 44.71 Setting up libaom3:amd64 (3.3.0-1ubuntu0.1) ... +#6 44.74 Setting up librabbitmq4:amd64 (0.10.0-1ubuntu2) ... +#6 44.76 Setting up python3-setuptools-whl (59.6.0-1.2ubuntu0.22.04.2) ... +#6 44.79 Setting up libraw1394-11:amd64 (2.1.2-2build2) ... +#6 44.81 Setting up libapparmor1:amd64 (3.0.4-2ubuntu2.4) ... +#6 44.84 Setting up libcodec2-1.0:amd64 (1.0.1-3) ... +#6 44.86 Setting up libsodium23:amd64 (1.0.18-1build2) ... +#6 44.89 Setting up libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ... +#6 44.91 Setting up libogg0:amd64 (1.3.5-0ubuntu3) ... +#6 44.94 Setting up libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ... +#6 44.97 Setting up libshine3:amd64 (3.1.1-2) ... +#6 44.99 Setting up wget (1.21.2-2ubuntu1.1) ... +#6 45.03 Setting up libxi6:amd64 (2:1.8-1build1) ... +#6 45.05 Setting up libtwolame0:amd64 (0.4.0-2build2) ... +#6 45.08 Setting up libxrender1:amd64 (1:0.9.10-1build4) ... +#6 45.10 Setting up libdatrie1:amd64 (0.2.13-2) ... +#6 45.13 Setting up libgsm1:amd64 (1.0.19-1) ... +#6 45.15 Setting up python3-pip-whl (22.0.2+dfsg-1ubuntu0.5) ... +#6 45.18 Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ... +#6 45.20 Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#6 45.23 Setting up libxcursor1:amd64 (1:1.2.0-2build4) ... +#6 45.26 Setting up libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.3) ... +#6 45.28 Setting up libnorm1:amd64 (1.5.9+dfsg-2) ... +#6 45.31 Setting up libmysofa1:amd64 (1.2.1~dfsg0-1) ... +#6 45.33 Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ... +#6 45.36 Setting up x11-common (1:7.7+23ubuntu2) ... +#6 45.55 invoke-rc.d: could not determine current runlevel +#6 45.56 invoke-rc.d: policy-rc.d denied execution of start. +#6 45.57 Setting up libdeflate0:amd64 (1.10-2) ... +#6 45.59 Setting up xkb-data (2.33-1) ... +#6 45.62 Setting up libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.20) ... +#6 45.64 Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 45.67 Setting up libcdio19:amd64 (2.1.0-3ubuntu0.2) ... +#6 45.69 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +#6 45.72 Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ... +#6 45.74 Setting up ninja-build (1.10.1-1) ... +#6 45.77 Setting up libsnappy1v5:amd64 (1.1.8-1build3) ... +#6 45.80 Setting up libflac8:amd64 (1.3.3-2ubuntu0.2) ... +#6 45.82 Setting up liberror-perl (0.17029-1) ... +#6 45.85 Setting up libasound2-data (1.2.6.1-1ubuntu1) ... +#6 45.87 Setting up libblas3:amd64 (3.10.0-2ubuntu1) ... +#6 45.90 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#6 45.91 Setting up libexpat1-dev:amd64 (2.4.7-1ubuntu0.6) ... +#6 45.94 Setting up libslang2:amd64 (2.3.2-5build4) ... +#6 45.96 Setting up libva2:amd64 (2.14.0-1) ... +#6 46.00 Setting up libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ... +#6 46.02 Setting up libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ... +#6 46.05 Setting up libfribidi0:amd64 (1.0.8-2ubuntu3.1) ... +#6 46.07 Setting up libopus0:amd64 (1.3.1-0.1build2) ... +#6 46.10 Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 46.12 Setting up shared-mime-info (2.1-2) ... +#6 49.80 Setting up libxinerama1:amd64 (2:1.1.4-3) ... +#6 49.83 Setting up libxv1:amd64 (2:1.0.11-1build2) ... +#6 49.85 Setting up libpng16-16:amd64 (1.6.37-3build5) ... +#6 49.88 Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 49.90 Setting up libvorbis0a:amd64 (1.3.7-1build2) ... +#6 49.93 Setting up libxrandr2:amd64 (2:1.5.2-1build1) ... +#6 49.95 Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.9) ... +#6 49.98 Setting up pkg-config (0.29.2-1ubuntu3) ... +#6 50.03 Setting up fonts-dejavu-core (2.37-2build1) ... +#6 50.15 Setting up ucf (3.0043) ... +#6 50.24 Setting up python3-pip (22.0.2+dfsg-1ubuntu0.5) ... +#6 51.02 Setting up libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ... +#6 51.04 Setting up libgfortran5:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 51.07 Setting up libx265-199:amd64 (3.5-2) ... +#6 51.09 Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 51.12 Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 51.14 Setting up libllvm14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 51.19 Setting up libvidstab1.1:amd64 (1.1.0-2) ... +#6 51.21 Setting up libva-drm2:amd64 (2.14.0-1) ... +#6 51.23 Setting up ocl-icd-libopencl1:amd64 (2.2.14-3) ... +#6 51.26 Setting up libasyncns0:amd64 (0.8-6build2) ... +#6 51.28 Setting up libvdpau1:amd64 (1.4-3build2) ... +#6 51.31 Setting up libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ... +#6 51.34 Setting up libxcb-randr0:amd64 (1.14-3ubuntu3) ... +#6 51.36 Setting up libasound2:amd64 (1.2.6.1-1ubuntu1) ... +#6 51.38 Setting up libzimg2:amd64 (3.0.3+ds1-1) ... +#6 51.41 Setting up libcurl4:amd64 (7.81.0-1ubuntu1.20) ... +#6 51.43 Setting up libopenjp2-7:amd64 (2.4.0-6ubuntu0.3) ... +#6 51.46 Setting up git-man (1:2.34.1-1ubuntu1.12) ... +#6 51.48 Setting up libopenal-data (1:1.19.1-2build3) ... +#6 51.51 Setting up libthai-data (0.1.29-1build1) ... +#6 51.54 Setting up libvpx7:amd64 (1.11.0-2ubuntu2.3) ... +#6 51.56 Setting up curl (7.81.0-1ubuntu1.20) ... +#6 51.58 Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ... +#6 51.61 Setting up libxss1:amd64 (1:1.2.3-1build2) ... +#6 51.63 Setting up libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ... +#6 51.66 Setting up libdav1d5:amd64 (0.9.2-1) ... +#6 51.68 Setting up libmfx1:amd64 (22.3.0-1) ... +#6 51.70 Setting up libsamplerate0:amd64 (0.2.2-1build1) ... +#6 51.73 Setting up libva-x11-2:amd64 (2.14.0-1) ... +#6 51.75 Setting up libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 51.78 Setting up libomp-14-dev (1:14.0.0-1ubuntu1.1) ... +#6 51.80 Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 51.82 Setting up libzvbi-common (0.2.35-19) ... +#6 51.85 Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 51.87 Setting up libmp3lame0:amd64 (3.100-3build2) ... +#6 51.90 Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 51.92 Setting up libvorbisenc2:amd64 (1.3.7-1build2) ... +#6 51.95 Setting up libomp-dev:amd64 (1:14.0-55~exp2) ... +#6 51.97 Setting up libiec61883-0:amd64 (1.2.0-4build3) ... +#6 51.99 Setting up libserd-0-0:amd64 (0.30.10-2) ... +#6 52.02 Setting up libxkbcommon0:amd64 (1.4.0-1) ... +#6 52.04 Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ... +#6 52.07 Setting up libjpeg8:amd64 (8c-2ubuntu10) ... +#6 52.09 Setting up libavc1394-0:amd64 (0.5.4-5build2) ... +#6 52.12 Setting up libzvbi0:amd64 (0.2.35-19) ... +#6 52.14 Setting up liblapack3:amd64 (3.10.0-2ubuntu1) ... +#6 52.16 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#6 52.17 Setting up libopenblas0-pthread:amd64 (0.3.20+ds-1) ... +#6 52.19 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#6 52.19 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#6 52.20 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode +#6 52.21 Setting up libzmq5:amd64 (4.3.4-2) ... +#6 52.23 Setting up libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ... +#6 52.26 Setting up libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ... +#6 52.28 Setting up libsoxr0:amd64 (0.1.3-4build2) ... +#6 52.31 Setting up libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ... +#6 52.33 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ... +#6 52.68 Setting up libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ... +#6 52.70 Setting up python3.10-minimal (3.10.12-1~22.04.9) ... +#6 53.13 Setting up libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 53.15 Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.9) ... +#6 53.18 Setting up libthai0:amd64 (0.1.29-1build1) ... +#6 53.20 Setting up libvorbisfile3:amd64 (1.3.7-1build2) ... +#6 53.22 Setting up libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ... +#6 53.25 Setting up libdc1394-25:amd64 (2.2.6-4) ... +#6 53.27 Setting up libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 53.30 Setting up git (1:2.34.1-1ubuntu1.12) ... +#6 53.33 Setting up librubberband2:amd64 (2.0.0-2) ... +#6 53.36 Setting up libsndio7.0:amd64 (1.8.1-1.1) ... +#6 53.38 Setting up libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ... +#6 53.40 Setting up libflite1:amd64 (2.2-3) ... +#6 53.43 Setting up libopenblas0:amd64 (0.3.20+ds-1) ... +#6 53.45 Setting up libsord-0-0:amd64 (0.16.8-2) ... +#6 53.48 Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ... +#6 53.50 Setting up libsratom-0-0:amd64 (0.6.8-1) ... +#6 53.52 Setting up libdecor-0-0:amd64 (0.1.0-3build1) ... +#6 53.55 Setting up libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ... +#6 53.57 Setting up libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 53.60 Setting up libtiff5:amd64 (4.3.0-6ubuntu0.10) ... +#6 53.64 Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ... +#6 53.67 Setting up libsndfile1:amd64 (1.0.31-2ubuntu0.2) ... +#6 53.69 Setting up libbluray2:amd64 (1:1.3.1-1) ... +#6 53.71 Setting up liblilv-0-0:amd64 (0.24.12-2) ... +#6 53.74 Setting up libopenmpt0:amd64 (0.6.1-1) ... +#6 53.76 Setting up libopenblas-pthread-dev:amd64 (0.3.20+ds-1) ... +#6 53.78 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode +#6 53.79 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode +#6 53.79 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode +#6 53.80 Setting up libpython3.10:amd64 (3.10.12-1~22.04.9) ... +#6 53.83 Setting up fontconfig (2.13.1-4.2ubuntu5) ... +#6 53.85 Regenerating fonts cache... done. +#6 55.87 Setting up python3.10 (3.10.12-1~22.04.9) ... +#6 56.35 Setting up libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ... +#6 56.39 Setting up libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 56.41 Setting up libopenal1:amd64 (1:1.19.1-2build3) ... +#6 56.43 Setting up libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 56.46 Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ... +#6 56.48 Setting up libopenblas-dev:amd64 (0.3.20+ds-1) ... +#6 56.51 Setting up libass9:amd64 (1:0.15.2-1) ... +#6 56.53 Setting up libpython3.10-dev:amd64 (3.10.12-1~22.04.9) ... +#6 56.55 Setting up python3.10-dev (3.10.12-1~22.04.9) ... +#6 56.58 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ... +#6 56.60 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ... +#6 56.65 Setting up libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ... +#6 56.67 Setting up libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 56.69 Setting up libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ... +#6 56.72 Setting up libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 56.74 Setting up python3.10-venv (3.10.12-1~22.04.9) ... +#6 56.80 Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ... +#6 56.82 Setting up librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ... +#6 56.85 Setting up libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ... +#6 56.87 Setting up libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 56.89 Setting up libchromaprint1:amd64 (1.5.1-2) ... +#6 56.92 Setting up libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 56.94 Setting up libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 56.97 Setting up libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 56.99 Setting up ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ... +#6 57.01 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#6 57.52 Requirement already satisfied: pip in /usr/lib/python3/dist-packages (22.0.2) +#6 62.95 Collecting pip +#6 63.30 Downloading pip-25.1.1-py3-none-any.whl (1.8 MB) +#6 63.68 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 4.8 MB/s eta 0:00:00 +#6 63.69 Requirement already satisfied: wheel in /usr/lib/python3/dist-packages (0.37.1) +#6 63.79 Collecting wheel +#6 63.86 Downloading wheel-0.45.1-py3-none-any.whl (72 kB) +#6 63.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 72.5/72.5 KB 5.8 MB/s eta 0:00:00 +#6 63.87 Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (59.6.0) +#6 64.26 Collecting setuptools +#6 64.37 Downloading setuptools-80.7.1-py3-none-any.whl (1.2 MB) +#6 64.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 9.4 MB/s eta 0:00:00 +#6 64.59 Installing collected packages: wheel, setuptools, pip +#6 64.59 Attempting uninstall: wheel +#6 64.59 Found existing installation: wheel 0.37.1 +#6 64.59 Not uninstalling wheel at /usr/lib/python3/dist-packages, outside environment /usr +#6 64.59 Can't uninstall 'wheel'. No files were found to uninstall. +#6 64.64 Attempting uninstall: setuptools +#6 64.64 Found existing installation: setuptools 59.6.0 +#6 64.64 Not uninstalling setuptools at /usr/lib/python3/dist-packages, outside environment /usr +#6 64.64 Can't uninstall 'setuptools'. No files were found to uninstall. +#6 65.15 Attempting uninstall: pip +#6 65.15 Found existing installation: pip 22.0.2 +#6 65.15 Not uninstalling pip at /usr/lib/python3/dist-packages, outside environment /usr +#6 65.15 Can't uninstall 'pip'. No files were found to uninstall. +#6 65.75 Successfully installed pip-25.1.1 setuptools-80.7.1 wheel-0.45.1 +#6 65.75 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#6 71.70 Collecting cmake==3.20.2 +#6 72.01 Downloading cmake-3.20.2-py2.py3-none-manylinux1_x86_64.whl.metadata (5.8 kB) +#6 72.09 Downloading cmake-3.20.2-py2.py3-none-manylinux1_x86_64.whl (19.4 MB) +#6 74.15 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.4/19.4 MB 10.3 MB/s eta 0:00:00 +#6 74.20 Installing collected packages: cmake +#6 74.89 Successfully installed cmake-3.20.2 +#6 DONE 75.9s + +#7 [ 4/18] RUN python3 --version && pip3 --version && cmake --version +#7 0.262 Python 3.10.12 +#7 0.390 pip 25.1.1 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10) +#7 0.430 cmake version 3.20.2 +#7 0.430 +#7 0.430 CMake suite maintained and supported by Kitware (kitware.com/cmake). +#7 DONE 0.5s + +#8 [ 5/18] RUN echo "Checkout PyTorch Version: v2.0.1" && git clone --depth 1 --recursive --branch v2.0.1 https://github.com/pytorch/pytorch.git /pytorch && true +#8 0.323 Checkout PyTorch Version: v2.0.1 +#8 0.324 Cloning into '/pytorch'... +#8 17.55 Note: switching to 'e9ebda29d87ce0916ab08c06ab26fd3766a870e5'. +#8 17.55 +#8 17.55 You are in 'detached HEAD' state. You can look around, make experimental +#8 17.55 changes and commit them, and you can discard any commits you make in this +#8 17.55 state without impacting any branches by switching back to a branch. +#8 17.55 +#8 17.55 If you want to create a new branch to retain commits you create, you may +#8 17.55 do so (now or later) by using -c with the switch command. Example: +#8 17.55 +#8 17.55 git switch -c +#8 17.55 +#8 17.55 Or undo this operation with: +#8 17.55 +#8 17.55 git switch - +#8 17.55 +#8 17.55 Turn off this advice by setting config variable advice.detachedHead to false +#8 17.55 +#8 18.56 Updating files: 60% (7168/11881) Updating files: 61% (7248/11881) Updating files: 62% (7367/11881) Updating files: 63% (7486/11881) Updating files: 64% (7604/11881) Updating files: 65% (7723/11881) Updating files: 66% (7842/11881) Updating files: 67% (7961/11881) Updating files: 68% (8080/11881) Updating files: 69% (8198/11881) Updating files: 70% (8317/11881) Updating files: 71% (8436/11881) Updating files: 72% (8555/11881) Updating files: 73% (8674/11881) Updating files: 74% (8792/11881) Updating files: 75% (8911/11881) Updating files: 76% (9030/11881) Updating files: 77% (9149/11881) Updating files: 78% (9268/11881) Updating files: 79% (9386/11881) Updating files: 80% (9505/11881) Updating files: 81% (9624/11881) Updating files: 82% (9743/11881) Updating files: 83% (9862/11881) Updating files: 84% (9981/11881) Updating files: 85% (10099/11881) Updating files: 86% (10218/11881) Updating files: 87% (10337/11881) Updating files: 88% (10456/11881) Updating files: 89% (10575/11881) Updating files: 90% (10693/11881) Updating files: 91% (10812/11881) Updating files: 92% (10931/11881) Updating files: 93% (11050/11881) Updating files: 94% (11169/11881) Updating files: 95% (11287/11881) Updating files: 96% (11406/11881) Updating files: 97% (11525/11881) Updating files: 98% (11644/11881) Updating files: 99% (11763/11881) Updating files: 100% (11881/11881) Updating files: 100% (11881/11881), done. +#8 19.06 Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' +#8 19.06 Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' +#8 19.06 Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' +#8 19.06 Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' +#8 19.06 Submodule 'third_party/QNNPACK' (https://github.com/pytorch/QNNPACK) registered for path 'third_party/QNNPACK' +#8 19.06 Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' +#8 19.06 Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' +#8 19.06 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' +#8 19.06 Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' +#8 19.07 Submodule 'third_party/cub' (https://github.com/NVlabs/cub.git) registered for path 'third_party/cub' +#8 19.07 Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' +#8 19.07 Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' +#8 19.07 Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' +#8 19.07 Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' +#8 19.07 Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' +#8 19.07 Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' +#8 19.08 Submodule 'third_party/foxi' (https://github.com/houseroad/foxi.git) registered for path 'third_party/foxi' +#8 19.08 Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' +#8 19.08 Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' +#8 19.08 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' +#8 19.08 Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' +#8 19.08 Submodule 'third_party/ios-cmake' (https://github.com/Yangqing/ios-cmake.git) registered for path 'third_party/ios-cmake' +#8 19.09 Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' +#8 19.09 Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' +#8 19.09 Submodule 'third_party/nccl/nccl' (https://github.com/NVIDIA/nccl) registered for path 'third_party/nccl/nccl' +#8 19.09 Submodule 'third_party/neon2sse' (https://github.com/intel/ARM_NEON_2_x86_SSE.git) registered for path 'third_party/neon2sse' +#8 19.09 Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' +#8 19.09 Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' +#8 19.09 Submodule 'third_party/onnx-tensorrt' (https://github.com/onnx/onnx-tensorrt) registered for path 'third_party/onnx-tensorrt' +#8 19.09 Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' +#8 19.09 Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' +#8 19.09 Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' +#8 19.09 Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' +#8 19.09 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' +#8 19.09 Submodule 'third_party/python-enum' (https://github.com/PeachPy/enum34.git) registered for path 'third_party/python-enum' +#8 19.09 Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' +#8 19.09 Submodule 'third_party/python-six' (https://github.com/benjaminp/six.git) registered for path 'third_party/python-six' +#8 19.09 Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' +#8 19.09 Submodule 'third_party/tbb' (https://github.com/01org/tbb) registered for path 'third_party/tbb' +#8 19.09 Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' +#8 19.09 Submodule 'third_party/zstd' (https://github.com/facebook/zstd.git) registered for path 'third_party/zstd' +#8 19.10 Cloning into '/pytorch/android/libs/fbjni'... +#8 25.28 Cloning into '/pytorch/third_party/FP16'... +#8 31.23 Cloning into '/pytorch/third_party/FXdiv'... +#8 37.17 Cloning into '/pytorch/third_party/NNPACK'... +#8 43.36 Cloning into '/pytorch/third_party/QNNPACK'... +#8 49.49 Cloning into '/pytorch/third_party/VulkanMemoryAllocator'... +#8 59.08 Cloning into '/pytorch/third_party/XNNPACK'... +#8 89.63 Cloning into '/pytorch/third_party/benchmark'... +#8 95.97 Cloning into '/pytorch/third_party/cpuinfo'... +#8 102.7 Cloning into '/pytorch/third_party/cub'... +#8 110.7 Cloning into '/pytorch/third_party/cudnn_frontend'... +#8 120.4 Cloning into '/pytorch/third_party/cutlass'... +#8 134.7 Cloning into '/pytorch/third_party/eigen'... +#8 154.4 Cloning into '/pytorch/third_party/fbgemm'... +#8 162.3 Cloning into '/pytorch/third_party/flatbuffers'... +#8 170.8 Cloning into '/pytorch/third_party/fmt'... +#8 180.7 Cloning into '/pytorch/third_party/foxi'... +#8 186.7 Cloning into '/pytorch/third_party/gemmlowp/gemmlowp'... +#8 193.1 Cloning into '/pytorch/third_party/gloo'... +#8 199.4 Cloning into '/pytorch/third_party/googletest'... +#8 207.3 Cloning into '/pytorch/third_party/ideep'... +#8 213.5 Cloning into '/pytorch/third_party/ios-cmake'... +#8 219.4 Cloning into '/pytorch/third_party/ittapi'... +#8 225.6 Cloning into '/pytorch/third_party/kineto'... +#8 233.8 Cloning into '/pytorch/third_party/nccl/nccl'... +#8 240.5 Cloning into '/pytorch/third_party/neon2sse'... +#8 246.6 Cloning into '/pytorch/third_party/nlohmann'... +#8 271.6 Cloning into '/pytorch/third_party/onnx'... +#8 282.4 Cloning into '/pytorch/third_party/onnx-tensorrt'... +#8 288.9 Cloning into '/pytorch/third_party/pocketfft'... +#8 294.9 Cloning into '/pytorch/third_party/protobuf'... +#8 320.2 Cloning into '/pytorch/third_party/psimd'... +#8 326.2 Cloning into '/pytorch/third_party/pthreadpool'... +#8 332.2 Cloning into '/pytorch/third_party/pybind11'... +#8 339.5 Cloning into '/pytorch/third_party/python-enum'... +#8 345.4 Cloning into '/pytorch/third_party/python-peachpy'... +#8 351.6 Cloning into '/pytorch/third_party/python-six'... +#8 357.8 Cloning into '/pytorch/third_party/sleef'... +#8 364.9 Cloning into '/pytorch/third_party/tbb'... +#8 371.9 Cloning into '/pytorch/third_party/tensorpipe'... +#8 378.3 Cloning into '/pytorch/third_party/zstd'... +#8 388.5 Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' +#8 388.6 Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' +#8 388.6 Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' +#8 388.6 Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' +#8 388.6 Submodule path 'third_party/QNNPACK': checked out '7d2a4e9931a82adc3814275b6219a03e24e36b4c' +#8 388.7 Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' +#8 389.6 Submodule path 'third_party/XNNPACK': checked out '51a987591a6fc9f0fc0707077f53d763ac132cbf' +#8 389.7 Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' +#8 389.8 Submodule path 'third_party/cpuinfo': checked out '8ec7bd91ad0470e61cf38f618cc1f270dede599c' +#8 389.8 Submodule path 'third_party/cub': checked out 'd106ddb991a56c3df1b6d51b2409e36ba8181ce4' +#8 390.2 Submodule path 'third_party/cudnn_frontend': checked out '81a041a68245cd8f871c43bbbbd5b6b627979a30' +#8 390.7 Submodule path 'third_party/cutlass': checked out 'b72cbf957df8cf84a6d0ff91c190ad51a9c1d24a' +#8 403.6 From https://gitlab.com/libeigen/eigen +#8 403.6 * branch 3147391d946bb4b6c68edd901f2add6ac1f31f8c -> FETCH_HEAD +#8 403.9 Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' +#8 403.9 Submodule path 'third_party/fbgemm': checked out '03b2046676707da64504e898490ab46104d4682a' +#8 404.0 Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' +#8 404.0 Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' +#8 404.0 Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' +#8 404.0 Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' +#8 404.0 Submodule 'third_party/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/third_party/hipify_torch' +#8 404.0 Cloning into '/pytorch/third_party/fbgemm/third_party/asmjit'... +#8 411.2 Cloning into '/pytorch/third_party/fbgemm/third_party/cpuinfo'... +#8 418.3 Cloning into '/pytorch/third_party/fbgemm/third_party/cutlass'... +#8 430.6 Cloning into '/pytorch/third_party/fbgemm/third_party/googletest'... +#8 438.4 Cloning into '/pytorch/third_party/fbgemm/third_party/hipify_torch'... +#8 444.6 Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' +#8 444.7 Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' +#8 445.3 Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' +#8 445.3 Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' +#8 445.3 Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '1840658c184f3eeba787dae0f06c45756c1daaf5' +#8 445.5 Submodule path 'third_party/flatbuffers': checked out 'd0cede9c90c5257537c293517a21376408b549fa' +#8 445.5 Submodule path 'third_party/fmt': checked out 'a33701196adfad74917046096bf5a2aa0ab0bb50' +#8 445.5 Submodule path 'third_party/foxi': checked out 'c278588e34e535f0bb8f00df3880d26928038cad' +#8 445.6 Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' +#8 445.6 Submodule path 'third_party/gloo': checked out '10909297fedab0a680799211a299203e53515032' +#8 445.7 Submodule path 'third_party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' +#8 457.6 From https://github.com/intel/ideep +#8 457.6 * branch 7bc3e12f7c0cad7fb24f8d4ab63dcd467ffa60c7 -> FETCH_HEAD +#8 457.6 Submodule path 'third_party/ideep': checked out '7bc3e12f7c0cad7fb24f8d4ab63dcd467ffa60c7' +#8 457.6 Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' +#8 457.6 Cloning into '/pytorch/third_party/ideep/mkl-dnn'... +#8 492.0 From https://github.com/intel/mkl-dnn +#8 492.0 * branch 6dbeffbae1f23cbbeae17adb7b5b13f1f37c080e -> FETCH_HEAD +#8 492.5 Submodule path 'third_party/ideep/mkl-dnn': checked out '6dbeffbae1f23cbbeae17adb7b5b13f1f37c080e' +#8 492.6 Submodule path 'third_party/ios-cmake': checked out '8abaed637d56f1337d6e1d2c4026e25c1eade724' +#8 492.6 Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' +#8 492.7 Submodule path 'third_party/kineto': checked out '2da532c91dee9dc36cccc6088206daa1b69e3966' +#8 492.7 Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' +#8 492.7 Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' +#8 492.7 Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' +#8 492.7 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog'... +#8 499.4 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/fmt'... +#8 507.3 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/googletest'... +#8 518.0 Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' +#8 518.0 Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' +#8 518.0 Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' +#8 518.0 Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' +#8 518.0 Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' +#8 518.0 Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' +#8 518.0 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' +#8 518.0 Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' +#8 518.0 Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' +#8 518.0 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... +#8 526.1 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... +#8 532.4 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... +#8 540.5 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... +#8 546.7 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... +#8 553.1 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... +#8 560.8 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... +#8 585.5 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... +#8 591.8 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' +#8 591.8 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' +#8 591.8 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' +#8 591.9 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' +#8 591.9 Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' +#8 591.9 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... +#8 598.1 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' +#8 598.1 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' +#8 609.7 From https://github.com/google/googletest +#8 609.7 * branch 58d77fa8070e8cec2dc1ed015d66b454c8d78850 -> FETCH_HEAD +#8 609.7 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' +#8 609.9 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' +#8 609.9 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' +#8 610.0 Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '2591ab91c3898c9f6544fff04660276537d32ffd' +#8 610.0 Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' +#8 610.1 Submodule path 'third_party/nccl/nccl': checked out 'f89fd4777d2ef9229c039ff750ae21da01626f52' +#8 610.1 Submodule path 'third_party/neon2sse': checked out '97a126f08ce318023be604d03f88bf0820a9464a' +#8 610.2 Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' +#8 622.3 From https://github.com/onnx/onnx +#8 622.3 * branch e192ba01e438d22ca2dedd7956e28e3551626c91 -> FETCH_HEAD +#8 622.8 Submodule path 'third_party/onnx': checked out 'e192ba01e438d22ca2dedd7956e28e3551626c91' +#8 622.8 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx/third_party/benchmark' +#8 622.8 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' +#8 622.8 Cloning into '/pytorch/third_party/onnx/third_party/benchmark'... +#8 629.2 Cloning into '/pytorch/third_party/onnx/third_party/pybind11'... +#8 636.6 Submodule path 'third_party/onnx/third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' +#8 648.2 From https://github.com/pybind/pybind11 +#8 648.2 * branch 914c06fb252b6cc3727d0eedab6736e88a3fcb01 -> FETCH_HEAD +#8 648.3 Submodule path 'third_party/onnx/third_party/pybind11': checked out '914c06fb252b6cc3727d0eedab6736e88a3fcb01' +#8 648.3 Submodule path 'third_party/onnx-tensorrt': checked out 'c153211418a7c57ce071d9ce2a41f8d1c85a878f' +#8 648.3 Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx' +#8 648.3 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx'... +#8 658.7 Submodule path 'third_party/onnx-tensorrt/third_party/onnx': checked out '765f5ee823a67a866f4bd28a9860e81f3c811ce8' +#8 658.7 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark' +#8 658.7 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11' +#8 658.7 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark'... +#8 665.1 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11'... +#8 672.4 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark': checked out 'e776aa0275e293707b6a0901e0e8d8a8a3679508' +#8 672.4 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11': checked out 'a1041190c8b8ff0cd9e2f0752248ad5e3789ea0c' +#8 672.4 Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang' +#8 672.4 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang'... +#8 690.2 From https://github.com/wjakob/clang-cindex-python3 +#8 690.2 * branch 6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5 -> FETCH_HEAD +#8 690.2 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' +#8 690.2 Submodule path 'third_party/pocketfft': checked out 'ea778e37710c07723435b1be58235996d1d43a5a' +#8 690.5 Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' +#8 690.5 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' +#8 690.5 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' +#8 690.5 Cloning into '/pytorch/third_party/protobuf/third_party/benchmark'... +#8 696.9 Cloning into '/pytorch/third_party/protobuf/third_party/googletest'... +#8 704.8 Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' +#8 704.9 Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' +#8 704.9 Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' +#8 704.9 Submodule path 'third_party/pthreadpool': checked out 'a134dd5d4cee80cce15db81a72e7f929d71dd413' +#8 716.7 From https://github.com/pybind/pybind11 +#8 716.7 * branch 80dc998efced8ceb2be59756668a7e90e8bef917 -> FETCH_HEAD +#8 716.7 Submodule path 'third_party/pybind11': checked out '80dc998efced8ceb2be59756668a7e90e8bef917' +#8 716.7 Submodule path 'third_party/python-enum': checked out '4cfedc426c4e2fc52e3f5c2b4297e15ed8d6b8c7' +#8 728.5 From https://github.com/malfet/PeachPy +#8 728.5 * branch f45429b087dd7d5bc78bb40dc7cf06425c252d67 -> FETCH_HEAD +#8 728.5 Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' +#8 728.6 Submodule path 'third_party/python-six': checked out '15e31431af97e5e64b80af0a3f598d382bcdd49a' +#8 728.6 Submodule path 'third_party/sleef': checked out 'e0a003ee838b75d11763aa9c3ef17bf71a725bff' +#8 741.3 From https://github.com/01org/tbb +#8 741.3 * branch a51a90bc609bb73db8ea13841b5cf7aa4344d4a9 -> FETCH_HEAD +#8 741.4 Submodule path 'third_party/tbb': checked out 'a51a90bc609bb73db8ea13841b5cf7aa4344d4a9' +#8 741.5 Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' +#8 741.5 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' +#8 741.5 Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' +#8 741.5 Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' +#8 741.5 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' +#8 741.5 Cloning into '/pytorch/third_party/tensorpipe/third_party/googletest'... +#8 749.7 Cloning into '/pytorch/third_party/tensorpipe/third_party/libnop'... +#8 755.7 Cloning into '/pytorch/third_party/tensorpipe/third_party/libuv'... +#8 763.6 Cloning into '/pytorch/third_party/tensorpipe/third_party/pybind11'... +#8 771.0 Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' +#8 771.1 Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' +#8 771.2 Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' +#8 782.9 From https://github.com/pybind/pybind11 +#8 782.9 * branch a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef -> FETCH_HEAD +#8 783.0 Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' +#8 783.0 Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' +#8 783.0 Cloning into '/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... +#8 800.5 From https://github.com/wjakob/clang-cindex-python3 +#8 800.5 * branch 6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5 -> FETCH_HEAD +#8 800.5 Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' +#8 800.7 Submodule path 'third_party/zstd': checked out 'aec56a52fbab207fc639a1937d1e708a282edca8' +#8 DONE 800.9s + +#9 [ 6/18] WORKDIR /pytorch +#9 DONE 0.1s + +#10 [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r requirements.txt && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true +#10 0.277 BUILDING PYTORCH v2.0.1 for gfx803 *** +#10 0.278 Python 3.10.12 +#10 0.391 Building wheel torch-2.0.0a0+gite9ebda2 +#10 0.457 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#10 0.457 !! +#10 0.457 +#10 0.457 ******************************************************************************** +#10 0.457 Please consider removing the following classifiers in favor of a SPDX license expression: +#10 0.457 +#10 0.457 License :: OSI Approved :: BSD License +#10 0.457 +#10 0.457 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#10 0.457 ******************************************************************************** +#10 0.457 +#10 0.457 !! +#10 0.457 self._finalize_license_expression() +#10 0.457 running clean +#10 6.324 Collecting astunparse (from -r requirements.txt (line 2)) +#10 6.639 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +#10 6.726 Collecting expecttest (from -r requirements.txt (line 3)) +#10 6.789 Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) +#10 7.288 Collecting hypothesis (from -r requirements.txt (line 4)) +#10 7.352 Downloading hypothesis-6.131.17-py3-none-any.whl.metadata (5.6 kB) +#10 7.619 Collecting numpy (from -r requirements.txt (line 5)) +#10 7.682 Downloading numpy-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#10 7.919 Collecting psutil (from -r requirements.txt (line 6)) +#10 7.982 Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) +#10 8.101 Collecting pyyaml (from -r requirements.txt (line 7)) +#10 8.163 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#10 8.264 Collecting requests (from -r requirements.txt (line 8)) +#10 8.328 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#10 8.339 Requirement already satisfied: setuptools in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 9)) (80.7.1) +#10 8.496 Collecting types-dataclasses (from -r requirements.txt (line 10)) +#10 8.559 Downloading types_dataclasses-0.6.6-py3-none-any.whl.metadata (1.3 kB) +#10 8.649 Collecting typing-extensions (from -r requirements.txt (line 11)) +#10 8.710 Downloading typing_extensions-4.13.2-py3-none-any.whl.metadata (3.0 kB) +#10 8.801 Collecting sympy (from -r requirements.txt (line 12)) +#10 8.864 Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) +#10 8.962 Collecting filelock (from -r requirements.txt (line 13)) +#10 9.024 Downloading filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) +#10 9.123 Collecting networkx (from -r requirements.txt (line 14)) +#10 9.185 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#10 9.281 Collecting jinja2 (from -r requirements.txt (line 15)) +#10 9.343 Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) +#10 9.354 Requirement already satisfied: wheel<1.0,>=0.23.0 in /usr/local/lib/python3.10/dist-packages (from astunparse->-r requirements.txt (line 2)) (0.45.1) +#10 9.433 Collecting six<2.0,>=1.6.1 (from astunparse->-r requirements.txt (line 2)) +#10 9.494 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#10 9.584 Collecting attrs>=22.2.0 (from hypothesis->-r requirements.txt (line 4)) +#10 9.645 Downloading attrs-25.3.0-py3-none-any.whl.metadata (10 kB) +#10 9.743 Collecting exceptiongroup>=1.0.0 (from hypothesis->-r requirements.txt (line 4)) +#10 9.806 Downloading exceptiongroup-1.3.0-py3-none-any.whl.metadata (6.7 kB) +#10 9.896 Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis->-r requirements.txt (line 4)) +#10 9.958 Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) +#10 10.12 Collecting charset-normalizer<4,>=2 (from requests->-r requirements.txt (line 8)) +#10 10.18 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#10 10.28 Collecting idna<4,>=2.5 (from requests->-r requirements.txt (line 8)) +#10 10.34 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#10 10.44 Collecting urllib3<3,>=1.21.1 (from requests->-r requirements.txt (line 8)) +#10 10.50 Downloading urllib3-2.4.0-py3-none-any.whl.metadata (6.5 kB) +#10 10.60 Collecting certifi>=2017.4.17 (from requests->-r requirements.txt (line 8)) +#10 10.66 Downloading certifi-2025.4.26-py3-none-any.whl.metadata (2.5 kB) +#10 10.76 Collecting mpmath<1.4,>=1.1.0 (from sympy->-r requirements.txt (line 12)) +#10 10.83 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#10 10.96 Collecting MarkupSafe>=2.0 (from jinja2->-r requirements.txt (line 15)) +#10 11.02 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#10 11.10 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +#10 11.18 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#10 11.25 Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) +#10 11.32 Downloading hypothesis-6.131.17-py3-none-any.whl (502 kB) +#10 11.54 Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) +#10 11.61 Downloading numpy-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#10 13.20 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 10.3 MB/s eta 0:00:00 +#10 13.26 Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) +#10 13.36 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB) +#10 13.44 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 751.2/751.2 kB 9.0 MB/s eta 0:00:00 +#10 13.50 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#10 13.58 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149 kB) +#10 13.67 Downloading idna-3.10-py3-none-any.whl (70 kB) +#10 13.74 Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) +#10 13.83 Downloading types_dataclasses-0.6.6-py3-none-any.whl (2.9 kB) +#10 13.90 Downloading typing_extensions-4.13.2-py3-none-any.whl (45 kB) +#10 13.97 Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) +#10 14.55 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 11.0 MB/s eta 0:00:00 +#10 14.61 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#10 14.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 7.8 MB/s eta 0:00:00 +#10 14.73 Downloading filelock-3.18.0-py3-none-any.whl (16 kB) +#10 14.81 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#10 14.98 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 10.3 MB/s eta 0:00:00 +#10 15.04 Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) +#10 15.12 Downloading attrs-25.3.0-py3-none-any.whl (63 kB) +#10 15.20 Downloading certifi-2025.4.26-py3-none-any.whl (159 kB) +#10 15.28 Downloading exceptiongroup-1.3.0-py3-none-any.whl (16 kB) +#10 15.35 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) +#10 15.51 Installing collected packages: types-dataclasses, sortedcontainers, mpmath, urllib3, typing-extensions, sympy, six, pyyaml, psutil, numpy, networkx, MarkupSafe, idna, filelock, expecttest, charset-normalizer, certifi, attrs, requests, jinja2, exceptiongroup, astunparse, hypothesis +#10 22.15 +#10 22.15 Successfully installed MarkupSafe-3.0.2 astunparse-1.6.3 attrs-25.3.0 certifi-2025.4.26 charset-normalizer-3.4.2 exceptiongroup-1.3.0 expecttest-0.3.0 filelock-3.18.0 hypothesis-6.131.17 idna-3.10 jinja2-3.1.6 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.5 psutil-7.0.0 pyyaml-6.0.2 requests-2.32.3 six-1.17.0 sortedcontainers-2.4.0 sympy-1.14.0 types-dataclasses-0.6.6 typing-extensions-4.13.2 urllib3-2.4.0 +#10 22.68 third_party/gloo/cmake/Hip.cmake skipped +#10 22.68 third_party/gloo/cmake/Modules/Findrccl.cmake updated +#10 22.68 third_party/gloo/cmake/Dependencies.cmake updated +#10 23.03 /pytorch/tools/autograd/templates/python_variable_methods.cpp -> /pytorch/tools/autograd/templates/python_variable_methods.cpp [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/FakeQuantizeCore.cu -> /pytorch/aten/src/ATen/native/quantized/hip/FakeQuantizeCore.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/MakePerTensorQuantizedTensor.cu -> /pytorch/aten/src/ATen/native/quantized/hip/MakePerTensorQuantizedTensor.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/IntReprQuant.cu -> /pytorch/aten/src/ATen/native/quantized/hip/IntReprQuant.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/FusedObsFakeQuant.cu -> /pytorch/aten/src/ATen/native/quantized/hip/FusedObsFakeQuant.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/AffineQuantizer.cu -> /pytorch/aten/src/ATen/native/quantized/hip/AffineQuantizer.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/Activation.cu -> /pytorch/aten/src/ATen/native/quantized/hip/Activation.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/EmbeddingBag.cu -> /pytorch/aten/src/ATen/native/quantized/hip/EmbeddingBag.hip [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cuda/Activation.cpp -> /pytorch/aten/src/ATen/native/quantized/hip/Activation.cpp [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cudnn/Pooling.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Pooling.cpp [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cudnn/utils.h -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/utils.h [ok] +#10 23.03 /pytorch/aten/src/ATen/native/quantized/cudnn/LinearUnpackImpl.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/LinearUnpackImpl.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/quantized/cudnn/ConvPrepack.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/ConvPrepack.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/quantized/cudnn/Linear.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Linear.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/quantized/cudnn/LinearPrepack.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/LinearPrepack.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/quantized/cudnn/BinaryOps.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/BinaryOps.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/quantized/cudnn/ConvUnpackImpl.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/ConvUnpackImpl.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/quantized/cudnn/Conv.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Conv.cpp [ok] +#10 23.04 /pytorch/aten/src/ATen/native/cuda/DilatedMaxPool3d.cu -> /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip [ok] +#10 23.04 /pytorch/aten/src/ATen/native/cuda/Im2Col.cu -> /pytorch/aten/src/ATen/native/hip/Im2Col.hip [ok] +#10 23.04 /pytorch/aten/src/ATen/native/cuda/MaxMinElementwiseKernel.cu -> /pytorch/aten/src/ATen/native/hip/MaxMinElementwiseKernel.hip [ok] +#10 23.04 /pytorch/aten/src/ATen/native/cuda/UnaryOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryOpsKernel.hip [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/RangeFactories.cu -> /pytorch/aten/src/ATen/native/hip/RangeFactories.hip [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/jit_utils.h -> /pytorch/aten/src/ATen/native/hip/jit_utils.h [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/reduction_template.cuh -> /pytorch/aten/src/ATen/native/hip/reduction_template.cuh [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/jit_utils.cpp -> /pytorch/aten/src/ATen/native/hip/jit_utils.cpp [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/TensorShapeCUDA.cpp -> /pytorch/aten/src/ATen/native/hip/TensorShapeHIP.cpp [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpScalarList.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleBilinear2d.hip [ok] +#10 23.05 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest1d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest1d.hip [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/GridSampler.cu -> /pytorch/aten/src/ATen/native/hip/GridSampler.hip [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAcosKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAcosKernel.hip [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/ROCmLoops.cuh -> /pytorch/aten/src/ATen/native/hip/ROCmLoops.cuh [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/BinaryDivFloorKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivFloorKernel.hip [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/CumminmaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumminmaxKernel.hip [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/SortingCommon.cuh -> /pytorch/aten/src/ATen/native/hip/SortingCommon.cuh [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/ReplicationPadding.cu -> /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/GridSampler.cuh -> /pytorch/aten/src/ATen/native/hip/GridSampler.cuh [ok] +#10 23.06 /pytorch/aten/src/ATen/native/cuda/Copy.h -> /pytorch/aten/src/ATen/native/hip/Copy.h [ok] +#10 23.07 /pytorch/aten/src/ATen/native/cuda/Math.cuh -> /pytorch/aten/src/ATen/native/hip/Math.cuh [ok] +#10 23.07 /pytorch/aten/src/ATen/native/cuda/CuFFTUtils.h -> /pytorch/aten/src/ATen/native/hip/CuFFTUtils.h [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/KernelUtils.cuh -> /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/UniqueCub.cuh -> /pytorch/aten/src/ATen/native/hip/UniqueCub.cuh [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/Activation.h -> /pytorch/aten/src/ATen/native/hip/Activation.h [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/ReduceLogicKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceLogicKernel.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/DistributionRandomKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionRandomKernel.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/ActivationThresholdKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationThresholdKernel.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/BinaryMiscOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMiscOpsKernels.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/modified_bessel_i0.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_i0.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/scaled_modified_bessel_k0.cu -> /pytorch/aten/src/ATen/native/hip/scaled_modified_bessel_k0.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.h -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.h [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/ActivationSiluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSiluKernel.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/AmpKernels.cu -> /pytorch/aten/src/ATen/native/hip/AmpKernels.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/UniqueCub.cu -> /pytorch/aten/src/ATen/native/hip/UniqueCub.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/GridSampler.h -> /pytorch/aten/src/ATen/native/hip/GridSampler.h [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/PowKernel.cu -> /pytorch/aten/src/ATen/native/hip/PowKernel.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/Normalization.cu -> /pytorch/aten/src/ATen/native/hip/Normalization.hip [ok] +#10 23.08 /pytorch/aten/src/ATen/native/cuda/TensorTopK.cpp -> /pytorch/aten/src/ATen/native/hip/TensorTopK.cpp [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/ActivationLogSigmoidKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationLogSigmoidKernel.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu -> /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/TriangularOps.cu -> /pytorch/aten/src/ATen/native/hip/TriangularOps.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/UpSampleTrilinear3d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleTrilinear3d.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/ValidateCompressedIndicesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ValidateCompressedIndicesKernel.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cpp -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.cpp [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/modified_bessel_k0.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_k0.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/FunctionOfAMatrixUtilsKernel.cu -> /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/fused_adamw_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adamw_impl.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/laguerre_polynomial_l.cu -> /pytorch/aten/src/ATen/native/hip/laguerre_polynomial_l.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/Distributions.cpp -> /pytorch/aten/src/ATen/native/hip/Distributions.cpp [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/TensorFactories.cu -> /pytorch/aten/src/ATen/native/hip/TensorFactories.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/UnaryLogKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryLogKernels.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/LogAddExpKernel.cu -> /pytorch/aten/src/ATen/native/hip/LogAddExpKernel.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/ReduceSumProdKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceSumProdKernel.hip [ok] +#10 23.09 /pytorch/aten/src/ATen/native/cuda/NLLLoss2d.cu -> /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/vol2col.cuh -> /pytorch/aten/src/ATen/native/hip/vol2col.cuh [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/SoftMax.cu -> /pytorch/aten/src/ATen/native/hip/SoftMax.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/CompareEQKernel.cu -> /pytorch/aten/src/ATen/native/hip/CompareEQKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/BinaryGeometricKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryGeometricKernels.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/BinaryRemainderKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryRemainderKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/Resize.cpp -> /pytorch/aten/src/ATen/native/hip/Resize.cpp [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/MultinomialKernel.cu -> /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/ScatterGatherKernel.cu -> /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/Sorting.cu -> /pytorch/aten/src/ATen/native/hip/Sorting.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAtanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAtanhKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAcoshKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAcoshKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/Bucketization.cu -> /pytorch/aten/src/ATen/native/hip/Bucketization.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_t.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_t.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/CumsumKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricCosKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricCosKernel.hip [ok] +#10 23.10 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricTanKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricTanKernel.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/fused_adamw_amsgrad_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adamw_amsgrad_impl.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/SortImpl.cu -> /pytorch/aten/src/ATen/native/hip/SortImpl.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/MemoryAccess.cuh -> /pytorch/aten/src/ATen/native/hip/MemoryAccess.cuh [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/SortStable.cu -> /pytorch/aten/src/ATen/native/hip/SortStable.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/Unique.cu -> /pytorch/aten/src/ATen/native/hip/Unique.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/ReduceArgMaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceArgMaxKernel.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/ActivationMishKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationMishKernel.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/Resize.h -> /pytorch/aten/src/ATen/native/hip/Resize.h [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/Shape.cu -> /pytorch/aten/src/ATen/native/hip/Shape.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_t.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_t.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/ReduceNormKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceNormKernel.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/Sort.cu -> /pytorch/aten/src/ATen/native/hip/Sort.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest3d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest3d.hip [ok] +#10 23.11 /pytorch/aten/src/ATen/native/cuda/MultiTensorApply.cuh -> /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/ActivationHardshrinkKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardshrinkKernel.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/ActivationSoftplusKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSoftplusKernel.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/UpSampleBicubic2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleBicubic2d.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/Sorting.h -> /pytorch/aten/src/ATen/native/hip/Sorting.h [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/TensorCompare.cpp -> /pytorch/aten/src/ATen/native/hip/TensorCompare.cpp [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/MaxUnpooling.cu -> /pytorch/aten/src/ATen/native/hip/MaxUnpooling.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/fused_adam_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adam_impl.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/LinearAlgebra.cu -> /pytorch/aten/src/ATen/native/hip/LinearAlgebra.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/ReduceMinValuesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMinValuesKernel.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/BinaryShiftOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryShiftOpsKernels.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/GcdLcmKernel.cu -> /pytorch/aten/src/ATen/native/hip/GcdLcmKernel.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/UnaryFractionKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryFractionKernels.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/BinaryMulKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/LaunchUtils.h -> /pytorch/aten/src/ATen/native/hip/LaunchUtils.h [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/spherical_bessel_j0.cu -> /pytorch/aten/src/ATen/native/hip/spherical_bessel_j0.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/airy_ai.cu -> /pytorch/aten/src/ATen/native/hip/airy_ai.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/modified_bessel_k1.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_k1.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_w.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_w.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/Sort.h -> /pytorch/aten/src/ATen/native/hip/Sort.h [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/ReduceMaxValuesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMaxValuesKernel.hip [ok] +#10 23.12 /pytorch/aten/src/ATen/native/cuda/DeviceSqrt.cuh -> /pytorch/aten/src/ATen/native/hip/DeviceSqrt.cuh [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/Sorting.cpp -> /pytorch/aten/src/ATen/native/hip/Sorting.cpp [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/Indexing.cu -> /pytorch/aten/src/ATen/native/hip/Indexing.hip [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/TensorCompare.cu -> /pytorch/aten/src/ATen/native/hip/TensorCompare.hip [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_w.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_w.hip [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/ActivationHardtanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardtanhKernel.hip [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/ForeachReduceOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/Randperm.cuh -> /pytorch/aten/src/ATen/native/hip/Randperm.cuh [ok] +#10 23.13 /pytorch/aten/src/ATen/native/cuda/DepthwiseConv2d.cu -> /pytorch/aten/src/ATen/native/hip/DepthwiseConv2d.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/Nonzero.cu -> /pytorch/aten/src/ATen/native/hip/Nonzero.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/ActivationGeluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationGeluKernel.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/CUDALoops.cuh -> /pytorch/aten/src/ATen/native/hip/HIPLoops.cuh [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/ScanKernels.h -> /pytorch/aten/src/ATen/native/hip/ScanKernels.h [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/BinaryBitwiseOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryBitwiseOpsKernels.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/WeightNorm.cu -> /pytorch/aten/src/ATen/native/hip/WeightNorm.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/LinearAlgebraStubs.cpp -> /pytorch/aten/src/ATen/native/hip/LinearAlgebraStubs.cpp [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/SegmentReduce.cu -> /pytorch/aten/src/ATen/native/hip/SegmentReduce.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/SpectralOps.cpp -> /pytorch/aten/src/ATen/native/hip/SpectralOps.cpp [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/FusedAdamKernel.cu -> /pytorch/aten/src/ATen/native/hip/FusedAdamKernel.hip [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/SortingRadixSelect.cuh -> /pytorch/aten/src/ATen/native/hip/SortingRadixSelect.cuh [ok] +#10 23.14 /pytorch/aten/src/ATen/native/cuda/Reduce.cu -> /pytorch/aten/src/ATen/native/hip/Reduce.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cu -> /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/IGammaKernel.cu -> /pytorch/aten/src/ATen/native/hip/IGammaKernel.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/ReduceOps.h -> /pytorch/aten/src/ATen/native/hip/ReduceOps.h [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricTanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricTanhKernel.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/UnaryGammaKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGammaKernels.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/ScanKernels.cpp -> /pytorch/aten/src/ATen/native/hip/ScanKernels.cpp [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/ForeachTernaryOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/DistributionUniform.cu -> /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cu -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.hip [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/Reduce.cuh -> /pytorch/aten/src/ATen/native/hip/Reduce.cuh [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/TensorTopK.h -> /pytorch/aten/src/ATen/native/hip/TensorTopK.h [ok] +#10 23.15 /pytorch/aten/src/ATen/native/cuda/BinaryInternal.h -> /pytorch/aten/src/ATen/native/hip/BinaryInternal.h [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/FractionalMaxPool3d.cu -> /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpList.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/bessel_j0.cu -> /pytorch/aten/src/ATen/native/hip/bessel_j0.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/CumprodKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/Copy.cu -> /pytorch/aten/src/ATen/native/hip/Copy.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling3d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveMaxPooling3d.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/ConvolutionMM2d.cu -> /pytorch/aten/src/ATen/native/hip/ConvolutionMM2d.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAtanKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAtanKernel.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/FusedAdamWKernel.cu -> /pytorch/aten/src/ATen/native/hip/FusedAdamWKernel.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/ReduceArgMinKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceArgMinKernel.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cuh -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.cuh [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/Distributions.h -> /pytorch/aten/src/ATen/native/hip/Distributions.h [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/CompareKernels.cu -> /pytorch/aten/src/ATen/native/hip/CompareKernels.hip [ok] +#10 23.16 /pytorch/aten/src/ATen/native/cuda/UpSampleLinear1d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleLinear1d.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose3d.cu -> /pytorch/aten/src/ATen/native/hip/NaiveConvolutionTranspose3d.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/SpectralOps.cu -> /pytorch/aten/src/ATen/native/hip/SpectralOps.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/SparseMM.cu -> /pytorch/aten/src/ATen/native/hip/SparseMM.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/BinaryMiscBackwardOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMiscBackwardOpsKernels.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/LogcumsumexpKernel.cu -> /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/AveragePool3d.cu -> /pytorch/aten/src/ATen/native/hip/AveragePool3d.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/ForeachPointwiseOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_v.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_v.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/DistributionExponentialKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/UnarySignKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnarySignKernels.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_amsgrad_impl.cuh [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/Embedding.cu -> /pytorch/aten/src/ATen/native/hip/Embedding.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/Randperm.cu -> /pytorch/aten/src/ATen/native/hip/Randperm.hip [ok] +#10 23.17 /pytorch/aten/src/ATen/native/cuda/StepKernel.cu -> /pytorch/aten/src/ATen/native/hip/StepKernel.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/DilatedMaxPool2d.cu -> /pytorch/aten/src/ATen/native/hip/DilatedMaxPool2d.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/AveragePool2d.cu -> /pytorch/aten/src/ATen/native/hip/AveragePool2d.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/TensorTopK.cu -> /pytorch/aten/src/ATen/native/hip/TensorTopK.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/Equal.cpp -> /pytorch/aten/src/ATen/native/hip/Equal.cpp [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/LossCTC.cu -> /pytorch/aten/src/ATen/native/hip/LossCTC.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/ComplexKernel.cu -> /pytorch/aten/src/ATen/native/hip/ComplexKernel.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/Distributions.cu -> /pytorch/aten/src/ATen/native/hip/Distributions.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/block_reduce.cuh -> /pytorch/aten/src/ATen/native/hip/block_reduce.cuh [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/BinaryLogicalOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryLogicalOpsKernels.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/ScanUtils.cuh -> /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/ActivationHardswishKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardswishKernel.hip [ok] +#10 23.18 /pytorch/aten/src/ATen/native/cuda/legendre_polynomial_p.cu -> /pytorch/aten/src/ATen/native/hip/legendre_polynomial_p.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/ActivationLeakyReluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationLeakyReluKernel.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/Loops.cuh -> /pytorch/aten/src/ATen/native/hip/Loops.cuh [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/TensorTransformations.cu -> /pytorch/aten/src/ATen/native/hip/TensorTransformations.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/UnfoldBackwardKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnfoldBackwardKernel.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/DistributionCauchyKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionCauchyKernel.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/hermite_polynomial_he.cu -> /pytorch/aten/src/ATen/native/hip/hermite_polynomial_he.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/fused_adam_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_impl.cuh [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/DistributionBernoulli.cu -> /pytorch/aten/src/ATen/native/hip/DistributionBernoulli.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/IndexKernel.cpp -> /pytorch/aten/src/ATen/native/hip/IndexKernel.cpp [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/Sort.cpp -> /pytorch/aten/src/ATen/native/hip/Sort.cpp [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/DistributionGeometricKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionGeometricKernel.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/IndexKernel.cu -> /pytorch/aten/src/ATen/native/hip/IndexKernel.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/MiscUtils.h -> /pytorch/aten/src/ATen/native/hip/MiscUtils.h [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/Col2Im.cu -> /pytorch/aten/src/ATen/native/hip/Col2Im.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/SummaryOps.cu -> /pytorch/aten/src/ATen/native/hip/SummaryOps.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/bessel_j1.cu -> /pytorch/aten/src/ATen/native/hip/bessel_j1.hip [ok] +#10 23.19 /pytorch/aten/src/ATen/native/cuda/Loss.cu -> /pytorch/aten/src/ATen/native/hip/Loss.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/SortUtils.cuh -> /pytorch/aten/src/ATen/native/hip/SortUtils.cuh [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/RreluWithNoise.cu -> /pytorch/aten/src/ATen/native/hip/RreluWithNoise.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_v.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_v.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/fused_adamw_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adamw_impl.cuh [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/ForeachFunctors.cuh -> /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/ActivationPreluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationPreluKernel.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/Pow.cuh -> /pytorch/aten/src/ATen/native/hip/Pow.cuh [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_u.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_u.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/bessel_y0.cu -> /pytorch/aten/src/ATen/native/hip/bessel_y0.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> /pytorch/aten/src/ATen/native/hip/ForeachMinMaxFunctors.cuh [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/AbsKernel.cu -> /pytorch/aten/src/ATen/native/hip/AbsKernel.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adamw_amsgrad_impl.cuh [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/ActivationGluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationGluKernel.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/RenormKernel.cu -> /pytorch/aten/src/ATen/native/hip/RenormKernel.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/UnarySpecialOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnarySpecialOpsKernel.hip [ok] +#10 23.20 /pytorch/aten/src/ATen/native/cuda/CUDAScalar.cu -> /pytorch/aten/src/ATen/native/hip/HIPScalar.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/ForeachUnaryOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachUnaryOp.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/CopysignKernel.cu -> /pytorch/aten/src/ATen/native/hip/CopysignKernel.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/ActivationHardsigmoidKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardsigmoidKernel.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/thread_constants.h -> /pytorch/aten/src/ATen/native/hip/thread_constants.h [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/EmbeddingBag.cu -> /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAsinKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAsinKernel.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/RNN.cu -> /pytorch/aten/src/ATen/native/hip/RNN.hip [ok] +#10 23.21 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest2d.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/layer_norm_kernel.cu -> /pytorch/aten/src/ATen/native/hip/layer_norm_kernel.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/ActivationSoftshrinkKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSoftshrinkKernel.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/fused_adam_amsgrad_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adam_amsgrad_impl.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/group_norm_kernel.cu -> /pytorch/aten/src/ATen/native/hip/group_norm_kernel.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricCoshKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricCoshKernel.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/ZetaKernel.cu -> /pytorch/aten/src/ATen/native/hip/ZetaKernel.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/Repeat.cu -> /pytorch/aten/src/ATen/native/hip/Repeat.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/MultiLabelMarginCriterion.cu -> /pytorch/aten/src/ATen/native/hip/MultiLabelMarginCriterion.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/UnaryComplexKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryComplexKernels.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/ReduceMomentKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMomentKernel.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/GridSampler.cpp -> /pytorch/aten/src/ATen/native/hip/GridSampler.cpp [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/modified_bessel_i1.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_i1.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/fused_adam_utils.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_utils.cuh [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/MultiMarginLoss.cu -> /pytorch/aten/src/ATen/native/hip/MultiMarginLoss.hip [ok] +#10 23.22 /pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling2d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveMaxPooling2d.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/ReflectionPad.cu -> /pytorch/aten/src/ATen/native/hip/ReflectionPad.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/Activation.cpp -> /pytorch/aten/src/ATen/native/hip/Activation.cpp [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/Blas.cpp -> /pytorch/aten/src/ATen/native/hip/Blas.cpp [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/CUDAJitLoops.cuh -> /pytorch/aten/src/ATen/native/hip/HIPJitLoops.cuh [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/DepthwiseConv3d.cu -> /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/DistributionTemplates.h -> /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/bessel_y1.cu -> /pytorch/aten/src/ATen/native/hip/bessel_y1.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpScalar.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_u.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_u.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricSinKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricSinKernel.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/DistributionNormal.cu -> /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip [ok] +#10 23.23 /pytorch/aten/src/ATen/native/cuda/PointwiseOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/PointwiseOpsKernel.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAsinhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAsinhKernel.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/hermite_polynomial_h.cu -> /pytorch/aten/src/ATen/native/hip/hermite_polynomial_h.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/ReduceAMinMaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceAMinMaxKernel.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/ActivationEluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationEluKernel.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling3d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling3d.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/LegacyThrustHelpers.cu -> /pytorch/aten/src/ATen/native/hip/LegacyThrustHelpers.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/CuFFTPlanCache.h -> /pytorch/aten/src/ATen/native/hip/CuFFTPlanCache.h [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose2d.cu -> /pytorch/aten/src/ATen/native/hip/NaiveConvolutionTranspose2d.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/ReduceOps.cpp -> /pytorch/aten/src/ATen/native/hip/ReduceOps.cpp [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/NaiveDilatedConvolution.cu -> /pytorch/aten/src/ATen/native/hip/NaiveDilatedConvolution.hip [ok] +#10 23.24 /pytorch/aten/src/ATen/native/cuda/BinaryDivTrueKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/Dropout.cu -> /pytorch/aten/src/ATen/native/hip/Dropout.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/SortStable.h -> /pytorch/aten/src/ATen/native/hip/SortStable.h [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricSinhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricSinhKernel.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/scaled_modified_bessel_k1.cu -> /pytorch/aten/src/ATen/native/hip/scaled_modified_bessel_k1.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/DistanceKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistanceKernel.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/UpSample.cuh -> /pytorch/aten/src/ATen/native/hip/UpSample.cuh [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/Lerp.cu -> /pytorch/aten/src/ATen/native/hip/Lerp.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/IndexKernel.h -> /pytorch/aten/src/ATen/native/hip/IndexKernel.h [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/DistributionLogNormalKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionLogNormalKernel.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/FillKernel.cu -> /pytorch/aten/src/ATen/native/hip/FillKernel.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/CrossKernel.cu -> /pytorch/aten/src/ATen/native/hip/CrossKernel.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/RecordStream.cu -> /pytorch/aten/src/ATen/native/hip/RecordStream.hip [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/JitLoops.cuh -> /pytorch/aten/src/ATen/native/hip/JitLoops.cuh [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/im2col.cuh -> /pytorch/aten/src/ATen/native/hip/im2col.cuh [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/CompositeRandomAccessor.h -> /pytorch/aten/src/ATen/native/hip/CompositeRandomAccessor.h [ok] +#10 23.25 /pytorch/aten/src/ATen/native/cuda/SparseBinaryOpIntersectionKernel.cu -> /pytorch/aten/src/ATen/native/hip/SparseBinaryOpIntersectionKernel.hip [ok] +#10 23.26 /pytorch/aten/src/ATen/native/cuda/Normalization.cuh -> /pytorch/aten/src/ATen/native/hip/Normalization.cuh [ok] +#10 23.26 /pytorch/aten/src/ATen/native/cuda/BinaryDivTruncKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivTruncKernel.hip [ok] +#10 23.26 /pytorch/aten/src/ATen/native/cuda/PersistentSoftmax.cuh -> /pytorch/aten/src/ATen/native/hip/PersistentSoftmax.cuh [ok] +#10 23.26 /pytorch/aten/src/ATen/native/cuda/linalg/MagmaUtils.h -> /pytorch/aten/src/ATen/native/hip/linalg/MagmaUtils.h [ok] +#10 23.26 /pytorch/aten/src/ATen/native/cuda/linalg/CUDASolver.h -> /pytorch/aten/src/ATen/native/hip/linalg/HIPSolver.h [ok] +#10 23.26 /pytorch/aten/src/ATen/native/cuda/linalg/CusolverDnHandlePool.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/CusolverDnHandlePool.cpp [ok] +#10 23.27 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebraLib.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebraLib.cpp [ok] +#10 23.27 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebra.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebra.cpp [ok] +#10 23.28 /pytorch/aten/src/ATen/native/cuda/linalg/CUDASolver.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/HIPSolver.cpp [ok] +#10 23.28 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebraLib.h -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebraLib.h [ok] +#10 23.28 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorMatmul.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorMatmul.hip [ok] +#10 23.28 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorTransformerFunctions.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorTransformerFunctions.hip [ok] +#10 23.28 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorTransformerFunctions.cpp -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorTransformerFunctions.cpp [ok] +#10 23.28 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorBinaryOps.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorBinaryOps.hip [ok] +#10 23.28 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensorMath.hip [ok] +#10 23.28 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCsrTensorMath.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseCsrTensorMath.hip [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDAApplyUtils.cuh -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPApplyUtils.cuh [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SoftMax.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SoftMax.hip [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPBlas.cpp [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPBlas.h [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasImpl.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasImpl.h [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlas.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlas.cpp [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasLegacy.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasLegacy.h [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseMatMul.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseMatMul.hip [ok] +#10 23.29 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasImpl.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasImpl.cpp [ok] +#10 23.30 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cuh -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensorMath.cuh [ok] +#10 23.30 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensor.hip [ok] +#10 23.30 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasLegacy.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasLegacy.cpp [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/attention_backward.cu -> /pytorch/aten/src/ATen/native/transformers/hip/attention_backward.hip [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/sdp_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/sdp_utils.h [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/attention.cu -> /pytorch/aten/src/ATen/native/transformers/hip/attention.hip [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/mask.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/mask.h [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/kernel_traits.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/kernel_traits.h [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim64.hip [ok] +#10 23.30 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_kernel.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_kernel.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/utils.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim32.hip [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/gmem_tile.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/gmem_tile.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/philox.cuh -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/philox.cuh [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_launch_template.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_launch_template.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fprop_kernel_1xN.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fprop_kernel_1xN.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim128.hip [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_api.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_api.h [ok] +#10 23.31 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/static_switch.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/static_switch.h [ok] +#10 23.32 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/softmax.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/softmax.h [ok] +#10 23.32 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/smem_tile.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/smem_tile.h [ok] +#10 23.32 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim128.hip [ok] +#10 23.32 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_dgrad_kernel_1xN_loop.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_dgrad_kernel_1xN_loop.h [ok] +#10 23.32 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_launch_template.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_launch_template.h [ok] +#10 23.32 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim32.hip [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/gemm.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/gemm.h [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim64.hip [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_utils.h [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_api.cpp -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_api.cpp [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/mma_from_smem.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/mma_from_smem.h [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernel_forward.h [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/debug_utils.h [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_thread_apply_logsumexp.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_thread_apply_logsumexp.h [ok] +#10 23.33 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_pipelined.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_pipelined.h [ok] +#10 23.34 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/mma_simt_tile_iterator_residual.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/mma_simt_tile_iterator_residual.h [ok] +#10 23.34 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/find_default_mma.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/find_default_mma.h [ok] +#10 23.34 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm_kernel_utils.h [ok] +#10 23.34 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernel_backward.h [ok] +#10 23.34 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_rescale_output.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_rescale_output.h [ok] +#10 23.34 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/attention_scaling_coefs_updater.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/attention_scaling_coefs_updater.h [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/make_residual_last.h [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned_k128.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_k64.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f32.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned_k64.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f32_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f32_aligned.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned_k128.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f16.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned.hip [ok] +#10 23.35 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned_k128.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f16_aligned.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_k128.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned_k64.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_k128.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_k64.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_k128.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_bf16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_bf16.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_bf16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_bf16_aligned.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned_k64.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_k64.hip [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_pipelined.h [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_base.h [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_multistage.h [ok] +#10 23.36 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma.h [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/RNN.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/RNN.cpp [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/Macros.h -> /pytorch/aten/src/ATen/native/cudnn/hip/Macros.h [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/BatchNorm.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/BatchNorm.cpp [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/Conv_v7.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/Conv_v7.cpp [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/AffineGridGenerator.cpp [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/RNNUtils.h -> /pytorch/aten/src/ATen/native/cudnn/hip/RNNUtils.h [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/ConvShared.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvShared.cpp [ok] +#10 23.37 /pytorch/aten/src/ATen/native/cudnn/ConvShared.h -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvShared.h [ok] +#10 23.38 /pytorch/aten/src/ATen/native/cudnn/Conv_v8.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/Conv_v8.cpp [ok] +#10 23.38 /pytorch/aten/src/ATen/native/cudnn/ConvPlaceholders.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvPlaceholders.cpp [ok] +#10 23.38 /pytorch/aten/src/ATen/native/cudnn/GridSampler.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/GridSampler.cpp [ok] +#10 23.38 /pytorch/aten/src/ATen/native/cudnn/LossCTC.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/LossCTC.cpp [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/CUDAGraphsUtils.cuh -> /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/llvm_basic.cpp -> /pytorch/aten/src/ATen/hip/llvm_basic.cpp [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/jiterator.cu -> /pytorch/aten/src/ATen/hip/jiterator.hip [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/ThrustAllocator.h -> /pytorch/aten/src/ATen/hip/ThrustAllocator.h [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/CUDADataType.h -> /pytorch/aten/src/ATen/hip/HIPDataType.h [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/Atomic.cuh -> /pytorch/aten/src/ATen/hip/Atomic.cuh [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/CUDAUtils.h -> /pytorch/aten/src/ATen/hip/HIPUtils.h [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/jiterator_impl.h -> /pytorch/aten/src/ATen/hip/jiterator_impl.h [ok] +#10 23.38 /pytorch/aten/src/ATen/cuda/CachingHostAllocator.cpp -> /pytorch/aten/src/ATen/hip/CachingHostAllocator.cpp [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/CUDASparseBlas.h -> /pytorch/aten/src/ATen/hip/HIPSparseBlas.h [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/CuSparseHandlePool.cpp -> /pytorch/aten/src/ATen/hip/CuSparseHandlePool.cpp [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/CUDAContext.h -> /pytorch/aten/src/ATen/hip/HIPContext.h [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/DeviceUtils.cuh -> /pytorch/aten/src/ATen/hip/DeviceUtils.cuh [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/CUDASparseBlas.cpp -> /pytorch/aten/src/ATen/hip/HIPSparseBlas.cpp [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/llvm_complex.cpp -> /pytorch/aten/src/ATen/hip/llvm_complex.cpp [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp -> /pytorch/aten/src/ATen/hip/CublasHandlePool.cpp [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.cpp -> /pytorch/aten/src/ATen/hip/PinnedMemoryAllocator.cpp [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/Sleep.h -> /pytorch/aten/src/ATen/hip/Sleep.h [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/AsmUtils.cuh -> /pytorch/aten/src/ATen/hip/AsmUtils.cuh [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/CUDABlas.h -> /pytorch/aten/src/ATen/hip/HIPBlas.h [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/cub-RadixSortKeys.cu -> /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/cub-RadixSortPairs.cu -> /pytorch/aten/src/ATen/hip/cub-RadixSortPairs.hip [ok] +#10 23.39 /pytorch/aten/src/ATen/cuda/llvm_jit_strings.h -> /pytorch/aten/src/ATen/hip/llvm_jit_strings.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDAGraph.cpp -> /pytorch/aten/src/ATen/hip/HIPGraph.cpp [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/EmptyTensor.cpp -> /pytorch/aten/src/ATen/hip/EmptyTensor.cpp [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDATensorMethods.cuh -> /pytorch/aten/src/ATen/hip/HIPTensorMethods.cuh [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/ApplyGridUtils.cuh -> /pytorch/aten/src/ATen/hip/ApplyGridUtils.cuh [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CachingHostAllocator.h -> /pytorch/aten/src/ATen/hip/CachingHostAllocator.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/NumericLimits.cuh -> /pytorch/aten/src/ATen/hip/NumericLimits.cuh [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDAGraph.h -> /pytorch/aten/src/ATen/hip/HIPGraph.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDAContext.cpp -> /pytorch/aten/src/ATen/hip/HIPContext.cpp [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/ScanUtils.cuh -> /pytorch/aten/src/ATen/hip/ScanUtils.cuh [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/cub.h -> /pytorch/aten/src/ATen/hip/cub.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/cub.cu -> /pytorch/aten/src/ATen/hip/cub.hip [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/Sleep.cu -> /pytorch/aten/src/ATen/hip/Sleep.hip [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/PeerToPeerAccess.cpp -> /pytorch/aten/src/ATen/hip/PeerToPeerAccess.cpp [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/PeerToPeerAccess.h -> /pytorch/aten/src/ATen/hip/PeerToPeerAccess.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDASparse.h -> /pytorch/aten/src/ATen/hip/HIPSparse.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDABlas.cpp -> /pytorch/aten/src/ATen/hip/HIPBlas.cpp [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/ATenCUDAGeneral.h -> /pytorch/aten/src/ATen/hip/ATenHIPGeneral.h [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/cub_definitions.cuh -> /pytorch/aten/src/ATen/hip/cub_definitions.cuh [ok] +#10 23.40 /pytorch/aten/src/ATen/cuda/CUDAGeneratorImpl.cpp -> /pytorch/aten/src/ATen/hip/HIPGeneratorImpl.cpp [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDAGeneratorImpl.h -> /pytorch/aten/src/ATen/hip/HIPGeneratorImpl.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/EmptyTensor.h -> /pytorch/aten/src/ATen/hip/EmptyTensor.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/Exceptions.cpp -> /pytorch/aten/src/ATen/hip/Exceptions.cpp [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/Exceptions.h -> /pytorch/aten/src/ATen/hip/Exceptions.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.h -> /pytorch/aten/src/ATen/hip/PinnedMemoryAllocator.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDASparseDescriptors.cpp -> /pytorch/aten/src/ATen/hip/HIPSparseDescriptors.cpp [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDASparseDescriptors.h -> /pytorch/aten/src/ATen/hip/HIPSparseDescriptors.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDAEvent.h -> /pytorch/aten/src/ATen/hip/HIPEvent.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/jiterator.h -> /pytorch/aten/src/ATen/hip/jiterator.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/cub.cuh -> /pytorch/aten/src/ATen/hip/cub.cuh [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDAConfig.h.in -> /pytorch/aten/src/ATen/hip/HIPConfig.h.in [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDADevice.h -> /pytorch/aten/src/ATen/hip/HIPDevice.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/CUDAApplyUtils.cuh -> /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/detail/OffsetCalculator.cuh -> /pytorch/aten/src/ATen/hip/detail/OffsetCalculator.cuh [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/detail/CUDAHooks.h -> /pytorch/aten/src/ATen/hip/detail/HIPHooks.h [ok] +#10 23.41 /pytorch/aten/src/ATen/cuda/detail/LazyNVRTC.cpp -> /pytorch/aten/src/ATen/hip/detail/LazyNVRTC.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/TensorInfo.cuh -> /pytorch/aten/src/ATen/hip/detail/TensorInfo.cuh [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/DeviceThreadHandles.h -> /pytorch/aten/src/ATen/hip/detail/DeviceThreadHandles.h [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/IndexUtils.cu -> /pytorch/aten/src/ATen/hip/detail/IndexUtils.hip [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/CUDAHooks.cpp -> /pytorch/aten/src/ATen/hip/detail/HIPHooks.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> /pytorch/aten/src/ATen/hip/detail/PhiloxCudaStateRaw.cuh [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/IndexUtils.cuh -> /pytorch/aten/src/ATen/hip/detail/IndexUtils.cuh [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/IntegerDivider.cuh -> /pytorch/aten/src/ATen/hip/detail/IntegerDivider.cuh [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/KernelUtils.h -> /pytorch/aten/src/ATen/hip/detail/KernelUtils.h [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/LazyNVRTC.h -> /pytorch/aten/src/ATen/hip/detail/LazyNVRTC.h [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/detail/UnpackRaw.cuh -> /pytorch/aten/src/ATen/hip/detail/UnpackRaw.cuh [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/nvrtc_stub/ATenNVRTC.h -> /pytorch/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h [ok] +#10 23.42 /pytorch/aten/src/ATen/cuda/nvrtc_stub/ATenNVRTC.cpp -> /pytorch/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/cuda_apply_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_apply_test.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/cpu_caching_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_caching_allocator_test.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/cuda_half_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_half_test.hip [ok] +#10 23.42 /pytorch/aten/src/ATen/test/operators_test.cpp -> /pytorch/aten/src/ATen/test/hip/operators_test.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/cuda_complex_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_complex_test.hip [ok] +#10 23.42 /pytorch/aten/src/ATen/test/cuda_device_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_device_test.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/Dict_test.cpp -> /pytorch/aten/src/ATen/test/hip/Dict_test.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/scalar_test.cpp -> /pytorch/aten/src/ATen/test/hip/scalar_test.cpp [ok] +#10 23.42 /pytorch/aten/src/ATen/test/cuda_generator_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_generator_test.hip [ok] +#10 23.42 /pytorch/aten/src/ATen/test/type_test.cpp -> /pytorch/aten/src/ATen/test/hip/type_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/cuda_atomic_ops_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_atomic_ops_test.hip [ok] +#10 23.43 /pytorch/aten/src/ATen/test/dlconvertor_test.cpp -> /pytorch/aten/src/ATen/test/hip/dlconvertor_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/test_thread_pool_guard.cpp -> /pytorch/aten/src/ATen/test/hip/test_thread_pool_guard.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/test_assert.h -> /pytorch/aten/src/ATen/test/hip/test_assert.h [ok] +#10 23.43 /pytorch/aten/src/ATen/test/half_test.cpp -> /pytorch/aten/src/ATen/test/hip/half_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/extension_backend_test.cpp -> /pytorch/aten/src/ATen/test/hip/extension_backend_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/cuda_dlconvertor_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_dlconvertor_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/verify_api_visibility.cpp -> /pytorch/aten/src/ATen/test/hip/verify_api_visibility.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/tensor_interop_test.cpp -> /pytorch/aten/src/ATen/test/hip/tensor_interop_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/cuda_tensor_interop_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_tensor_interop_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/variant_test.cpp -> /pytorch/aten/src/ATen/test/hip/variant_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/memory_format_test.cpp -> /pytorch/aten/src/ATen/test/hip/memory_format_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/cuda_cudnn_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_cudnn_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/cuda_reportMemoryUsage_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_reportMemoryUsage_test.cpp [ok] +#10 23.43 /pytorch/aten/src/ATen/test/operator_name_test.cpp -> /pytorch/aten/src/ATen/test/hip/operator_name_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/vulkan_quantized_api_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_quantized_api_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/vitals.cpp -> /pytorch/aten/src/ATen/test/hip/vitals.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/xla_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/xla_tensor_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/stride_properties_test.cpp -> /pytorch/aten/src/ATen/test/hip/stride_properties_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/rng_test.h -> /pytorch/aten/src/ATen/test/hip/rng_test.h [ok] +#10 23.44 /pytorch/aten/src/ATen/test/memory_overlapping_test.cpp -> /pytorch/aten/src/ATen/test/hip/memory_overlapping_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/mps_test_print.cpp -> /pytorch/aten/src/ATen/test/hip/mps_test_print.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/legacy_vmap_test.cpp -> /pytorch/aten/src/ATen/test/hip/legacy_vmap_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/reduce_ops_test.cpp -> /pytorch/aten/src/ATen/test/hip/reduce_ops_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/wrapdim_test.cpp -> /pytorch/aten/src/ATen/test/hip/wrapdim_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/reportMemoryUsage_test.cpp -> /pytorch/aten/src/ATen/test/hip/reportMemoryUsage_test.cpp [ok] +#10 23.44 /pytorch/aten/src/ATen/test/reportMemoryUsage.h -> /pytorch/aten/src/ATen/test/hip/reportMemoryUsage.h [ok] +#10 23.45 /pytorch/aten/src/ATen/test/cuda_caching_host_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_caching_host_allocator_test.cpp [ok] +#10 23.45 /pytorch/aten/src/ATen/test/pow_test.cpp -> /pytorch/aten/src/ATen/test/hip/pow_test.cpp [ok] +#10 23.45 /pytorch/aten/src/ATen/test/cuda_cub_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_cub_test.hip [ok] +#10 23.45 /pytorch/aten/src/ATen/test/packedtensoraccessor_test.cpp -> /pytorch/aten/src/ATen/test/hip/packedtensoraccessor_test.cpp [ok] +#10 23.45 /pytorch/aten/src/ATen/test/quantized_test.cpp -> /pytorch/aten/src/ATen/test/hip/quantized_test.cpp [ok] +#10 23.45 /pytorch/aten/src/ATen/test/weakref_test.cpp -> /pytorch/aten/src/ATen/test/hip/weakref_test.cpp [ok] +#10 23.45 /pytorch/aten/src/ATen/test/Dimname_test.cpp -> /pytorch/aten/src/ATen/test/hip/Dimname_test.cpp [ok] +#10 23.45 /pytorch/aten/src/ATen/test/apply_utils_test.cpp -> /pytorch/aten/src/ATen/test/hip/apply_utils_test.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/vulkan_api_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_api_test.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/cuda_complex_math_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_complex_math_test.hip [ok] +#10 23.46 /pytorch/aten/src/ATen/test/math_kernel_test.cpp -> /pytorch/aten/src/ATen/test/hip/math_kernel_test.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/NamedTensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/NamedTensor_test.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/atest.cpp -> /pytorch/aten/src/ATen/test/hip/atest.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/cpu_profiling_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_profiling_allocator_test.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/broadcast_test.cpp -> /pytorch/aten/src/ATen/test/hip/broadcast_test.cpp [ok] +#10 23.46 /pytorch/aten/src/ATen/test/type_ptr_test.cpp -> /pytorch/aten/src/ATen/test/hip/type_ptr_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/vulkan_perf_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_perf_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/tensor_iterator_test.cpp -> /pytorch/aten/src/ATen/test/hip/tensor_iterator_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/cuda_stream_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_stream_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/cuda_vectorized_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_vectorized_test.hip [ok] +#10 23.47 /pytorch/aten/src/ATen/test/xnnpack_test.cpp -> /pytorch/aten/src/ATen/test/hip/xnnpack_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/dispatch_key_set_test.cpp -> /pytorch/aten/src/ATen/test/hip/dispatch_key_set_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/native_test.cpp -> /pytorch/aten/src/ATen/test/hip/native_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/thread_init_test.cpp -> /pytorch/aten/src/ATen/test/hip/thread_init_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/test_parallel.cpp -> /pytorch/aten/src/ATen/test/hip/test_parallel.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/cpu_generator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_generator_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/cuda_optional_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_optional_test.hip [ok] +#10 23.47 /pytorch/aten/src/ATen/test/scalar_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/scalar_tensor_test.cpp [ok] +#10 23.47 /pytorch/aten/src/ATen/test/mobile_memory_cleanup.cpp -> /pytorch/aten/src/ATen/test/hip/mobile_memory_cleanup.cpp [ok] +#10 23.48 /pytorch/aten/src/ATen/test/undefined_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/undefined_tensor_test.cpp [ok] +#10 23.48 /pytorch/aten/src/ATen/test/cpu_rng_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_rng_test.cpp [ok] +#10 23.48 /pytorch/aten/src/ATen/test/lazy_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/lazy_tensor_test.cpp [ok] +#10 23.48 /pytorch/aten/src/ATen/test/ExclusivelyOwned_test.cpp -> /pytorch/aten/src/ATen/test/hip/ExclusivelyOwned_test.cpp [ok] +#10 23.48 /pytorch/aten/src/ATen/test/vec_test_all_types.h -> /pytorch/aten/src/ATen/test/hip/vec_test_all_types.h [ok] +#10 23.48 /pytorch/aten/src/ATen/test/MaybeOwned_test.cpp -> /pytorch/aten/src/ATen/test/hip/MaybeOwned_test.cpp [ok] +#10 23.49 /pytorch/aten/src/ATen/test/vec_test_all_types.cpp -> /pytorch/aten/src/ATen/test/hip/vec_test_all_types.cpp [ok] +#10 23.49 /pytorch/aten/src/ATen/test/cuda_distributions_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_distributions_test.hip [ok] +#10 23.49 /pytorch/aten/src/ATen/test/ivalue_test.cpp -> /pytorch/aten/src/ATen/test/hip/ivalue_test.cpp [ok] +#10 23.49 /pytorch/aten/src/ATen/test/cuda_integer_divider_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_integer_divider_test.hip [ok] +#10 23.49 /pytorch/aten/src/ATen/test/basic.cpp -> /pytorch/aten/src/ATen/test/hip/basic.cpp [ok] +#10 23.49 /pytorch/aten/src/ATen/test/mps_test_allocator.cpp -> /pytorch/aten/src/ATen/test/hip/mps_test_allocator.cpp [ok] +#10 23.49 /pytorch/aten/src/ATen/test/cuda_packedtensoraccessor_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_packedtensoraccessor_test.hip [ok] +#10 23.49 /pytorch/aten/src/ATen/test/test_install/main.cpp -> /pytorch/aten/src/ATen/test/test_install/hip/main.cpp [ok] +#10 23.49 /pytorch/aten/src/THC/THCAtomics.cuh -> /pytorch/aten/src/THH/THHAtomics.cuh [ok] +#10 23.49 /pytorch/aten/src/THC/THCDeviceUtils.cuh -> /pytorch/aten/src/THH/THHDeviceUtils.cuh [ok] +#10 23.49 /pytorch/aten/src/THC/CMakeLists.txt -> /pytorch/aten/src/THH/CMakeLists.txt [ok] +#10 23.49 /pytorch/binaries/print_core_object_sizes_gpu.cc -> /pytorch/binaries/hip/print_core_object_sizes_gpu.cc [ok] +#10 23.49 /pytorch/binaries/core_overhead_benchmark_gpu.cc -> /pytorch/binaries/hip/core_overhead_benchmark_gpu.cc [ok] +#10 23.49 /pytorch/binaries/inspect_gpu.cc -> /pytorch/binaries/hip/inspect_gpu.cc [ok] +#10 23.49 /pytorch/torch/custom_class_detail.h -> /pytorch/torch/custom_class_detail.h [skipped, already hipified] +#10 23.50 /pytorch/torch/library.h -> /pytorch/torch/library.h [skipped, already hipified] +#10 23.50 /pytorch/torch/extension.h -> /pytorch/torch/extension.h [skipped, already hipified] +#10 23.50 /pytorch/torch/script.h -> /pytorch/torch/script.h [skipped, already hipified] +#10 23.50 /pytorch/torch/custom_class.h -> /pytorch/torch/custom_class.h [skipped, already hipified] +#10 23.50 /pytorch/torch/abi-check.cpp -> /pytorch/torch/abi-check.cpp [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/QScheme.h -> /pytorch/torch/csrc/QScheme.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/DataLoader.h -> /pytorch/torch/csrc/DataLoader.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/Layout.h -> /pytorch/torch/csrc/Layout.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/utils.h -> /pytorch/torch/csrc/utils.h [ok] +#10 23.50 /pytorch/torch/csrc/Stream.cpp -> /pytorch/torch/csrc/Stream.cpp [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/python_headers.h -> /pytorch/torch/csrc/python_headers.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/CudaIPCTypes.cpp -> /pytorch/torch/csrc/CudaIPCTypes.cpp [ok] +#10 23.50 /pytorch/torch/csrc/Size.h -> /pytorch/torch/csrc/Size.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/TypeInfo.cpp -> /pytorch/torch/csrc/TypeInfo.cpp [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/python_dimname.cpp -> /pytorch/torch/csrc/python_dimname.cpp [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/Export.h -> /pytorch/torch/csrc/Export.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/serialization.h -> /pytorch/torch/csrc/serialization.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/copy_utils.h -> /pytorch/torch/csrc/copy_utils.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/empty.c -> /pytorch/torch/csrc/empty.c [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/Device.h -> /pytorch/torch/csrc/Device.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/Generator.h -> /pytorch/torch/csrc/Generator.h [skipped, already hipified] +#10 23.50 /pytorch/torch/csrc/utils.cpp -> /pytorch/torch/csrc/utils.cpp [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/StorageMethods.cpp -> /pytorch/torch/csrc/StorageMethods.cpp [ok] +#10 23.51 /pytorch/torch/csrc/MemoryFormat.h -> /pytorch/torch/csrc/MemoryFormat.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/itt.cpp -> /pytorch/torch/csrc/itt.cpp [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/CudaIPCTypes.h -> /pytorch/torch/csrc/CudaIPCTypes.h [ok] +#10 23.51 /pytorch/torch/csrc/StorageMethods.h -> /pytorch/torch/csrc/StorageMethods.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/itt_wrapper.h -> /pytorch/torch/csrc/itt_wrapper.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/PyInterpreter.cpp -> /pytorch/torch/csrc/PyInterpreter.cpp [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/Module.cpp -> /pytorch/torch/csrc/Module.cpp [ok] +#10 23.51 /pytorch/torch/csrc/TypeInfo.h -> /pytorch/torch/csrc/TypeInfo.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/MemoryFormat.cpp -> /pytorch/torch/csrc/MemoryFormat.cpp [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/THP.h -> /pytorch/torch/csrc/THP.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/PyInterpreter.h -> /pytorch/torch/csrc/PyInterpreter.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/Storage.h -> /pytorch/torch/csrc/Storage.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/Stream.h -> /pytorch/torch/csrc/Stream.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/PythonTypes.h -> /pytorch/torch/csrc/PythonTypes.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/StorageSharing.h -> /pytorch/torch/csrc/StorageSharing.h [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/stub.c -> /pytorch/torch/csrc/stub.c [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/DynamicTypes.cpp -> /pytorch/torch/csrc/DynamicTypes.cpp [skipped, already hipified] +#10 23.51 /pytorch/torch/csrc/DynamicTypes.h -> /pytorch/torch/csrc/DynamicTypes.h [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/THConcat.h -> /pytorch/torch/csrc/THConcat.h [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Size.cpp -> /pytorch/torch/csrc/Size.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Types.h -> /pytorch/torch/csrc/Types.h [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/StorageSharing.cpp -> /pytorch/torch/csrc/StorageSharing.cpp [ok] +#10 23.52 /pytorch/torch/csrc/Layout.cpp -> /pytorch/torch/csrc/Layout.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Exceptions.cpp -> /pytorch/torch/csrc/Exceptions.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Exceptions.h -> /pytorch/torch/csrc/Exceptions.h [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/stub_with_flatbuffer.c -> /pytorch/torch/csrc/stub_with_flatbuffer.c [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Device.cpp -> /pytorch/torch/csrc/Device.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/itt_wrapper.cpp -> /pytorch/torch/csrc/itt_wrapper.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/serialization.cpp -> /pytorch/torch/csrc/serialization.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Dtype.h -> /pytorch/torch/csrc/Dtype.h [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Module.h -> /pytorch/torch/csrc/Module.h [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/DataLoader.cpp -> /pytorch/torch/csrc/DataLoader.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/init_flatbuffer_module.cpp -> /pytorch/torch/csrc/init_flatbuffer_module.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/Dtype.cpp -> /pytorch/torch/csrc/Dtype.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/QScheme.cpp -> /pytorch/torch/csrc/QScheme.cpp [skipped, already hipified] +#10 23.52 /pytorch/torch/csrc/python_dimname.h -> /pytorch/torch/csrc/python_dimname.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/Storage.cpp -> /pytorch/torch/csrc/Storage.cpp [ok] +#10 23.53 /pytorch/torch/csrc/Generator.cpp -> /pytorch/torch/csrc/Generator.cpp [ok] +#10 23.53 /pytorch/torch/csrc/onnx/init.h -> /pytorch/torch/csrc/onnx/init.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/onnx/onnx.h -> /pytorch/torch/csrc/onnx/onnx.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/onnx/init.cpp -> /pytorch/torch/csrc/onnx/init.cpp [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/onnx/diagnostics/diagnostics.h -> /pytorch/torch/csrc/onnx/diagnostics/diagnostics.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/onnx/diagnostics/generated/rules.h -> /pytorch/torch/csrc/onnx/diagnostics/generated/rules.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/multiprocessing/init.h -> /pytorch/torch/csrc/multiprocessing/init.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/multiprocessing/init.cpp -> /pytorch/torch/csrc/multiprocessing/init.cpp [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/thread_pool.h -> /pytorch/torch/csrc/lazy/core/thread_pool.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/ir_metadata.h -> /pytorch/torch/csrc/lazy/core/ir_metadata.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/trie.h -> /pytorch/torch/csrc/lazy/core/trie.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/helpers.h -> /pytorch/torch/csrc/lazy/core/helpers.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/ir_dump_util.h -> /pytorch/torch/csrc/lazy/core/ir_dump_util.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/tensor.h -> /pytorch/torch/csrc/lazy/core/tensor.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/metrics.h -> /pytorch/torch/csrc/lazy/core/metrics.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/config.h -> /pytorch/torch/csrc/lazy/core/config.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/ir_util.h -> /pytorch/torch/csrc/lazy/core/ir_util.h [skipped, already hipified] +#10 23.53 /pytorch/torch/csrc/lazy/core/unique.h -> /pytorch/torch/csrc/lazy/core/unique.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/shape_inference.cpp -> /pytorch/torch/csrc/lazy/core/shape_inference.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/ir.h -> /pytorch/torch/csrc/lazy/core/ir.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/util.h -> /pytorch/torch/csrc/lazy/core/util.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/shape.cpp -> /pytorch/torch/csrc/lazy/core/shape.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/permutation_util.h -> /pytorch/torch/csrc/lazy/core/permutation_util.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/permutation_util.cpp -> /pytorch/torch/csrc/lazy/core/permutation_util.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/lazy_graph_executor.cpp -> /pytorch/torch/csrc/lazy/core/lazy_graph_executor.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/tensor_util.cpp -> /pytorch/torch/csrc/lazy/core/tensor_util.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/tensor.cpp -> /pytorch/torch/csrc/lazy/core/tensor.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/tensor_impl.cpp -> /pytorch/torch/csrc/lazy/core/tensor_impl.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/multi_wait.cpp -> /pytorch/torch/csrc/lazy/core/multi_wait.cpp [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/hash.h -> /pytorch/torch/csrc/lazy/core/hash.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/shape_inference.h -> /pytorch/torch/csrc/lazy/core/shape_inference.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/multi_wait.h -> /pytorch/torch/csrc/lazy/core/multi_wait.h [skipped, already hipified] +#10 23.54 /pytorch/torch/csrc/lazy/core/tensor_impl.h -> /pytorch/torch/csrc/lazy/core/tensor_impl.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/metrics.cpp -> /pytorch/torch/csrc/lazy/core/metrics.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/helpers.cpp -> /pytorch/torch/csrc/lazy/core/helpers.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/trie.cpp -> /pytorch/torch/csrc/lazy/core/trie.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/debug_util.h -> /pytorch/torch/csrc/lazy/core/debug_util.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/config.cpp -> /pytorch/torch/csrc/lazy/core/config.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/tensor_util.h -> /pytorch/torch/csrc/lazy/core/tensor_util.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/shape.h -> /pytorch/torch/csrc/lazy/core/shape.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/debug_util.cpp -> /pytorch/torch/csrc/lazy/core/debug_util.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ir_builder.h -> /pytorch/torch/csrc/lazy/core/ir_builder.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ir.cpp -> /pytorch/torch/csrc/lazy/core/ir.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/cache.h -> /pytorch/torch/csrc/lazy/core/cache.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ir_dump_util.cpp -> /pytorch/torch/csrc/lazy/core/ir_dump_util.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/thread_pool.cpp -> /pytorch/torch/csrc/lazy/core/thread_pool.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ir_util.cpp -> /pytorch/torch/csrc/lazy/core/ir_util.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/hash.cpp -> /pytorch/torch/csrc/lazy/core/hash.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/lazy_graph_executor.h -> /pytorch/torch/csrc/lazy/core/lazy_graph_executor.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/dynamic_ir.h -> /pytorch/torch/csrc/lazy/core/dynamic_ir.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ir_metadata.cpp -> /pytorch/torch/csrc/lazy/core/ir_metadata.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ops/utils.h -> /pytorch/torch/csrc/lazy/core/ops/utils.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ops/utils.cpp -> /pytorch/torch/csrc/lazy/core/ops/utils.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp -> /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> /pytorch/torch/csrc/lazy/core/internal_ops/ltc_ops.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/ts_backend/ts_node.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_node.h [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/ts_backend/ts_native_functions.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_native_functions.cpp [skipped, already hipified] +#10 23.55 /pytorch/torch/csrc/lazy/ts_backend/config.h -> /pytorch/torch/csrc/lazy/ts_backend/config.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_node.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_node.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.cpp -> /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp -> /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/config.cpp -> /pytorch/torch/csrc/lazy/ts_backend/config.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ir_builder.h -> /pytorch/torch/csrc/lazy/ts_backend/ir_builder.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.h -> /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/generic.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/generic.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/to_copy.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/to_copy.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/generic.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/generic.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/backend_device.cpp -> /pytorch/torch/csrc/lazy/backend/backend_device.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/backend_interface.h -> /pytorch/torch/csrc/lazy/backend/backend_interface.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/backend_interface.cpp -> /pytorch/torch/csrc/lazy/backend/backend_interface.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/backend_data.h -> /pytorch/torch/csrc/lazy/backend/backend_data.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/backend_device.h -> /pytorch/torch/csrc/lazy/backend/backend_device.h [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/lowering_context.cpp -> /pytorch/torch/csrc/lazy/backend/lowering_context.cpp [skipped, already hipified] +#10 23.56 /pytorch/torch/csrc/lazy/backend/lowering_context.h -> /pytorch/torch/csrc/lazy/backend/lowering_context.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/lazy/python/init.h -> /pytorch/torch/csrc/lazy/python/init.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/lazy/python/python_util.h -> /pytorch/torch/csrc/lazy/python/python_util.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/lazy/python/python_util.cpp -> /pytorch/torch/csrc/lazy/python/python_util.cpp [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/lazy/python/init.cpp -> /pytorch/torch/csrc/lazy/python/init.cpp [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/tensor_numpy.h -> /pytorch/torch/csrc/utils/tensor_numpy.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/tensor_new.cpp -> /pytorch/torch/csrc/utils/tensor_new.cpp [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/object_ptr.h -> /pytorch/torch/csrc/utils/object_ptr.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/cuda_enabled.h -> /pytorch/torch/csrc/utils/cuda_enabled.h [ok] +#10 23.57 /pytorch/torch/csrc/utils/tensor_dtypes.h -> /pytorch/torch/csrc/utils/tensor_dtypes.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/schema_info.h -> /pytorch/torch/csrc/utils/schema_info.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/numpy_stub.h -> /pytorch/torch/csrc/utils/numpy_stub.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/byte_order.cpp -> /pytorch/torch/csrc/utils/byte_order.cpp [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/structseq.cpp -> /pytorch/torch/csrc/utils/structseq.cpp [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/init.h -> /pytorch/torch/csrc/utils/init.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/cuda_lazy_init.h -> /pytorch/torch/csrc/utils/cuda_lazy_init.h [skipped, already hipified] +#10 23.57 /pytorch/torch/csrc/utils/cuda_lazy_init.cpp -> /pytorch/torch/csrc/utils/cuda_lazy_init.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/python_arg_parser.cpp -> /pytorch/torch/csrc/utils/python_arg_parser.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/tensor_list.cpp -> /pytorch/torch/csrc/utils/tensor_list.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/tensor_memoryformats.h -> /pytorch/torch/csrc/utils/tensor_memoryformats.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/nested.h -> /pytorch/torch/csrc/utils/nested.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/pythoncapi_compat.h -> /pytorch/torch/csrc/utils/pythoncapi_compat.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/pybind.h -> /pytorch/torch/csrc/utils/pybind.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/out_types.cpp -> /pytorch/torch/csrc/utils/out_types.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/python_symnode.cpp -> /pytorch/torch/csrc/utils/python_symnode.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/tensor_layouts.cpp -> /pytorch/torch/csrc/utils/tensor_layouts.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/python_symnode.h -> /pytorch/torch/csrc/utils/python_symnode.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/variadic.cpp -> /pytorch/torch/csrc/utils/variadic.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/tensor_apply.cpp -> /pytorch/torch/csrc/utils/tensor_apply.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/memory.h -> /pytorch/torch/csrc/utils/memory.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/verbose.cpp -> /pytorch/torch/csrc/utils/verbose.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/tensor_qschemes.h -> /pytorch/torch/csrc/utils/tensor_qschemes.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/python_dispatch.cpp -> /pytorch/torch/csrc/utils/python_dispatch.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/six.h -> /pytorch/torch/csrc/utils/six.h [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/tensor_dtypes.cpp -> /pytorch/torch/csrc/utils/tensor_dtypes.cpp [skipped, already hipified] +#10 23.58 /pytorch/torch/csrc/utils/python_numbers.h -> /pytorch/torch/csrc/utils/python_numbers.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/tensor_flatten.h -> /pytorch/torch/csrc/utils/tensor_flatten.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/tensor_numpy.cpp -> /pytorch/torch/csrc/utils/tensor_numpy.cpp [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/invalid_arguments.h -> /pytorch/torch/csrc/utils/invalid_arguments.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/tensor_layouts.h -> /pytorch/torch/csrc/utils/tensor_layouts.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/disable_torch_function.cpp -> /pytorch/torch/csrc/utils/disable_torch_function.cpp [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/python_tuples.h -> /pytorch/torch/csrc/utils/python_tuples.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/throughput_benchmark.h -> /pytorch/torch/csrc/utils/throughput_benchmark.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/variadic.h -> /pytorch/torch/csrc/utils/variadic.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/pycfunction_helpers.h -> /pytorch/torch/csrc/utils/pycfunction_helpers.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/schema_info.cpp -> /pytorch/torch/csrc/utils/schema_info.cpp [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/auto_gil.h -> /pytorch/torch/csrc/utils/auto_gil.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/throughput_benchmark-inl.h -> /pytorch/torch/csrc/utils/throughput_benchmark-inl.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/python_stub.h -> /pytorch/torch/csrc/utils/python_stub.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/tensor_new.h -> /pytorch/torch/csrc/utils/tensor_new.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/cpp_stacktraces.cpp -> /pytorch/torch/csrc/utils/cpp_stacktraces.cpp [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/disable_torch_function.h -> /pytorch/torch/csrc/utils/disable_torch_function.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/python_dispatch.h -> /pytorch/torch/csrc/utils/python_dispatch.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/cpp_stacktraces.h -> /pytorch/torch/csrc/utils/cpp_stacktraces.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/throughput_benchmark.cpp -> /pytorch/torch/csrc/utils/throughput_benchmark.cpp [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/python_scalars.h -> /pytorch/torch/csrc/utils/python_scalars.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/tensor_apply.h -> /pytorch/torch/csrc/utils/tensor_apply.h [skipped, already hipified] +#10 23.59 /pytorch/torch/csrc/utils/out_types.h -> /pytorch/torch/csrc/utils/out_types.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/python_arg_parser.h -> /pytorch/torch/csrc/utils/python_arg_parser.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/tensor_list.h -> /pytorch/torch/csrc/utils/tensor_list.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/python_compat.h -> /pytorch/torch/csrc/utils/python_compat.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/tensor_memoryformats.cpp -> /pytorch/torch/csrc/utils/tensor_memoryformats.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/python_torch_function_mode.h -> /pytorch/torch/csrc/utils/python_torch_function_mode.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/pybind.cpp -> /pytorch/torch/csrc/utils/pybind.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/structseq.h -> /pytorch/torch/csrc/utils/structseq.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/python_strings.h -> /pytorch/torch/csrc/utils/python_strings.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/tensor_flatten.cpp -> /pytorch/torch/csrc/utils/tensor_flatten.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/nested.cpp -> /pytorch/torch/csrc/utils/nested.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/object_ptr.cpp -> /pytorch/torch/csrc/utils/object_ptr.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/invalid_arguments.cpp -> /pytorch/torch/csrc/utils/invalid_arguments.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/tensor_qschemes.cpp -> /pytorch/torch/csrc/utils/tensor_qschemes.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/byte_order.h -> /pytorch/torch/csrc/utils/byte_order.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/tensor_types.h -> /pytorch/torch/csrc/utils/tensor_types.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/init.cpp -> /pytorch/torch/csrc/utils/init.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/torch_dispatch_mode.h -> /pytorch/torch/csrc/utils/torch_dispatch_mode.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/utils/tensor_types.cpp -> /pytorch/torch/csrc/utils/tensor_types.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/functorch/init.h -> /pytorch/torch/csrc/functorch/init.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/functorch/init.cpp -> /pytorch/torch/csrc/functorch/init.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/profiler/kineto_shim.h -> /pytorch/torch/csrc/profiler/kineto_shim.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/profiler/kineto_client_interface.cpp -> /pytorch/torch/csrc/profiler/kineto_client_interface.cpp [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/profiler/perf.h -> /pytorch/torch/csrc/profiler/perf.h [skipped, already hipified] +#10 23.60 /pytorch/torch/csrc/profiler/util.h -> /pytorch/torch/csrc/profiler/util.h [ok] +#10 23.60 /pytorch/torch/csrc/profiler/perf.cpp -> /pytorch/torch/csrc/profiler/perf.cpp [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/collection.h -> /pytorch/torch/csrc/profiler/collection.h [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/util.cpp -> /pytorch/torch/csrc/profiler/util.cpp [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/events.h -> /pytorch/torch/csrc/profiler/events.h [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/data_flow.cpp -> /pytorch/torch/csrc/profiler/data_flow.cpp [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/collection.cpp -> /pytorch/torch/csrc/profiler/collection.cpp [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/perf-inl.h -> /pytorch/torch/csrc/profiler/perf-inl.h [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/kineto_shim.cpp -> /pytorch/torch/csrc/profiler/kineto_shim.cpp [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/containers.h -> /pytorch/torch/csrc/profiler/containers.h [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/api.h -> /pytorch/torch/csrc/profiler/api.h [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/data_flow.h -> /pytorch/torch/csrc/profiler/data_flow.h [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/standalone/nvtx_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/nvtx_observer.cpp [skipped, already hipified] +#10 23.61 /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.h -> /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/standalone/itt_observer.h -> /pytorch/torch/csrc/profiler/standalone/itt_observer.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/standalone/nvtx_observer.h -> /pytorch/torch/csrc/profiler/standalone/nvtx_observer.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/standalone/itt_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/itt_observer.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/stubs/base.cpp -> /pytorch/torch/csrc/profiler/stubs/base.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/stubs/base.h -> /pytorch/torch/csrc/profiler/stubs/base.h [ok] +#10 23.62 /pytorch/torch/csrc/profiler/stubs/itt.cpp -> /pytorch/torch/csrc/profiler/stubs/itt.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/stubs/cuda.cpp -> /pytorch/torch/csrc/profiler/stubs/cuda.cpp [ok] +#10 23.62 /pytorch/torch/csrc/profiler/orchestration/vulkan.h -> /pytorch/torch/csrc/profiler/orchestration/vulkan.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/orchestration/observer.h -> /pytorch/torch/csrc/profiler/orchestration/observer.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/orchestration/python_tracer.h -> /pytorch/torch/csrc/profiler/orchestration/python_tracer.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/orchestration/python_tracer.cpp -> /pytorch/torch/csrc/profiler/orchestration/python_tracer.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/orchestration/observer.cpp -> /pytorch/torch/csrc/profiler/orchestration/observer.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/orchestration/vulkan.cpp -> /pytorch/torch/csrc/profiler/orchestration/vulkan.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/python/init.h -> /pytorch/torch/csrc/profiler/python/init.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/python/pybind.h -> /pytorch/torch/csrc/profiler/python/pybind.h [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/profiler/python/init.cpp -> /pytorch/torch/csrc/profiler/python/init.cpp [skipped, already hipified] +#10 23.62 /pytorch/torch/csrc/cuda/nccl.cpp -> /pytorch/torch/csrc/cuda/nccl.cpp [ok] +#10 23.62 /pytorch/torch/csrc/cuda/python_nccl.cpp -> /pytorch/torch/csrc/cuda/python_nccl.cpp [ok] +#10 23.62 /pytorch/torch/csrc/cuda/Event.h -> /pytorch/torch/csrc/cuda/Event.h [ok] +#10 23.62 /pytorch/torch/csrc/cuda/Graph.cpp -> /pytorch/torch/csrc/cuda/Graph.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/Stream.cpp -> /pytorch/torch/csrc/cuda/Stream.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/nccl.h -> /pytorch/torch/csrc/cuda/nccl.h [ok] +#10 23.63 /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.h -> /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.h [ok] +#10 23.63 /pytorch/torch/csrc/cuda/comm.h -> /pytorch/torch/csrc/cuda/comm.h [ok] +#10 23.63 /pytorch/torch/csrc/cuda/utils.cpp -> /pytorch/torch/csrc/cuda/utils.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/comm.cpp -> /pytorch/torch/csrc/cuda/comm.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/python_comm.h -> /pytorch/torch/csrc/cuda/python_comm.h [skipped, already hipified] +#10 23.63 /pytorch/torch/csrc/cuda/Module.cpp -> /pytorch/torch/csrc/cuda/Module.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/memory_snapshot.h -> /pytorch/torch/csrc/cuda/memory_snapshot.h [skipped, already hipified] +#10 23.63 /pytorch/torch/csrc/cuda/Stream.h -> /pytorch/torch/csrc/cuda/Stream.h [ok] +#10 23.63 /pytorch/torch/csrc/cuda/python_nccl.h -> /pytorch/torch/csrc/cuda/python_nccl.h [skipped, already hipified] +#10 23.63 /pytorch/torch/csrc/cuda/python_comm.cpp -> /pytorch/torch/csrc/cuda/python_comm.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/memory_snapshot.cpp -> /pytorch/torch/csrc/cuda/memory_snapshot.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/THCP.h -> /pytorch/torch/csrc/cuda/THCP.h [skipped, already hipified] +#10 23.63 /pytorch/torch/csrc/cuda/Event.cpp -> /pytorch/torch/csrc/cuda/Event.cpp [ok] +#10 23.63 /pytorch/torch/csrc/cuda/device_set.h -> /pytorch/torch/csrc/cuda/device_set.h [skipped, already hipified] +#10 23.63 /pytorch/torch/csrc/cuda/Tensor.cpp -> /pytorch/torch/csrc/cuda/Tensor.cpp [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.cpp -> /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.cpp [ok] +#10 23.64 /pytorch/torch/csrc/cuda/Module.h -> /pytorch/torch/csrc/cuda/Module.h [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/cuda/shared/cudnn.cpp -> /pytorch/torch/csrc/cuda/shared/cudnn.cpp [ok] +#10 23.64 /pytorch/torch/csrc/cuda/shared/cudart.cpp -> /pytorch/torch/csrc/cuda/shared/cudart.cpp [ok] +#10 23.64 /pytorch/torch/csrc/cuda/shared/nvtx.cpp -> /pytorch/torch/csrc/cuda/shared/nvtx.cpp [ok] +#10 23.64 /pytorch/torch/csrc/jit/jit_log.cpp -> /pytorch/torch/csrc/jit/jit_log.cpp [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/jit/jit_log.h -> /pytorch/torch/csrc/jit/jit_log.h [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/jit/resource_guard.h -> /pytorch/torch/csrc/jit/resource_guard.h [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/jit/jit_opt_limit.h -> /pytorch/torch/csrc/jit/jit_opt_limit.h [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/jit/jit_opt_limit.cpp -> /pytorch/torch/csrc/jit/jit_opt_limit.cpp [skipped, already hipified] +#10 23.64 /pytorch/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> /pytorch/torch/csrc/jit/serialization/mobile_bytecode_generated.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/export.cpp -> /pytorch/torch/csrc/jit/serialization/export.cpp [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/import_export_constants.h -> /pytorch/torch/csrc/jit/serialization/import_export_constants.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/export.h -> /pytorch/torch/csrc/jit/serialization/export.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/import_export_functions.h -> /pytorch/torch/csrc/jit/serialization/import_export_functions.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/import.h -> /pytorch/torch/csrc/jit/serialization/import.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/source_range_serialization_impl.h -> /pytorch/torch/csrc/jit/serialization/source_range_serialization_impl.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/onnx.h -> /pytorch/torch/csrc/jit/serialization/onnx.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/import_read.h -> /pytorch/torch/csrc/jit/serialization/import_read.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/import_export_helpers.h -> /pytorch/torch/csrc/jit/serialization/import_export_helpers.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/import.cpp -> /pytorch/torch/csrc/jit/serialization/import.cpp [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/source_range_serialization.h -> /pytorch/torch/csrc/jit/serialization/source_range_serialization.h [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/type_name_uniquer.cpp -> /pytorch/torch/csrc/jit/serialization/type_name_uniquer.cpp [skipped, already hipified] +#10 23.65 /pytorch/torch/csrc/jit/serialization/type_name_uniquer.h -> /pytorch/torch/csrc/jit/serialization/type_name_uniquer.h [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.cpp -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/export_bytecode.h -> /pytorch/torch/csrc/jit/serialization/export_bytecode.h [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/storage_context.h -> /pytorch/torch/csrc/jit/serialization/storage_context.h [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/pickle.h -> /pytorch/torch/csrc/jit/serialization/pickle.h [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/export_module.cpp -> /pytorch/torch/csrc/jit/serialization/export_module.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/import_read.cpp -> /pytorch/torch/csrc/jit/serialization/import_read.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.cpp -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/python_print.cpp -> /pytorch/torch/csrc/jit/serialization/python_print.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/onnx.cpp -> /pytorch/torch/csrc/jit/serialization/onnx.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/import_export_helpers.cpp -> /pytorch/torch/csrc/jit/serialization/import_export_helpers.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/pickle.cpp -> /pytorch/torch/csrc/jit/serialization/pickle.cpp [skipped, already hipified] +#10 23.66 /pytorch/torch/csrc/jit/serialization/python_print.h -> /pytorch/torch/csrc/jit/serialization/python_print.h [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp -> /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/pickler.h -> /pytorch/torch/csrc/jit/serialization/pickler.h [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.h -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.h [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/import_legacy.h -> /pytorch/torch/csrc/jit/serialization/import_legacy.h [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/pickler.cpp -> /pytorch/torch/csrc/jit/serialization/pickler.cpp [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/unpickler.cpp -> /pytorch/torch/csrc/jit/serialization/unpickler.cpp [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/source_range_serialization.cpp -> /pytorch/torch/csrc/jit/serialization/source_range_serialization.cpp [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/export_bytecode.cpp -> /pytorch/torch/csrc/jit/serialization/export_bytecode.cpp [skipped, already hipified] +#10 23.67 /pytorch/torch/csrc/jit/serialization/unpickler.h -> /pytorch/torch/csrc/jit/serialization/unpickler.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/serialization/import_legacy.cpp -> /pytorch/torch/csrc/jit/serialization/import_legacy.cpp [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/serialization/import_source.h -> /pytorch/torch/csrc/jit/serialization/import_source.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/serialization/import_source.cpp -> /pytorch/torch/csrc/jit/serialization/import_source.cpp [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/expr.cpp -> /pytorch/torch/csrc/jit/tensorexpr/expr.cpp [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.cpp [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/tensor.h -> /pytorch/torch/csrc/jit/tensorexpr/tensor.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp -> /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/half_support.h -> /pytorch/torch/csrc/jit/tensorexpr/half_support.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.h -> /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.h [skipped, already hipified] +#10 23.68 /pytorch/torch/csrc/jit/tensorexpr/codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/codegen.cpp [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/loopnest.h -> /pytorch/torch/csrc/jit/tensorexpr/loopnest.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/ir.h -> /pytorch/torch/csrc/jit/tensorexpr/ir.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/graph_opt.h -> /pytorch/torch/csrc/jit/tensorexpr/graph_opt.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.h -> /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/lowerings.h -> /pytorch/torch/csrc/jit/tensorexpr/lowerings.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/stmt.h -> /pytorch/torch/csrc/jit/tensorexpr/stmt.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/tensor.cpp -> /pytorch/torch/csrc/jit/tensorexpr/tensor.cpp [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.h [ok] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.cpp -> /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.cpp [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/reduction.cpp -> /pytorch/torch/csrc/jit/tensorexpr/reduction.cpp [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/types.h -> /pytorch/torch/csrc/jit/tensorexpr/types.h [skipped, already hipified] +#10 23.69 /pytorch/torch/csrc/jit/tensorexpr/hash_provider.cpp -> /pytorch/torch/csrc/jit/tensorexpr/hash_provider.cpp [skipped, already hipified] +#10 23.70 /pytorch/torch/csrc/jit/tensorexpr/lowerings.cpp -> /pytorch/torch/csrc/jit/tensorexpr/lowerings.cpp [skipped, already hipified] +#10 23.70 /pytorch/torch/csrc/jit/tensorexpr/codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/codegen.h [skipped, already hipified] +#10 23.70 /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.cpp [skipped, already hipified] +#10 23.71 /pytorch/torch/csrc/jit/tensorexpr/loopnest.cpp -> /pytorch/torch/csrc/jit/tensorexpr/loopnest.cpp [skipped, already hipified] +#10 23.71 /pytorch/torch/csrc/jit/tensorexpr/external_functions.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions.cpp [skipped, already hipified] +#10 23.71 /pytorch/torch/csrc/jit/tensorexpr/hash_provider.h -> /pytorch/torch/csrc/jit/tensorexpr/hash_provider.h [skipped, already hipified] +#10 23.71 /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.cpp -> /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.cpp [skipped, already hipified] +#10 23.72 /pytorch/torch/csrc/jit/tensorexpr/registerizer.h -> /pytorch/torch/csrc/jit/tensorexpr/registerizer.h [skipped, already hipified] +#10 23.72 /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.cpp [skipped, already hipified] +#10 23.72 /pytorch/torch/csrc/jit/tensorexpr/analysis.h -> /pytorch/torch/csrc/jit/tensorexpr/analysis.h [skipped, already hipified] +#10 23.73 /pytorch/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp [skipped, already hipified] +#10 23.73 /pytorch/torch/csrc/jit/tensorexpr/kernel.h -> /pytorch/torch/csrc/jit/tensorexpr/kernel.h [skipped, already hipified] +#10 23.73 /pytorch/torch/csrc/jit/tensorexpr/var_substitutor.h -> /pytorch/torch/csrc/jit/tensorexpr/var_substitutor.h [skipped, already hipified] +#10 23.73 /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.cpp -> /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.cpp [ok] +#10 23.73 /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp -> /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp [skipped, already hipified] +#10 23.74 /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp -> /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp [skipped, already hipified] +#10 23.74 /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.h [skipped, already hipified] +#10 23.74 /pytorch/torch/csrc/jit/tensorexpr/cuda_random.h -> /pytorch/torch/csrc/jit/tensorexpr/cuda_random.h [skipped, already hipified] +#10 23.74 /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.cpp [skipped, already hipified] +#10 23.74 /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.cpp -> /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.cpp [skipped, already hipified] +#10 23.74 /pytorch/torch/csrc/jit/tensorexpr/eval.cpp -> /pytorch/torch/csrc/jit/tensorexpr/eval.cpp [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/kernel.cpp -> /pytorch/torch/csrc/jit/tensorexpr/kernel.cpp [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/ir.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir.cpp [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/eval.h -> /pytorch/torch/csrc/jit/tensorexpr/eval.h [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.cpp [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.cpp [ok] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.cpp -> /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.cpp [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/reduction.h -> /pytorch/torch/csrc/jit/tensorexpr/reduction.h [skipped, already hipified] +#10 23.75 /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.cpp [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/expr.h -> /pytorch/torch/csrc/jit/tensorexpr/expr.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/registerizer.cpp -> /pytorch/torch/csrc/jit/tensorexpr/registerizer.cpp [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> /pytorch/torch/csrc/jit/tensorexpr/cpp_intrinsics.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/exceptions.h -> /pytorch/torch/csrc/jit/tensorexpr/exceptions.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/ir_printer.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_printer.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/fwd_decls.h -> /pytorch/torch/csrc/jit/tensorexpr/fwd_decls.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/external_functions.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/types.cpp -> /pytorch/torch/csrc/jit/tensorexpr/types.cpp [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/block_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/block_codegen.h [skipped, already hipified] +#10 23.76 /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.h -> /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.h -> /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/block_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/block_codegen.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/graph_opt.cpp -> /pytorch/torch/csrc/jit/tensorexpr/graph_opt.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/operators.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/operators.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/norm.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/norm.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/norm.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/norm.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/misc.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/misc.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.cpp [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.h [skipped, already hipified] +#10 23.77 /pytorch/torch/csrc/jit/tensorexpr/operators/misc.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/misc.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_debug_handler.cpp -> /pytorch/torch/csrc/jit/backends/backend_debug_handler.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_interface.h -> /pytorch/torch/csrc/jit/backends/backend_interface.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_debug_info.h -> /pytorch/torch/csrc/jit/backends/backend_debug_info.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_init.cpp -> /pytorch/torch/csrc/jit/backends/backend_init.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_resolver.cpp -> /pytorch/torch/csrc/jit/backends/backend_resolver.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_init.h -> /pytorch/torch/csrc/jit/backends/backend_init.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_interface.cpp -> /pytorch/torch/csrc/jit/backends/backend_interface.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend.h -> /pytorch/torch/csrc/jit/backends/backend.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_preprocess.h -> /pytorch/torch/csrc/jit/backends/backend_preprocess.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_resolver.h -> /pytorch/torch/csrc/jit/backends/backend_resolver.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_detail.cpp -> /pytorch/torch/csrc/jit/backends/backend_detail.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_debug_info.cpp -> /pytorch/torch/csrc/jit/backends/backend_debug_info.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_debug_handler.h -> /pytorch/torch/csrc/jit/backends/backend_debug_handler.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_exception.h -> /pytorch/torch/csrc/jit/backends/backend_exception.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/backend_detail.h -> /pytorch/torch/csrc/jit/backends/backend_detail.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/cpp/context.h -> /pytorch/torch/csrc/jit/backends/coreml/cpp/context.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/cpp/backend.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/backend.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/cpp/context.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/context.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/cpp/preprocess.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/preprocess.cpp [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h [skipped, already hipified] +#10 23.78 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_lib.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_lib.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_preprocess.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_preprocess.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> /pytorch/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp -> /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp -> /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/frontend/parser_constants.h -> /pytorch/torch/csrc/jit/frontend/parser_constants.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/frontend/inline_loop_condition.h -> /pytorch/torch/csrc/jit/frontend/inline_loop_condition.h [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/frontend/schema_matching.cpp -> /pytorch/torch/csrc/jit/frontend/schema_matching.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp -> /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp [skipped, already hipified] +#10 23.79 /pytorch/torch/csrc/jit/frontend/name_mangler.h -> /pytorch/torch/csrc/jit/frontend/name_mangler.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/ir_emitter.cpp -> /pytorch/torch/csrc/jit/frontend/ir_emitter.cpp [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/script_type_parser.h -> /pytorch/torch/csrc/jit/frontend/script_type_parser.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/convert_to_ssa.cpp -> /pytorch/torch/csrc/jit/frontend/convert_to_ssa.cpp [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/function_schema_parser.cpp -> /pytorch/torch/csrc/jit/frontend/function_schema_parser.cpp [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/function_schema_parser.h -> /pytorch/torch/csrc/jit/frontend/function_schema_parser.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/convert_to_ssa.h -> /pytorch/torch/csrc/jit/frontend/convert_to_ssa.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/edit_distance.h -> /pytorch/torch/csrc/jit/frontend/edit_distance.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/schema_type_parser.h -> /pytorch/torch/csrc/jit/frontend/schema_type_parser.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/concrete_module_type.cpp -> /pytorch/torch/csrc/jit/frontend/concrete_module_type.cpp [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/sugared_value.h -> /pytorch/torch/csrc/jit/frontend/sugared_value.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/builtin_functions.h -> /pytorch/torch/csrc/jit/frontend/builtin_functions.h [skipped, already hipified] +#10 23.81 /pytorch/torch/csrc/jit/frontend/parser.cpp -> /pytorch/torch/csrc/jit/frontend/parser.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/source_ref.h -> /pytorch/torch/csrc/jit/frontend/source_ref.h [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/sugared_value.cpp -> /pytorch/torch/csrc/jit/frontend/sugared_value.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/script_type_parser.cpp -> /pytorch/torch/csrc/jit/frontend/script_type_parser.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/source_range.cpp -> /pytorch/torch/csrc/jit/frontend/source_range.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/exit_transforms.cpp -> /pytorch/torch/csrc/jit/frontend/exit_transforms.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/parser.h -> /pytorch/torch/csrc/jit/frontend/parser.h [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/concrete_module_type.h -> /pytorch/torch/csrc/jit/frontend/concrete_module_type.h [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/ir_emitter.h -> /pytorch/torch/csrc/jit/frontend/ir_emitter.h [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/strtod.cpp -> /pytorch/torch/csrc/jit/frontend/strtod.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/lexer.cpp -> /pytorch/torch/csrc/jit/frontend/lexer.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/mini_environment.h -> /pytorch/torch/csrc/jit/frontend/mini_environment.h [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/name_mangler.cpp -> /pytorch/torch/csrc/jit/frontend/name_mangler.cpp [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/versioned_symbols.h -> /pytorch/torch/csrc/jit/frontend/versioned_symbols.h [skipped, already hipified] +#10 23.82 /pytorch/torch/csrc/jit/frontend/error_report.h -> /pytorch/torch/csrc/jit/frontend/error_report.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/source_range.h -> /pytorch/torch/csrc/jit/frontend/source_range.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/schema_matching.h -> /pytorch/torch/csrc/jit/frontend/schema_matching.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/builtin_functions.cpp -> /pytorch/torch/csrc/jit/frontend/builtin_functions.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/edit_distance.cpp -> /pytorch/torch/csrc/jit/frontend/edit_distance.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/tracer.h -> /pytorch/torch/csrc/jit/frontend/tracer.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/error_report.cpp -> /pytorch/torch/csrc/jit/frontend/error_report.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/tree_views.cpp -> /pytorch/torch/csrc/jit/frontend/tree_views.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/parse_string_literal.h -> /pytorch/torch/csrc/jit/frontend/parse_string_literal.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/inline_loop_condition.cpp -> /pytorch/torch/csrc/jit/frontend/inline_loop_condition.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/schema_type_parser.cpp -> /pytorch/torch/csrc/jit/frontend/schema_type_parser.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/tree.h -> /pytorch/torch/csrc/jit/frontend/tree.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/exit_transforms.h -> /pytorch/torch/csrc/jit/frontend/exit_transforms.h [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/tracer.cpp -> /pytorch/torch/csrc/jit/frontend/tracer.cpp [skipped, already hipified] +#10 23.83 /pytorch/torch/csrc/jit/frontend/strtod.h -> /pytorch/torch/csrc/jit/frontend/strtod.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/frontend/tree_views.h -> /pytorch/torch/csrc/jit/frontend/tree_views.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/frontend/versioned_symbols.cpp -> /pytorch/torch/csrc/jit/frontend/versioned_symbols.cpp [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/frontend/resolver.h -> /pytorch/torch/csrc/jit/frontend/resolver.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/frontend/lexer.h -> /pytorch/torch/csrc/jit/frontend/lexer.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/cuda/cuda.h -> /pytorch/torch/csrc/jit/cuda/cuda.h [ok] +#10 23.84 /pytorch/torch/csrc/jit/mobile/profiler_edge.h -> /pytorch/torch/csrc/jit/mobile/profiler_edge.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/type_parser.h -> /pytorch/torch/csrc/jit/mobile/type_parser.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/module.h -> /pytorch/torch/csrc/jit/mobile/module.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.cpp -> /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.cpp [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.cpp -> /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.cpp [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/parse_operators.h -> /pytorch/torch/csrc/jit/mobile/parse_operators.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/parse_bytecode.cpp -> /pytorch/torch/csrc/jit/mobile/parse_bytecode.cpp [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.h -> /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.h [skipped, already hipified] +#10 23.84 /pytorch/torch/csrc/jit/mobile/quantization.h -> /pytorch/torch/csrc/jit/mobile/quantization.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/observer.h -> /pytorch/torch/csrc/jit/mobile/observer.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.cpp -> /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.cpp [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/import.h -> /pytorch/torch/csrc/jit/mobile/import.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/code.h -> /pytorch/torch/csrc/jit/mobile/code.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/module.cpp -> /pytorch/torch/csrc/jit/mobile/module.cpp [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/profiler_edge.cpp -> /pytorch/torch/csrc/jit/mobile/profiler_edge.cpp [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/import.cpp -> /pytorch/torch/csrc/jit/mobile/import.cpp [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/import_data.h -> /pytorch/torch/csrc/jit/mobile/import_data.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.h -> /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/upgrader_mobile.h -> /pytorch/torch/csrc/jit/mobile/upgrader_mobile.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/file_format.h -> /pytorch/torch/csrc/jit/mobile/file_format.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/import_export_common.h -> /pytorch/torch/csrc/jit/mobile/import_export_common.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/parse_bytecode.h -> /pytorch/torch/csrc/jit/mobile/parse_bytecode.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/parse_operators.cpp -> /pytorch/torch/csrc/jit/mobile/parse_operators.cpp [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/function.h -> /pytorch/torch/csrc/jit/mobile/function.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/debug_info.h -> /pytorch/torch/csrc/jit/mobile/debug_info.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.h -> /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/prim_ops_registery.h -> /pytorch/torch/csrc/jit/mobile/prim_ops_registery.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/frame.h -> /pytorch/torch/csrc/jit/mobile/frame.h [skipped, already hipified] +#10 23.85 /pytorch/torch/csrc/jit/mobile/prim_ops_registery.cpp -> /pytorch/torch/csrc/jit/mobile/prim_ops_registery.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/upgrader_mobile.cpp -> /pytorch/torch/csrc/jit/mobile/upgrader_mobile.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/quantization.cpp -> /pytorch/torch/csrc/jit/mobile/quantization.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/interpreter.h -> /pytorch/torch/csrc/jit/mobile/interpreter.h [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/method.h -> /pytorch/torch/csrc/jit/mobile/method.h [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/observer.cpp -> /pytorch/torch/csrc/jit/mobile/observer.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/function.cpp -> /pytorch/torch/csrc/jit/mobile/function.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/import_data.cpp -> /pytorch/torch/csrc/jit/mobile/import_data.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/interpreter.cpp -> /pytorch/torch/csrc/jit/mobile/interpreter.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/type_parser.cpp -> /pytorch/torch/csrc/jit/mobile/type_parser.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/debug_info.cpp -> /pytorch/torch/csrc/jit/mobile/debug_info.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/random.cpp -> /pytorch/torch/csrc/jit/mobile/train/random.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/random.h -> /pytorch/torch/csrc/jit/mobile/train/random.h [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/export_data.cpp -> /pytorch/torch/csrc/jit/mobile/train/export_data.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/sequential.h -> /pytorch/torch/csrc/jit/mobile/train/sequential.h [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/export_data.h -> /pytorch/torch/csrc/jit/mobile/train/export_data.h [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/sequential.cpp -> /pytorch/torch/csrc/jit/mobile/train/sequential.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/optim/sgd.h -> /pytorch/torch/csrc/jit/mobile/train/optim/sgd.h [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/train/optim/sgd.cpp -> /pytorch/torch/csrc/jit/mobile/train/optim/sgd.cpp [skipped, already hipified] +#10 23.86 /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/tracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/tracer.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/compatibility/backport.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/backport.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.cpp [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/compatibility/backport.h -> /pytorch/torch/csrc/jit/mobile/compatibility/backport.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.h -> /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.h [skipped, already hipified] +#10 23.87 /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/registry.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/registry.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/context.h -> /pytorch/torch/csrc/jit/mobile/nnc/context.h [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.h -> /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.h [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/backend.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/backend.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/registry.h -> /pytorch/torch/csrc/jit/mobile/nnc/registry.h [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/mobile/nnc/context.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/context.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/testing/file_check.h -> /pytorch/torch/csrc/jit/testing/file_check.h [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/testing/hooks_for_testing.h -> /pytorch/torch/csrc/jit/testing/hooks_for_testing.h [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/testing/hooks_for_testing.cpp -> /pytorch/torch/csrc/jit/testing/hooks_for_testing.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/testing/catch_utils.hpp -> /pytorch/torch/csrc/jit/testing/catch_utils.hpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/testing/file_check.cpp -> /pytorch/torch/csrc/jit/testing/file_check.cpp [skipped, already hipified] +#10 23.88 /pytorch/torch/csrc/jit/ir/alias_analysis.h -> /pytorch/torch/csrc/jit/ir/alias_analysis.h [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/ir.h -> /pytorch/torch/csrc/jit/ir/ir.h [ok] +#10 23.89 /pytorch/torch/csrc/jit/ir/graph_node_list.h -> /pytorch/torch/csrc/jit/ir/graph_node_list.h [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/irparser.h -> /pytorch/torch/csrc/jit/ir/irparser.h [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/constants.cpp -> /pytorch/torch/csrc/jit/ir/constants.cpp [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/graph_utils.h -> /pytorch/torch/csrc/jit/ir/graph_utils.h [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/scope.h -> /pytorch/torch/csrc/jit/ir/scope.h [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/irparser.cpp -> /pytorch/torch/csrc/jit/ir/irparser.cpp [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/node_hashing.cpp -> /pytorch/torch/csrc/jit/ir/node_hashing.cpp [skipped, already hipified] +#10 23.89 /pytorch/torch/csrc/jit/ir/attributes.cpp -> /pytorch/torch/csrc/jit/ir/attributes.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/alias_analysis.cpp -> /pytorch/torch/csrc/jit/ir/alias_analysis.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/graph_utils.cpp -> /pytorch/torch/csrc/jit/ir/graph_utils.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/subgraph_matcher.cpp -> /pytorch/torch/csrc/jit/ir/subgraph_matcher.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/type_hashing.h -> /pytorch/torch/csrc/jit/ir/type_hashing.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/ir.cpp -> /pytorch/torch/csrc/jit/ir/ir.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/named_value.h -> /pytorch/torch/csrc/jit/ir/named_value.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/scope.cpp -> /pytorch/torch/csrc/jit/ir/scope.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/node_hashing.h -> /pytorch/torch/csrc/jit/ir/node_hashing.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/attributes.h -> /pytorch/torch/csrc/jit/ir/attributes.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/subgraph_matcher.h -> /pytorch/torch/csrc/jit/ir/subgraph_matcher.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/type_hashing.cpp -> /pytorch/torch/csrc/jit/ir/type_hashing.cpp [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/ir_views.h -> /pytorch/torch/csrc/jit/ir/ir_views.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/ir/constants.h -> /pytorch/torch/csrc/jit/ir/constants.h [skipped, already hipified] +#10 23.90 /pytorch/torch/csrc/jit/operator_upgraders/utils.h -> /pytorch/torch/csrc/jit/operator_upgraders/utils.h [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/utils.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/utils.cpp [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/version_map.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/version_map.cpp [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/upgraders.h -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders.h [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.h [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/upgraders.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders.cpp [skipped, already hipified] +#10 23.91 /pytorch/torch/csrc/jit/operator_upgraders/version_map.h -> /pytorch/torch/csrc/jit/operator_upgraders/version_map.h [skipped, already hipified] +#10 23.92 /pytorch/torch/csrc/jit/runtime/register_prim_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_prim_ops.cpp [skipped, already hipified] +#10 23.92 /pytorch/torch/csrc/jit/runtime/calculate_necessary_args.h -> /pytorch/torch/csrc/jit/runtime/calculate_necessary_args.h [skipped, already hipified] +#10 23.92 /pytorch/torch/csrc/jit/runtime/graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/graph_executor_impl.h [skipped, already hipified] +#10 23.92 /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp -> /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp [skipped, already hipified] +#10 23.92 /pytorch/torch/csrc/jit/runtime/graph_executor.h -> /pytorch/torch/csrc/jit/runtime/graph_executor.h [skipped, already hipified] +#10 23.92 /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.cpp -> /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.cpp [skipped, already hipified] +#10 23.93 /pytorch/torch/csrc/jit/runtime/register_ops_utils.h -> /pytorch/torch/csrc/jit/runtime/register_ops_utils.h [skipped, already hipified] +#10 23.93 /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.h -> /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.h [skipped, already hipified] +#10 23.93 /pytorch/torch/csrc/jit/runtime/vararg_functions.h -> /pytorch/torch/csrc/jit/runtime/vararg_functions.h [skipped, already hipified] +#10 23.93 /pytorch/torch/csrc/jit/runtime/jit_exception.h -> /pytorch/torch/csrc/jit/runtime/jit_exception.h [skipped, already hipified] +#10 23.93 /pytorch/torch/csrc/jit/runtime/symbolic_script.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_script.cpp [skipped, already hipified] +#10 23.93 /pytorch/torch/csrc/jit/runtime/jit_trace.cpp -> /pytorch/torch/csrc/jit/runtime/jit_trace.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/vararg_functions.cpp -> /pytorch/torch/csrc/jit/runtime/vararg_functions.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/logging.cpp -> /pytorch/torch/csrc/jit/runtime/logging.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/instruction.cpp -> /pytorch/torch/csrc/jit/runtime/instruction.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/decomposition_registry.cpp -> /pytorch/torch/csrc/jit/runtime/decomposition_registry.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/operator.h -> /pytorch/torch/csrc/jit/runtime/operator.h [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/autodiff.cpp -> /pytorch/torch/csrc/jit/runtime/autodiff.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/profiling_record.cpp -> /pytorch/torch/csrc/jit/runtime/profiling_record.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/decomposition_registry.h -> /pytorch/torch/csrc/jit/runtime/decomposition_registry.h [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/register_c10_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_c10_ops.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/graph_executor.cpp -> /pytorch/torch/csrc/jit/runtime/graph_executor.cpp [skipped, already hipified] +#10 23.94 /pytorch/torch/csrc/jit/runtime/print_handler.h -> /pytorch/torch/csrc/jit/runtime/print_handler.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/argument_spec.h -> /pytorch/torch/csrc/jit/runtime/argument_spec.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.cpp -> /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.cpp [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/register_ops_utils.cpp -> /pytorch/torch/csrc/jit/runtime/register_ops_utils.cpp [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/graph_iterator.h -> /pytorch/torch/csrc/jit/runtime/graph_iterator.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/jit_exception.cpp -> /pytorch/torch/csrc/jit/runtime/jit_exception.cpp [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/symbolic_script.h -> /pytorch/torch/csrc/jit/runtime/symbolic_script.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/autodiff.h -> /pytorch/torch/csrc/jit/runtime/autodiff.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp -> /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/shape_function_registry.h -> /pytorch/torch/csrc/jit/runtime/shape_function_registry.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/logging.h -> /pytorch/torch/csrc/jit/runtime/logging.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/custom_operator.h -> /pytorch/torch/csrc/jit/runtime/custom_operator.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/exception_message.h -> /pytorch/torch/csrc/jit/runtime/exception_message.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.h -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/variable_tensor_list.h -> /pytorch/torch/csrc/jit/runtime/variable_tensor_list.h [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/register_distributed_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_distributed_ops.cpp [skipped, already hipified] +#10 23.95 /pytorch/torch/csrc/jit/runtime/profiling_record.h -> /pytorch/torch/csrc/jit/runtime/profiling_record.h [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/operator.cpp -> /pytorch/torch/csrc/jit/runtime/operator.cpp [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/jit_trace.h -> /pytorch/torch/csrc/jit/runtime/jit_trace.h [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/print_handler.cpp -> /pytorch/torch/csrc/jit/runtime/print_handler.cpp [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.h -> /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.h [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp -> /pytorch/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp -> /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/interpreter.h -> /pytorch/torch/csrc/jit/runtime/interpreter.h [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/register_special_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_special_ops.cpp [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/instruction.h -> /pytorch/torch/csrc/jit/runtime/instruction.h [skipped, already hipified] +#10 23.96 /pytorch/torch/csrc/jit/runtime/argument_spec.cpp -> /pytorch/torch/csrc/jit/runtime/argument_spec.cpp [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/interpreter.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter.cpp [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/register_cuda_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_cuda_ops.cpp [ok] +#10 23.97 /pytorch/torch/csrc/jit/runtime/script_profile.cpp -> /pytorch/torch/csrc/jit/runtime/script_profile.cpp [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/script_profile.h -> /pytorch/torch/csrc/jit/runtime/script_profile.h [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.cpp [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/operator_options.h -> /pytorch/torch/csrc/jit/runtime/operator_options.h [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/static/fusion.h -> /pytorch/torch/csrc/jit/runtime/static/fusion.h [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/static/fusion.cpp -> /pytorch/torch/csrc/jit/runtime/static/fusion.cpp [skipped, already hipified] +#10 23.97 /pytorch/torch/csrc/jit/runtime/static/impl.cpp -> /pytorch/torch/csrc/jit/runtime/static/impl.cpp [skipped, already hipified] +#10 23.98 /pytorch/torch/csrc/jit/runtime/static/impl.h -> /pytorch/torch/csrc/jit/runtime/static/impl.h [skipped, already hipified] +#10 23.98 /pytorch/torch/csrc/jit/runtime/static/memory_planner.h -> /pytorch/torch/csrc/jit/runtime/static/memory_planner.h [skipped, already hipified] +#10 23.98 /pytorch/torch/csrc/jit/runtime/static/static_method.h -> /pytorch/torch/csrc/jit/runtime/static/static_method.h [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/ops.cpp [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/init.h -> /pytorch/torch/csrc/jit/runtime/static/init.h [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/passes.h -> /pytorch/torch/csrc/jit/runtime/static/passes.h [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/native_ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/native_ops.cpp [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/memory_planner.cpp -> /pytorch/torch/csrc/jit/runtime/static/memory_planner.cpp [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/te_wrapper.h -> /pytorch/torch/csrc/jit/runtime/static/te_wrapper.h [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> /pytorch/torch/csrc/jit/runtime/static/processed_node_wrapper.h [skipped, already hipified] +#10 23.99 /pytorch/torch/csrc/jit/runtime/static/ops.h -> /pytorch/torch/csrc/jit/runtime/static/ops.h [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/static/generated_ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/generated_ops.cpp [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.cpp -> /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.cpp [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/static/te_wrapper.cpp -> /pytorch/torch/csrc/jit/runtime/static/te_wrapper.cpp [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/static/passes.cpp -> /pytorch/torch/csrc/jit/runtime/static/passes.cpp [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/static/init.cpp -> /pytorch/torch/csrc/jit/runtime/static/init.cpp [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> /pytorch/torch/csrc/jit/runtime/interpreter/can_emit_inline.h [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/interpreter/code_impl.h -> /pytorch/torch/csrc/jit/runtime/interpreter/code_impl.h [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/interpreter/frame.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter/frame.cpp [skipped, already hipified] +#10 24.01 /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/runtime/interpreter/frame.h -> /pytorch/torch/csrc/jit/runtime/interpreter/frame.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/module.h -> /pytorch/torch/csrc/jit/api/module.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/object.cpp -> /pytorch/torch/csrc/jit/api/object.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/module.cpp -> /pytorch/torch/csrc/jit/api/module.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/function_impl.cpp -> /pytorch/torch/csrc/jit/api/function_impl.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/object.h -> /pytorch/torch/csrc/jit/api/object.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/compilation_unit.h -> /pytorch/torch/csrc/jit/api/compilation_unit.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/function_impl.h -> /pytorch/torch/csrc/jit/api/function_impl.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/method.h -> /pytorch/torch/csrc/jit/api/method.h [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/api/module_save.cpp -> /pytorch/torch/csrc/jit/api/module_save.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/passes/lower_graph.cpp -> /pytorch/torch/csrc/jit/passes/lower_graph.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/passes/liveness.cpp -> /pytorch/torch/csrc/jit/passes/liveness.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/passes/pass_manager.cpp -> /pytorch/torch/csrc/jit/passes/pass_manager.cpp [skipped, already hipified] +#10 24.02 /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.cpp -> /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/lift_closures.cpp -> /pytorch/torch/csrc/jit/passes/lift_closures.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.h -> /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.h -> /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/lift_closures.h -> /pytorch/torch/csrc/jit/passes/lift_closures.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/remove_expands.cpp -> /pytorch/torch/csrc/jit/passes/remove_expands.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/guard_elimination.h -> /pytorch/torch/csrc/jit/passes/guard_elimination.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/peephole_list_idioms.cpp -> /pytorch/torch/csrc/jit/passes/peephole_list_idioms.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/vulkan_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/vulkan_rewrite.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/fuse_relu.h -> /pytorch/torch/csrc/jit/passes/fuse_relu.h [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.cpp -> /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.cpp [skipped, already hipified] +#10 24.03 /pytorch/torch/csrc/jit/passes/remove_dropout.cpp -> /pytorch/torch/csrc/jit/passes/remove_dropout.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/concat_opt.cpp -> /pytorch/torch/csrc/jit/passes/concat_opt.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.h -> /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/clear_profiling.h -> /pytorch/torch/csrc/jit/passes/clear_profiling.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.cpp -> /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/metal_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/metal_rewrite.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/specialize_autogradzero.cpp -> /pytorch/torch/csrc/jit/passes/specialize_autogradzero.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/requires_grad_analysis.h -> /pytorch/torch/csrc/jit/passes/requires_grad_analysis.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/clear_profiling.cpp -> /pytorch/torch/csrc/jit/passes/clear_profiling.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.h -> /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.h -> /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/prepack_folding.cpp -> /pytorch/torch/csrc/jit/passes/prepack_folding.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/peephole_list_idioms.h -> /pytorch/torch/csrc/jit/passes/peephole_list_idioms.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/onnx.h -> /pytorch/torch/csrc/jit/passes/onnx.h [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/frozen_linear_folding.cpp -> /pytorch/torch/csrc/jit/passes/frozen_linear_folding.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/lower_grad_of.cpp -> /pytorch/torch/csrc/jit/passes/lower_grad_of.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/erase_number_types.cpp -> /pytorch/torch/csrc/jit/passes/erase_number_types.cpp [skipped, already hipified] +#10 24.04 /pytorch/torch/csrc/jit/passes/fuse_linear.cpp -> /pytorch/torch/csrc/jit/passes/fuse_linear.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/shape_analysis.cpp -> /pytorch/torch/csrc/jit/passes/shape_analysis.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/loop_unrolling.cpp -> /pytorch/torch/csrc/jit/passes/loop_unrolling.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/fuse_linear.h -> /pytorch/torch/csrc/jit/passes/fuse_linear.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/lower_tuples.cpp -> /pytorch/torch/csrc/jit/passes/lower_tuples.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/decompose_ops.cpp -> /pytorch/torch/csrc/jit/passes/decompose_ops.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/peephole_non_tensor.h -> /pytorch/torch/csrc/jit/passes/peephole_non_tensor.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/shape_analysis.h -> /pytorch/torch/csrc/jit/passes/shape_analysis.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/remove_inplace_ops.h -> /pytorch/torch/csrc/jit/passes/remove_inplace_ops.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/decompose_ops.h -> /pytorch/torch/csrc/jit/passes/decompose_ops.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp -> /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/bailout_graph.h -> /pytorch/torch/csrc/jit/passes/bailout_graph.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/canonicalize.h -> /pytorch/torch/csrc/jit/passes/canonicalize.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/inplace_check.cpp -> /pytorch/torch/csrc/jit/passes/inplace_check.cpp [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/inline_fork_wait.h -> /pytorch/torch/csrc/jit/passes/inline_fork_wait.h [skipped, already hipified] +#10 24.05 /pytorch/torch/csrc/jit/passes/value_refinement_utils.h -> /pytorch/torch/csrc/jit/passes/value_refinement_utils.h [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/prepack_folding.h -> /pytorch/torch/csrc/jit/passes/prepack_folding.h [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/dead_code_elimination.cpp -> /pytorch/torch/csrc/jit/passes/dead_code_elimination.cpp [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.cpp [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/constant_pooling.h -> /pytorch/torch/csrc/jit/passes/constant_pooling.h [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/constant_propagation.cpp -> /pytorch/torch/csrc/jit/passes/constant_propagation.cpp [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/dtype_analysis.cpp -> /pytorch/torch/csrc/jit/passes/dtype_analysis.cpp [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/fuse_relu.cpp -> /pytorch/torch/csrc/jit/passes/fuse_relu.cpp [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/freeze_module.cpp -> /pytorch/torch/csrc/jit/passes/freeze_module.cpp [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/mobile_optimizer_type.h -> /pytorch/torch/csrc/jit/passes/mobile_optimizer_type.h [skipped, already hipified] +#10 24.06 /pytorch/torch/csrc/jit/passes/clear_undefinedness.cpp -> /pytorch/torch/csrc/jit/passes/clear_undefinedness.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/remove_expands.h -> /pytorch/torch/csrc/jit/passes/remove_expands.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/annotate_warns.h -> /pytorch/torch/csrc/jit/passes/annotate_warns.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp -> /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/normalize_ops.cpp -> /pytorch/torch/csrc/jit/passes/normalize_ops.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.h -> /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/subgraph_rewrite.h -> /pytorch/torch/csrc/jit/passes/subgraph_rewrite.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.cpp -> /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/device_type_analysis.cpp -> /pytorch/torch/csrc/jit/passes/device_type_analysis.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.cpp -> /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/autocast.cpp -> /pytorch/torch/csrc/jit/passes/autocast.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/check_strict_fusion.cpp -> /pytorch/torch/csrc/jit/passes/check_strict_fusion.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/integer_value_refinement.h -> /pytorch/torch/csrc/jit/passes/integer_value_refinement.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/peephole.h -> /pytorch/torch/csrc/jit/passes/peephole.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/loop_unrolling.h -> /pytorch/torch/csrc/jit/passes/loop_unrolling.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/fold_linear_bn.h -> /pytorch/torch/csrc/jit/passes/fold_linear_bn.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/onednn_graph_fuser.h -> /pytorch/torch/csrc/jit/passes/onednn_graph_fuser.h [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp -> /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp [skipped, already hipified] +#10 24.07 /pytorch/torch/csrc/jit/passes/requires_grad_analysis.cpp -> /pytorch/torch/csrc/jit/passes/requires_grad_analysis.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/subgraph_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/subgraph_rewrite.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/insert_guards.cpp -> /pytorch/torch/csrc/jit/passes/insert_guards.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/lower_graph.h -> /pytorch/torch/csrc/jit/passes/lower_graph.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.h -> /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/lower_grad_of.h -> /pytorch/torch/csrc/jit/passes/lower_grad_of.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/guard_elimination.cpp -> /pytorch/torch/csrc/jit/passes/guard_elimination.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/inplace_check.h -> /pytorch/torch/csrc/jit/passes/inplace_check.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/erase_number_types.h -> /pytorch/torch/csrc/jit/passes/erase_number_types.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/inline_fork_wait.cpp -> /pytorch/torch/csrc/jit/passes/inline_fork_wait.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/remove_mutation.h -> /pytorch/torch/csrc/jit/passes/remove_mutation.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/fold_linear_bn.cpp -> /pytorch/torch/csrc/jit/passes/fold_linear_bn.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.h -> /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/constant_pooling.cpp -> /pytorch/torch/csrc/jit/passes/constant_pooling.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/refine_tuple_types.h -> /pytorch/torch/csrc/jit/passes/refine_tuple_types.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.cpp -> /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.cpp [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/dead_code_elimination.h -> /pytorch/torch/csrc/jit/passes/dead_code_elimination.h [skipped, already hipified] +#10 24.08 /pytorch/torch/csrc/jit/passes/peephole_non_tensor.cpp -> /pytorch/torch/csrc/jit/passes/peephole_non_tensor.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/check_strict_fusion.h -> /pytorch/torch/csrc/jit/passes/check_strict_fusion.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.cpp -> /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp -> /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.h -> /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/refine_tuple_types.cpp -> /pytorch/torch/csrc/jit/passes/refine_tuple_types.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.cpp -> /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/frozen_concat_linear.cpp -> /pytorch/torch/csrc/jit/passes/frozen_concat_linear.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/batch_mm.h -> /pytorch/torch/csrc/jit/passes/batch_mm.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.h -> /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/inline_forked_closures.h -> /pytorch/torch/csrc/jit/passes/inline_forked_closures.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/liveness.h -> /pytorch/torch/csrc/jit/passes/liveness.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/variadic_ops.h -> /pytorch/torch/csrc/jit/passes/variadic_ops.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/peephole.cpp -> /pytorch/torch/csrc/jit/passes/peephole.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/canonicalize.cpp -> /pytorch/torch/csrc/jit/passes/canonicalize.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/specialize_autogradzero.h -> /pytorch/torch/csrc/jit/passes/specialize_autogradzero.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/add_if_then_else.h -> /pytorch/torch/csrc/jit/passes/add_if_then_else.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.h -> /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/fold_conv_bn.h -> /pytorch/torch/csrc/jit/passes/fold_conv_bn.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/pass_manager.h -> /pytorch/torch/csrc/jit/passes/pass_manager.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/annotate_warns.cpp -> /pytorch/torch/csrc/jit/passes/annotate_warns.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/inline_forked_closures.cpp -> /pytorch/torch/csrc/jit/passes/inline_forked_closures.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.h [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/add_if_then_else.cpp -> /pytorch/torch/csrc/jit/passes/add_if_then_else.cpp [skipped, already hipified] +#10 24.09 /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp -> /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/batch_mm.cpp -> /pytorch/torch/csrc/jit/passes/batch_mm.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/normalize_ops.h -> /pytorch/torch/csrc/jit/passes/normalize_ops.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/inliner.cpp -> /pytorch/torch/csrc/jit/passes/inliner.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/constant_propagation.h -> /pytorch/torch/csrc/jit/passes/constant_propagation.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/create_functional_graphs.cpp -> /pytorch/torch/csrc/jit/passes/create_functional_graphs.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/fold_conv_bn.cpp -> /pytorch/torch/csrc/jit/passes/fold_conv_bn.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/freeze_module.h -> /pytorch/torch/csrc/jit/passes/freeze_module.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/restore_mutation.cpp -> /pytorch/torch/csrc/jit/passes/restore_mutation.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/frozen_linear_folding.h -> /pytorch/torch/csrc/jit/passes/frozen_linear_folding.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/restore_mutation.h -> /pytorch/torch/csrc/jit/passes/restore_mutation.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.h -> /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/frozen_conv_folding.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_folding.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/insert_guards.h -> /pytorch/torch/csrc/jit/passes/insert_guards.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/dtype_analysis.h -> /pytorch/torch/csrc/jit/passes/dtype_analysis.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.cpp -> /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.cpp -> /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/bailout_graph.cpp -> /pytorch/torch/csrc/jit/passes/bailout_graph.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/lower_tuples.h -> /pytorch/torch/csrc/jit/passes/lower_tuples.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/integer_value_refinement.cpp -> /pytorch/torch/csrc/jit/passes/integer_value_refinement.cpp [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/frozen_concat_linear.h -> /pytorch/torch/csrc/jit/passes/frozen_concat_linear.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/graph_fuser.h -> /pytorch/torch/csrc/jit/passes/graph_fuser.h [skipped, already hipified] +#10 24.10 /pytorch/torch/csrc/jit/passes/eliminate_no_ops.cpp -> /pytorch/torch/csrc/jit/passes/eliminate_no_ops.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp [ok] +#10 24.11 /pytorch/torch/csrc/jit/passes/eliminate_no_ops.h -> /pytorch/torch/csrc/jit/passes/eliminate_no_ops.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/concat_opt.h -> /pytorch/torch/csrc/jit/passes/concat_opt.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/device_type_analysis.h -> /pytorch/torch/csrc/jit/passes/device_type_analysis.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/remove_mutation.cpp -> /pytorch/torch/csrc/jit/passes/remove_mutation.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.h -> /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/frozen_conv_folding.h -> /pytorch/torch/csrc/jit/passes/frozen_conv_folding.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/metal_rewrite.h -> /pytorch/torch/csrc/jit/passes/metal_rewrite.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/remove_exceptions.h -> /pytorch/torch/csrc/jit/passes/remove_exceptions.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/remove_exceptions.cpp -> /pytorch/torch/csrc/jit/passes/remove_exceptions.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/autocast.h -> /pytorch/torch/csrc/jit/passes/autocast.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/clear_undefinedness.h -> /pytorch/torch/csrc/jit/passes/clear_undefinedness.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/value_refinement_utils.cpp -> /pytorch/torch/csrc/jit/passes/value_refinement_utils.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp -> /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.cpp -> /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.cpp [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/create_functional_graphs.h -> /pytorch/torch/csrc/jit/passes/create_functional_graphs.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/vulkan_rewrite.h -> /pytorch/torch/csrc/jit/passes/vulkan_rewrite.h [skipped, already hipified] +#10 24.11 /pytorch/torch/csrc/jit/passes/variadic_ops.cpp -> /pytorch/torch/csrc/jit/passes/variadic_ops.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/graph_fuser.cpp -> /pytorch/torch/csrc/jit/passes/graph_fuser.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion_cuda.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion_cuda.cpp [ok] +#10 24.12 /pytorch/torch/csrc/jit/passes/remove_inplace_ops.cpp -> /pytorch/torch/csrc/jit/passes/remove_inplace_ops.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/inliner.h -> /pytorch/torch/csrc/jit/passes/inliner.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/remove_dropout.h -> /pytorch/torch/csrc/jit/passes/remove_dropout.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/function_substitution.cpp -> /pytorch/torch/csrc/jit/passes/onnx/function_substitution.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.h -> /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.cpp -> /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/naming.cpp -> /pytorch/torch/csrc/jit/passes/onnx/naming.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp -> /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.cpp -> /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/constant_fold.h -> /pytorch/torch/csrc/jit/passes/onnx/constant_fold.h [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/constant_fold.cpp -> /pytorch/torch/csrc/jit/passes/onnx/constant_fold.cpp [skipped, already hipified] +#10 24.12 /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.h [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp -> /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.cpp -> /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.cpp [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/helper.cpp -> /pytorch/torch/csrc/jit/passes/onnx/helper.cpp [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/naming.h -> /pytorch/torch/csrc/jit/passes/onnx/naming.h [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.cpp -> /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.cpp [skipped, already hipified] +#10 24.13 /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.cpp -> /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.cpp [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/peephole.h -> /pytorch/torch/csrc/jit/passes/onnx/peephole.h [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.h -> /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.h [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.h [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/peephole.cpp -> /pytorch/torch/csrc/jit/passes/onnx/peephole.cpp [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/onnx_log.cpp -> /pytorch/torch/csrc/jit/passes/onnx/onnx_log.cpp [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/function_extraction.cpp -> /pytorch/torch/csrc/jit/passes/onnx/function_extraction.cpp [skipped, already hipified] +#10 24.14 /pytorch/torch/csrc/jit/passes/onnx/constant_map.h -> /pytorch/torch/csrc/jit/passes/onnx/constant_map.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp -> /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/helper.h -> /pytorch/torch/csrc/jit/passes/onnx/helper.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/function_substitution.h -> /pytorch/torch/csrc/jit/passes/onnx/function_substitution.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp -> /pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/onnx_log.h -> /pytorch/torch/csrc/jit/passes/onnx/onnx_log.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/function_extraction.h -> /pytorch/torch/csrc/jit/passes/onnx/function_extraction.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.h -> /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.cpp -> /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h [skipped, already hipified] +#10 24.15 /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.h -> /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.h -> /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/op_registry.cpp -> /pytorch/torch/csrc/jit/passes/utils/op_registry.cpp [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/memory_dag.cpp -> /pytorch/torch/csrc/jit/passes/utils/memory_dag.cpp [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/optimization_utils.cpp -> /pytorch/torch/csrc/jit/passes/utils/optimization_utils.cpp [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/op_registry.h -> /pytorch/torch/csrc/jit/passes/utils/op_registry.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/memory_dag.h -> /pytorch/torch/csrc/jit/passes/utils/memory_dag.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.cpp -> /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.cpp [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.cpp -> /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.cpp [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/utils/optimization_utils.h -> /pytorch/torch/csrc/jit/passes/utils/optimization_utils.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp -> /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/quantization/quantization_type.h -> /pytorch/torch/csrc/jit/passes/quantization/quantization_type.h [skipped, already hipified] +#10 24.16 /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp -> /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h -> /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/helper.cpp -> /pytorch/torch/csrc/jit/passes/quantization/helper.cpp [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp -> /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.cpp -> /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.cpp [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.h -> /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.h [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.h [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/finalize.h -> /pytorch/torch/csrc/jit/passes/quantization/finalize.h [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/insert_observers.h -> /pytorch/torch/csrc/jit/passes/quantization/insert_observers.h [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/insert_observers.cpp -> /pytorch/torch/csrc/jit/passes/quantization/insert_observers.cpp [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/finalize.cpp -> /pytorch/torch/csrc/jit/passes/quantization/finalize.cpp [skipped, already hipified] +#10 24.17 /pytorch/torch/csrc/jit/passes/quantization/helper.h -> /pytorch/torch/csrc/jit/passes/quantization/helper.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/passes/quantization/quantization_type.cpp -> /pytorch/torch/csrc/jit/passes/quantization/quantization_type.cpp [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/passes/quantization/quantization_patterns.h -> /pytorch/torch/csrc/jit/passes/quantization/quantization_patterns.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.cpp -> /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.cpp [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/cuda/interface.h -> /pytorch/torch/csrc/jit/codegen/cuda/interface.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/cuda/interface.cpp -> /pytorch/torch/csrc/jit/codegen/cuda/interface.cpp [ok] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/interface.h -> /pytorch/torch/csrc/jit/codegen/onednn/interface.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/register_interface.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/register_interface.cpp [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.h -> /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.h -> /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.h [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/interface.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/interface.cpp [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp [skipped, already hipified] +#10 24.18 /pytorch/torch/csrc/jit/codegen/onednn/operator.h -> /pytorch/torch/csrc/jit/codegen/onednn/operator.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/kernel.h -> /pytorch/torch/csrc/jit/codegen/onednn/kernel.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.h -> /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/kernel.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/kernel.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.h -> /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.h -> /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.h -> /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.h -> /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/interface.h -> /pytorch/torch/csrc/jit/codegen/fuser/interface.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/tensor_info.h -> /pytorch/torch/csrc/jit/codegen/fuser/tensor_info.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/kernel_spec.h -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_spec.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/codegen.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/codegen.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/fallback.h -> /pytorch/torch/csrc/jit/codegen/fuser/fallback.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/compiler.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/compiler.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/interface.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/interface.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/partition_desc.h -> /pytorch/torch/csrc/jit/codegen/fuser/partition_desc.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.h -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/codegen.h -> /pytorch/torch/csrc/jit/codegen/fuser/codegen.h [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/fallback.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/fallback.cpp [skipped, already hipified] +#10 24.19 /pytorch/torch/csrc/jit/codegen/fuser/tensor_desc.h -> /pytorch/torch/csrc/jit/codegen/fuser/tensor_desc.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/arg_spec.h -> /pytorch/torch/csrc/jit/codegen/fuser/arg_spec.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.cpp [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/compiler.h -> /pytorch/torch/csrc/jit/codegen/fuser/compiler.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/fused_kernel.h [ok] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/executor.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/executor.cpp [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/executor.h -> /pytorch/torch/csrc/jit/codegen/fuser/executor.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.cpp [ok] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h [ok] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/temp_file.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h [skipped, already hipified] +#10 24.20 /pytorch/torch/csrc/jit/python/python_arg_flatten.h -> /pytorch/torch/csrc/jit/python/python_arg_flatten.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/script_init.cpp -> /pytorch/torch/csrc/jit/python/script_init.cpp [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_dict.cpp -> /pytorch/torch/csrc/jit/python/python_dict.cpp [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_ir.h -> /pytorch/torch/csrc/jit/python/python_ir.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/init.h -> /pytorch/torch/csrc/jit/python/init.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_list.cpp -> /pytorch/torch/csrc/jit/python/python_list.cpp [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_interpreter.cpp -> /pytorch/torch/csrc/jit/python/python_interpreter.cpp [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/script_init.h -> /pytorch/torch/csrc/jit/python/script_init.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/pybind.h -> /pytorch/torch/csrc/jit/python/pybind.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/update_graph_executor_opt.cpp -> /pytorch/torch/csrc/jit/python/update_graph_executor_opt.cpp [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_tree_views.h -> /pytorch/torch/csrc/jit/python/python_tree_views.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/module_python.h -> /pytorch/torch/csrc/jit/python/module_python.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_ivalue.h -> /pytorch/torch/csrc/jit/python/python_ivalue.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_tracer.h -> /pytorch/torch/csrc/jit/python/python_tracer.h [skipped, already hipified] +#10 24.21 /pytorch/torch/csrc/jit/python/python_dict.h -> /pytorch/torch/csrc/jit/python/python_dict.h [skipped, already hipified] +#10 24.22 /pytorch/torch/csrc/jit/python/pybind_utils.h -> /pytorch/torch/csrc/jit/python/pybind_utils.h [ok] +#10 24.22 /pytorch/torch/csrc/jit/python/python_custom_class.h -> /pytorch/torch/csrc/jit/python/python_custom_class.h [skipped, already hipified] +#10 24.22 /pytorch/torch/csrc/jit/python/update_graph_executor_opt.h -> /pytorch/torch/csrc/jit/python/update_graph_executor_opt.h [skipped, already hipified] +#10 24.22 /pytorch/torch/csrc/jit/python/python_ir.cpp -> /pytorch/torch/csrc/jit/python/python_ir.cpp [skipped, already hipified] +#10 24.22 /pytorch/torch/csrc/jit/python/python_tracer.cpp -> /pytorch/torch/csrc/jit/python/python_tracer.cpp [skipped, already hipified] +#10 24.22 /pytorch/torch/csrc/jit/python/python_arg_flatten.cpp -> /pytorch/torch/csrc/jit/python/python_arg_flatten.cpp [skipped, already hipified] +#10 24.22 /pytorch/torch/csrc/jit/python/python_sugared_value.cpp -> /pytorch/torch/csrc/jit/python/python_sugared_value.cpp [ok] +#10 24.23 /pytorch/torch/csrc/jit/python/python_tree_views.cpp -> /pytorch/torch/csrc/jit/python/python_tree_views.cpp [skipped, already hipified] +#10 24.23 /pytorch/torch/csrc/jit/python/python_list.h -> /pytorch/torch/csrc/jit/python/python_list.h [skipped, already hipified] +#10 24.23 /pytorch/torch/csrc/jit/python/pybind_utils.cpp -> /pytorch/torch/csrc/jit/python/pybind_utils.cpp [skipped, already hipified] +#10 24.23 /pytorch/torch/csrc/jit/python/python_custom_class.cpp -> /pytorch/torch/csrc/jit/python/python_custom_class.cpp [skipped, already hipified] +#10 24.23 /pytorch/torch/csrc/jit/python/python_sugared_value.h -> /pytorch/torch/csrc/jit/python/python_sugared_value.h [skipped, already hipified] +#10 24.24 /pytorch/torch/csrc/jit/python/init.cpp -> /pytorch/torch/csrc/jit/python/init.cpp [skipped, already hipified] +#10 24.24 /pytorch/torch/csrc/autograd/jit_decomp_interface.cpp -> /pytorch/torch/csrc/autograd/jit_decomp_interface.cpp [skipped, already hipified] +#10 24.24 /pytorch/torch/csrc/autograd/input_buffer.cpp -> /pytorch/torch/csrc/autograd/input_buffer.cpp [skipped, already hipified] +#10 24.24 /pytorch/torch/csrc/autograd/forward_grad.cpp -> /pytorch/torch/csrc/autograd/forward_grad.cpp [skipped, already hipified] +#10 24.24 /pytorch/torch/csrc/autograd/record_function_ops.cpp -> /pytorch/torch/csrc/autograd/record_function_ops.cpp [skipped, already hipified] +#10 24.25 /pytorch/torch/csrc/autograd/FunctionsManual.cpp -> /pytorch/torch/csrc/autograd/FunctionsManual.cpp [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/VariableTypeUtils.h -> /pytorch/torch/csrc/autograd/VariableTypeUtils.h [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/record_function_ops.h -> /pytorch/torch/csrc/autograd/record_function_ops.h [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/python_engine.cpp -> /pytorch/torch/csrc/autograd/python_engine.cpp [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/profiler_python.h -> /pytorch/torch/csrc/autograd/profiler_python.h [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/edge.h -> /pytorch/torch/csrc/autograd/edge.h [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/engine.cpp -> /pytorch/torch/csrc/autograd/engine.cpp [ok] +#10 24.26 /pytorch/torch/csrc/autograd/python_anomaly_mode.cpp -> /pytorch/torch/csrc/autograd/python_anomaly_mode.cpp [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/python_sparse_functions.h -> /pytorch/torch/csrc/autograd/python_sparse_functions.h [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/python_saved_variable_hooks.cpp -> /pytorch/torch/csrc/autograd/python_saved_variable_hooks.cpp [skipped, already hipified] +#10 24.26 /pytorch/torch/csrc/autograd/function_hook.h -> /pytorch/torch/csrc/autograd/function_hook.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/variable.h -> /pytorch/torch/csrc/autograd/variable.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/input_buffer.h -> /pytorch/torch/csrc/autograd/input_buffer.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_return_types.h -> /pytorch/torch/csrc/autograd/python_return_types.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/graph_task.h -> /pytorch/torch/csrc/autograd/graph_task.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/cpp_hook.cpp -> /pytorch/torch/csrc/autograd/cpp_hook.cpp [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_legacy_variable.cpp -> /pytorch/torch/csrc/autograd/python_legacy_variable.cpp [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_enum_tag.h -> /pytorch/torch/csrc/autograd/python_enum_tag.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_nested_functions_manual.cpp -> /pytorch/torch/csrc/autograd/python_nested_functions_manual.cpp [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/autograd_meta.cpp -> /pytorch/torch/csrc/autograd/autograd_meta.cpp [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/saved_variable.h -> /pytorch/torch/csrc/autograd/saved_variable.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_cpp_function.h -> /pytorch/torch/csrc/autograd/python_cpp_function.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_fft_functions.h -> /pytorch/torch/csrc/autograd/python_fft_functions.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/profiler.h -> /pytorch/torch/csrc/autograd/profiler.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/engine.h -> /pytorch/torch/csrc/autograd/engine.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/forward_grad.h -> /pytorch/torch/csrc/autograd/forward_grad.h [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/variable.cpp -> /pytorch/torch/csrc/autograd/variable.cpp [skipped, already hipified] +#10 24.27 /pytorch/torch/csrc/autograd/python_hook.cpp -> /pytorch/torch/csrc/autograd/python_hook.cpp [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/autograd.cpp -> /pytorch/torch/csrc/autograd/autograd.cpp [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/python_anomaly_mode.h -> /pytorch/torch/csrc/autograd/python_anomaly_mode.h [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/symbolic.h -> /pytorch/torch/csrc/autograd/symbolic.h [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/anomaly_mode.cpp -> /pytorch/torch/csrc/autograd/anomaly_mode.cpp [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/python_variable_indexing.cpp -> /pytorch/torch/csrc/autograd/python_variable_indexing.cpp [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/python_function.cpp -> /pytorch/torch/csrc/autograd/python_function.cpp [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.cpp -> /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.cpp [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/autograd.h -> /pytorch/torch/csrc/autograd/autograd.h [skipped, already hipified] +#10 24.28 /pytorch/torch/csrc/autograd/function.h -> /pytorch/torch/csrc/autograd/function.h [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/python_function.h -> /pytorch/torch/csrc/autograd/python_function.h [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/python_engine.h -> /pytorch/torch/csrc/autograd/python_engine.h [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/python_torch_functions_manual.cpp -> /pytorch/torch/csrc/autograd/python_torch_functions_manual.cpp [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/anomaly_mode.h -> /pytorch/torch/csrc/autograd/anomaly_mode.h [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/custom_function.h -> /pytorch/torch/csrc/autograd/custom_function.h [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/python_hook.h -> /pytorch/torch/csrc/autograd/python_hook.h [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/python_cpp_function.cpp -> /pytorch/torch/csrc/autograd/python_cpp_function.cpp [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/profiler_python.cpp -> /pytorch/torch/csrc/autograd/profiler_python.cpp [skipped, already hipified] +#10 24.29 /pytorch/torch/csrc/autograd/VariableTypeManual.cpp -> /pytorch/torch/csrc/autograd/VariableTypeManual.cpp [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/FunctionsManual.h -> /pytorch/torch/csrc/autograd/FunctionsManual.h [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/grad_mode.h -> /pytorch/torch/csrc/autograd/grad_mode.h [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/profiler_legacy.h -> /pytorch/torch/csrc/autograd/profiler_legacy.h [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/saved_variable_hooks.h -> /pytorch/torch/csrc/autograd/saved_variable_hooks.h [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/profiler_legacy.cpp -> /pytorch/torch/csrc/autograd/profiler_legacy.cpp [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/jit_decomp_interface.h -> /pytorch/torch/csrc/autograd/jit_decomp_interface.h [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/input_metadata.h -> /pytorch/torch/csrc/autograd/input_metadata.h [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/TraceTypeManual.cpp -> /pytorch/torch/csrc/autograd/TraceTypeManual.cpp [skipped, already hipified] +#10 24.30 /pytorch/torch/csrc/autograd/python_nested_functions.h -> /pytorch/torch/csrc/autograd/python_nested_functions.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_variable.cpp -> /pytorch/torch/csrc/autograd/python_variable.cpp [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_torch_functions.h -> /pytorch/torch/csrc/autograd/python_torch_functions.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_saved_variable_hooks.h -> /pytorch/torch/csrc/autograd/python_saved_variable_hooks.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_special_functions.h -> /pytorch/torch/csrc/autograd/python_special_functions.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/cpp_hook.h -> /pytorch/torch/csrc/autograd/cpp_hook.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/profiler_kineto.cpp -> /pytorch/torch/csrc/autograd/profiler_kineto.cpp [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_variable_indexing.h -> /pytorch/torch/csrc/autograd/python_variable_indexing.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_autograd.h -> /pytorch/torch/csrc/autograd/python_autograd.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.h -> /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/function.cpp -> /pytorch/torch/csrc/autograd/function.cpp [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/profiler_kineto.h -> /pytorch/torch/csrc/autograd/profiler_kineto.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_legacy_variable.h -> /pytorch/torch/csrc/autograd/python_legacy_variable.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_nn_functions.h -> /pytorch/torch/csrc/autograd/python_nn_functions.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/custom_function.cpp -> /pytorch/torch/csrc/autograd/custom_function.cpp [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/python_linalg_functions.h -> /pytorch/torch/csrc/autograd/python_linalg_functions.h [skipped, already hipified] +#10 24.31 /pytorch/torch/csrc/autograd/saved_variable.cpp -> /pytorch/torch/csrc/autograd/saved_variable.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/init.cpp -> /pytorch/torch/csrc/autograd/init.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/InferenceMode.h -> /pytorch/torch/csrc/autograd/InferenceMode.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/python_variable.h -> /pytorch/torch/csrc/autograd/python_variable.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/error_messages.h -> /pytorch/torch/csrc/autograd/utils/error_messages.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/wrap_outputs.h -> /pytorch/torch/csrc/autograd/utils/wrap_outputs.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/python_arg_parsing.h -> /pytorch/torch/csrc/autograd/utils/python_arg_parsing.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/warnings.h -> /pytorch/torch/csrc/autograd/utils/warnings.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/grad_layout_contract.h -> /pytorch/torch/csrc/autograd/utils/grad_layout_contract.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/warnings.cpp -> /pytorch/torch/csrc/autograd/utils/warnings.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/utils/lambda_post_hook.h -> /pytorch/torch/csrc/autograd/utils/lambda_post_hook.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/tensor.h -> /pytorch/torch/csrc/autograd/functions/tensor.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/utils.h -> /pytorch/torch/csrc/autograd/functions/utils.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/accumulate_grad.h -> /pytorch/torch/csrc/autograd/functions/accumulate_grad.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/tensor.cpp -> /pytorch/torch/csrc/autograd/functions/tensor.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/pybind.h -> /pytorch/torch/csrc/autograd/functions/pybind.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/comm.h -> /pytorch/torch/csrc/autograd/functions/comm.h [ok] +#10 24.32 /pytorch/torch/csrc/autograd/functions/utils.cpp -> /pytorch/torch/csrc/autograd/functions/utils.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/comm.cpp -> /pytorch/torch/csrc/autograd/functions/comm.cpp [ok] +#10 24.32 /pytorch/torch/csrc/autograd/functions/basic_ops.h -> /pytorch/torch/csrc/autograd/functions/basic_ops.h [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/basic_ops.cpp -> /pytorch/torch/csrc/autograd/functions/basic_ops.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/accumulate_grad.cpp -> /pytorch/torch/csrc/autograd/functions/accumulate_grad.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/autograd/functions/init.cpp -> /pytorch/torch/csrc/autograd/functions/init.cpp [skipped, already hipified] +#10 24.32 /pytorch/torch/csrc/mps/Module.cpp -> /pytorch/torch/csrc/mps/Module.cpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/mps/Module.h -> /pytorch/torch/csrc/mps/Module.h [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/TCPStore.cpp -> /pytorch/torch/csrc/distributed/c10d/TCPStore.cpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/Store.hpp -> /pytorch/torch/csrc/distributed/c10d/Store.hpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/socket.cpp -> /pytorch/torch/csrc/distributed/c10d/socket.cpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/Store.cpp -> /pytorch/torch/csrc/distributed/c10d/Store.cpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/UCCUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCUtils.hpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/HashStore.hpp -> /pytorch/torch/csrc/distributed/c10d/HashStore.hpp [skipped, already hipified] +#10 24.33 /pytorch/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/UnixSockUtils.hpp [skipped, already hipified] +#10 24.34 /pytorch/torch/csrc/distributed/c10d/reducer.cpp -> /pytorch/torch/csrc/distributed/c10d/reducer.cpp [skipped, already hipified] +#10 24.34 /pytorch/torch/csrc/distributed/c10d/c10d.h -> /pytorch/torch/csrc/distributed/c10d/c10d.h [skipped, already hipified] +#10 24.34 /pytorch/torch/csrc/distributed/c10d/logging.cpp -> /pytorch/torch/csrc/distributed/c10d/logging.cpp [skipped, already hipified] +#10 24.34 /pytorch/torch/csrc/distributed/c10d/TraceUtils.h -> /pytorch/torch/csrc/distributed/c10d/TraceUtils.h [skipped, already hipified] +#10 24.34 /pytorch/torch/csrc/distributed/c10d/TCPStore.hpp -> /pytorch/torch/csrc/distributed/c10d/TCPStore.hpp [skipped, already hipified] +#10 24.34 /pytorch/torch/csrc/distributed/c10d/NCCLUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/NCCLUtils.hpp [ok] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp [ok] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.hpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/debug.h -> /pytorch/torch/csrc/distributed/c10d/debug.h [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/UCCUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/UCCUtils.cpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/sequence_num.cpp -> /pytorch/torch/csrc/distributed/c10d/sequence_num.cpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/Work.cpp -> /pytorch/torch/csrc/distributed/c10d/Work.cpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/Ops.cpp -> /pytorch/torch/csrc/distributed/c10d/Ops.cpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp [ok] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/comm.cpp -> /pytorch/torch/csrc/distributed/c10d/comm.cpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/HashStore.cpp -> /pytorch/torch/csrc/distributed/c10d/HashStore.cpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.hpp [skipped, already hipified] +#10 24.35 /pytorch/torch/csrc/distributed/c10d/UCCTracing.cpp -> /pytorch/torch/csrc/distributed/c10d/UCCTracing.cpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/UCCTracing.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCTracing.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/Work.hpp -> /pytorch/torch/csrc/distributed/c10d/Work.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/exception.cpp -> /pytorch/torch/csrc/distributed/c10d/exception.cpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/FileStore.hpp -> /pytorch/torch/csrc/distributed/c10d/FileStore.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/comm.hpp -> /pytorch/torch/csrc/distributed/c10d/comm.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/reducer.hpp -> /pytorch/torch/csrc/distributed/c10d/reducer.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/PrefixStore.hpp -> /pytorch/torch/csrc/distributed/c10d/PrefixStore.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp [ok] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> /pytorch/torch/csrc/distributed/c10d/PyProcessGroup.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/ProcessGroup.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroup.cpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/ProcessGroup.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroup.hpp [skipped, already hipified] +#10 24.36 /pytorch/torch/csrc/distributed/c10d/logger.hpp -> /pytorch/torch/csrc/distributed/c10d/logger.hpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/FileStore.cpp -> /pytorch/torch/csrc/distributed/c10d/FileStore.cpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/Backend.hpp -> /pytorch/torch/csrc/distributed/c10d/Backend.hpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/sequence_num.hpp -> /pytorch/torch/csrc/distributed/c10d/sequence_num.hpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/error.h -> /pytorch/torch/csrc/distributed/c10d/error.h [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.cpp [ok] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/python_comm_hook.h -> /pytorch/torch/csrc/distributed/c10d/python_comm_hook.h [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/logging.h -> /pytorch/torch/csrc/distributed/c10d/logging.h [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/exception.h -> /pytorch/torch/csrc/distributed/c10d/exception.h [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/WinSockUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/WinSockUtils.hpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/debug.cpp -> /pytorch/torch/csrc/distributed/c10d/debug.cpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/Types.hpp -> /pytorch/torch/csrc/distributed/c10d/Types.hpp [skipped, already hipified] +#10 24.37 /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/reducer_cuda.cpp -> /pytorch/torch/csrc/distributed/c10d/reducer_cuda.cpp [ok] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/PrefixStore.cpp -> /pytorch/torch/csrc/distributed/c10d/PrefixStore.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp -> /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.cpp -> /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/NCCLUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/NCCLUtils.cpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/socket.h -> /pytorch/torch/csrc/distributed/c10d/socket.h [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/reducer_timer.hpp -> /pytorch/torch/csrc/distributed/c10d/reducer_timer.hpp [skipped, already hipified] +#10 24.38 /pytorch/torch/csrc/distributed/c10d/UCCForNCCL.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCForNCCL.hpp [skipped, already hipified] +#10 24.39 /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.cpp [skipped, already hipified] +#10 24.39 /pytorch/torch/csrc/distributed/c10d/python_comm_hook.cpp -> /pytorch/torch/csrc/distributed/c10d/python_comm_hook.cpp [skipped, already hipified] +#10 24.39 /pytorch/torch/csrc/distributed/c10d/Utils.hpp -> /pytorch/torch/csrc/distributed/c10d/Utils.hpp [skipped, already hipified] +#10 24.39 /pytorch/torch/csrc/distributed/c10d/init.cpp -> /pytorch/torch/csrc/distributed/c10d/init.cpp [skipped, already hipified] +#10 24.39 /pytorch/torch/csrc/distributed/c10d/Backend.cpp -> /pytorch/torch/csrc/distributed/c10d/Backend.cpp [skipped, already hipified] +#10 24.39 /pytorch/torch/csrc/distributed/c10d/logger.cpp -> /pytorch/torch/csrc/distributed/c10d/logger.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/Utils.cpp -> /pytorch/torch/csrc/distributed/c10d/Utils.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/quantization/quantization.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_utils.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/quantization/quantization.cpp -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.cu -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.cu [ok] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/utils.h -> /pytorch/torch/csrc/distributed/autograd/utils.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/utils.cpp -> /pytorch/torch/csrc/distributed/autograd/utils.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/autograd.cpp -> /pytorch/torch/csrc/distributed/autograd/autograd.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/autograd.h -> /pytorch/torch/csrc/distributed/autograd/autograd.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/python_autograd.h -> /pytorch/torch/csrc/distributed/autograd/python_autograd.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/init.cpp -> /pytorch/torch/csrc/distributed/autograd/init.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp -> /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp -> /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp [skipped, already hipified] +#10 24.40 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/context/context.h -> /pytorch/torch/csrc/distributed/autograd/context/context.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/context/container.h -> /pytorch/torch/csrc/distributed/autograd/context/container.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/context/container.cpp -> /pytorch/torch/csrc/distributed/autograd/context/container.cpp [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/context/context.cpp -> /pytorch/torch/csrc/distributed/autograd/context/context.cpp [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.cpp -> /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.cpp [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.h -> /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/rpc_command_base.h -> /pytorch/torch/csrc/distributed/rpc/rpc_command_base.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/utils.h -> /pytorch/torch/csrc/distributed/rpc/utils.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/rpc_agent.h -> /pytorch/torch/csrc/distributed/rpc/rpc_agent.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/request_callback.h -> /pytorch/torch/csrc/distributed/rpc/request_callback.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/script_call.h -> /pytorch/torch/csrc/distributed/rpc/script_call.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/request_callback_impl.h -> /pytorch/torch/csrc/distributed/rpc/request_callback_impl.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.h -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.h [skipped, already hipified] +#10 24.41 /pytorch/torch/csrc/distributed/rpc/rref_proto.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_proto.cpp [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/rpc_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/rpc_agent.cpp [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/script_call.cpp -> /pytorch/torch/csrc/distributed/rpc/script_call.cpp [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/request_callback_impl.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback_impl.cpp [ok] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.h -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.h [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/torchscript_functions.h -> /pytorch/torch/csrc/distributed/rpc/torchscript_functions.h [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/agent_utils.h -> /pytorch/torch/csrc/distributed/rpc/agent_utils.h [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.cpp [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.cpp [skipped, already hipified] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/utils.cpp -> /pytorch/torch/csrc/distributed/rpc/utils.cpp [ok] +#10 24.42 /pytorch/torch/csrc/distributed/rpc/request_callback.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback.cpp [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/types.h -> /pytorch/torch/csrc/distributed/rpc/types.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_resp.cpp -> /pytorch/torch/csrc/distributed/rpc/python_resp.cpp [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/rref_proto.h -> /pytorch/torch/csrc/distributed/rpc/rref_proto.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.h -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_call.h -> /pytorch/torch/csrc/distributed/rpc/python_call.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.h -> /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_call.cpp -> /pytorch/torch/csrc/distributed/rpc/python_call.cpp [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/rref_context.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_context.cpp [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/tensorpipe_cuda.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_cuda.cpp [ok] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.cpp [ok] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/script_resp.h -> /pytorch/torch/csrc/distributed/rpc/script_resp.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_functions.h -> /pytorch/torch/csrc/distributed/rpc/python_functions.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_resp.h -> /pytorch/torch/csrc/distributed/rpc/python_resp.h [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/py_rref.cpp -> /pytorch/torch/csrc/distributed/rpc/py_rref.cpp [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.cpp -> /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.cpp [skipped, already hipified] +#10 24.43 /pytorch/torch/csrc/distributed/rpc/message.h -> /pytorch/torch/csrc/distributed/rpc/message.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/script_resp.cpp -> /pytorch/torch/csrc/distributed/rpc/script_resp.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/script_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/script_remote_call.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/python_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/python_remote_call.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/torchscript_functions.cpp -> /pytorch/torch/csrc/distributed/rpc/torchscript_functions.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/message.cpp -> /pytorch/torch/csrc/distributed/rpc/message.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/rref_impl.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_impl.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/py_rref.h -> /pytorch/torch/csrc/distributed/rpc/py_rref.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/python_functions.cpp -> /pytorch/torch/csrc/distributed/rpc/python_functions.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/rpc.h -> /pytorch/torch/csrc/distributed/rpc/rpc.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/rref_context.h -> /pytorch/torch/csrc/distributed/rpc/rref_context.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.cpp -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.h -> /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.h [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/script_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/script_remote_call.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/types.cpp -> /pytorch/torch/csrc/distributed/rpc/types.cpp [skipped, already hipified] +#10 24.44 /pytorch/torch/csrc/distributed/rpc/agent_utils.cpp -> /pytorch/torch/csrc/distributed/rpc/agent_utils.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/init.cpp -> /pytorch/torch/csrc/distributed/rpc/init.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/rref_impl.h -> /pytorch/torch/csrc/distributed/rpc/rref_impl.h [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/python_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/python_remote_call.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/metrics/registry.cpp -> /pytorch/torch/csrc/distributed/rpc/metrics/registry.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> /pytorch/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp -> /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp -> /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/testing/testing.h -> /pytorch/torch/csrc/distributed/rpc/testing/testing.h [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/distributed/rpc/testing/init.cpp -> /pytorch/torch/csrc/distributed/rpc/testing/init.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/serialize.cpp -> /pytorch/torch/csrc/api/src/serialize.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/jit.cpp -> /pytorch/torch/csrc/api/src/jit.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/enum.cpp -> /pytorch/torch/csrc/api/src/enum.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/cuda.cpp -> /pytorch/torch/csrc/api/src/cuda.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/imethod.cpp -> /pytorch/torch/csrc/api/src/imethod.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/module.cpp -> /pytorch/torch/csrc/api/src/nn/module.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/init.cpp -> /pytorch/torch/csrc/api/src/nn/init.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/vision.cpp -> /pytorch/torch/csrc/api/src/nn/options/vision.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/padding.cpp -> /pytorch/torch/csrc/api/src/nn/options/padding.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/dropout.cpp -> /pytorch/torch/csrc/api/src/nn/options/dropout.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/adaptive.cpp -> /pytorch/torch/csrc/api/src/nn/options/adaptive.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/normalization.cpp -> /pytorch/torch/csrc/api/src/nn/options/normalization.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/instancenorm.cpp -> /pytorch/torch/csrc/api/src/nn/options/instancenorm.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/activation.cpp -> /pytorch/torch/csrc/api/src/nn/options/activation.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/embedding.cpp -> /pytorch/torch/csrc/api/src/nn/options/embedding.cpp [skipped, already hipified] +#10 24.45 /pytorch/torch/csrc/api/src/nn/options/conv.cpp -> /pytorch/torch/csrc/api/src/nn/options/conv.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/options/rnn.cpp -> /pytorch/torch/csrc/api/src/nn/options/rnn.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/options/batchnorm.cpp -> /pytorch/torch/csrc/api/src/nn/options/batchnorm.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/options/pooling.cpp -> /pytorch/torch/csrc/api/src/nn/options/pooling.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/options/linear.cpp -> /pytorch/torch/csrc/api/src/nn/options/linear.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/options/transformer.cpp -> /pytorch/torch/csrc/api/src/nn/options/transformer.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/padding.cpp -> /pytorch/torch/csrc/api/src/nn/modules/padding.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/_functions.cpp -> /pytorch/torch/csrc/api/src/nn/modules/_functions.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/dropout.cpp -> /pytorch/torch/csrc/api/src/nn/modules/dropout.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/pixelshuffle.cpp -> /pytorch/torch/csrc/api/src/nn/modules/pixelshuffle.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/adaptive.cpp -> /pytorch/torch/csrc/api/src/nn/modules/adaptive.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/normalization.cpp -> /pytorch/torch/csrc/api/src/nn/modules/normalization.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/instancenorm.cpp -> /pytorch/torch/csrc/api/src/nn/modules/instancenorm.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/upsampling.cpp -> /pytorch/torch/csrc/api/src/nn/modules/upsampling.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/activation.cpp -> /pytorch/torch/csrc/api/src/nn/modules/activation.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/embedding.cpp -> /pytorch/torch/csrc/api/src/nn/modules/embedding.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/fold.cpp -> /pytorch/torch/csrc/api/src/nn/modules/fold.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/loss.cpp -> /pytorch/torch/csrc/api/src/nn/modules/loss.cpp [skipped, already hipified] +#10 24.46 /pytorch/torch/csrc/api/src/nn/modules/conv.cpp -> /pytorch/torch/csrc/api/src/nn/modules/conv.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/rnn.cpp -> /pytorch/torch/csrc/api/src/nn/modules/rnn.cpp [ok] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/batchnorm.cpp -> /pytorch/torch/csrc/api/src/nn/modules/batchnorm.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/pooling.cpp -> /pytorch/torch/csrc/api/src/nn/modules/pooling.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/linear.cpp -> /pytorch/torch/csrc/api/src/nn/modules/linear.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/transformer.cpp -> /pytorch/torch/csrc/api/src/nn/modules/transformer.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/distance.cpp -> /pytorch/torch/csrc/api/src/nn/modules/distance.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/nn/modules/container/functional.cpp -> /pytorch/torch/csrc/api/src/nn/modules/container/functional.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/data/datasets/mnist.cpp -> /pytorch/torch/csrc/api/src/data/datasets/mnist.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/data/samplers/random.cpp -> /pytorch/torch/csrc/api/src/data/samplers/random.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/data/samplers/stream.cpp -> /pytorch/torch/csrc/api/src/data/samplers/stream.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/data/samplers/sequential.cpp -> /pytorch/torch/csrc/api/src/data/samplers/sequential.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/data/samplers/distributed.cpp -> /pytorch/torch/csrc/api/src/data/samplers/distributed.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/serialize/output-archive.cpp -> /pytorch/torch/csrc/api/src/serialize/output-archive.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/serialize/input-archive.cpp -> /pytorch/torch/csrc/api/src/serialize/input-archive.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/optim/adam.cpp -> /pytorch/torch/csrc/api/src/optim/adam.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/optim/rmsprop.cpp -> /pytorch/torch/csrc/api/src/optim/rmsprop.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/optim/optimizer.cpp -> /pytorch/torch/csrc/api/src/optim/optimizer.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/optim/serialize.cpp -> /pytorch/torch/csrc/api/src/optim/serialize.cpp [skipped, already hipified] +#10 24.47 /pytorch/torch/csrc/api/src/optim/adagrad.cpp -> /pytorch/torch/csrc/api/src/optim/adagrad.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/src/optim/adamw.cpp -> /pytorch/torch/csrc/api/src/optim/adamw.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/src/optim/sgd.cpp -> /pytorch/torch/csrc/api/src/optim/sgd.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/src/optim/lbfgs.cpp -> /pytorch/torch/csrc/api/src/optim/lbfgs.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp -> /pytorch/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/src/optim/schedulers/step_lr.cpp -> /pytorch/torch/csrc/api/src/optim/schedulers/step_lr.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/src/python/init.cpp -> /pytorch/torch/csrc/api/src/python/init.cpp [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/include/torch/utils.h -> /pytorch/torch/csrc/api/include/torch/utils.h [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/include/torch/enum.h -> /pytorch/torch/csrc/api/include/torch/enum.h [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/include/torch/imethod.h -> /pytorch/torch/csrc/api/include/torch/imethod.h [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/include/torch/special.h -> /pytorch/torch/csrc/api/include/torch/special.h [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/include/torch/sparse.h -> /pytorch/torch/csrc/api/include/torch/sparse.h [skipped, already hipified] +#10 24.48 /pytorch/torch/csrc/api/include/torch/linalg.h -> /pytorch/torch/csrc/api/include/torch/linalg.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/nested.h -> /pytorch/torch/csrc/api/include/torch/nested.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/types.h -> /pytorch/torch/csrc/api/include/torch/types.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/jit.h -> /pytorch/torch/csrc/api/include/torch/jit.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/ordered_dict.h -> /pytorch/torch/csrc/api/include/torch/ordered_dict.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/autograd.h -> /pytorch/torch/csrc/api/include/torch/autograd.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/all.h -> /pytorch/torch/csrc/api/include/torch/all.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/arg.h -> /pytorch/torch/csrc/api/include/torch/arg.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/optim.h -> /pytorch/torch/csrc/api/include/torch/optim.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/fft.h -> /pytorch/torch/csrc/api/include/torch/fft.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/expanding_array.h -> /pytorch/torch/csrc/api/include/torch/expanding_array.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/data.h -> /pytorch/torch/csrc/api/include/torch/data.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/nn.h -> /pytorch/torch/csrc/api/include/torch/nn.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/cuda.h -> /pytorch/torch/csrc/api/include/torch/cuda.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/torch.h -> /pytorch/torch/csrc/api/include/torch/torch.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/serialize.h -> /pytorch/torch/csrc/api/include/torch/serialize.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/version.h.in -> /pytorch/torch/csrc/api/include/torch/version.h.in [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/python.h -> /pytorch/torch/csrc/api/include/torch/python.h [skipped, already hipified] +#10 24.49 /pytorch/torch/csrc/api/include/torch/nn/pimpl.h -> /pytorch/torch/csrc/api/include/torch/nn/pimpl.h [ok] +#10 24.49 /pytorch/torch/csrc/api/include/torch/nn/module.h -> /pytorch/torch/csrc/api/include/torch/nn/module.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/utils.h -> /pytorch/torch/csrc/api/include/torch/nn/utils.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options.h -> /pytorch/torch/csrc/api/include/torch/nn/options.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/init.h -> /pytorch/torch/csrc/api/include/torch/nn/init.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/functional.h -> /pytorch/torch/csrc/api/include/torch/nn/functional.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/modules.h -> /pytorch/torch/csrc/api/include/torch/nn/modules.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/pimpl-inl.h -> /pytorch/torch/csrc/api/include/torch/nn/pimpl-inl.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/cloneable.h -> /pytorch/torch/csrc/api/include/torch/nn/cloneable.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/options/conv.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/options/pixelshuffle.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/options/distance.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/transformercoder.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformercoder.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/options/loss.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/vision.h -> /pytorch/torch/csrc/api/include/torch/nn/options/vision.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/options/rnn.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/options/normalization.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/transformer.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformer.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/options/pooling.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/options/linear.h [skipped, already hipified] +#10 24.50 /pytorch/torch/csrc/api/include/torch/nn/options/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/options/batchnorm.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/options/embedding.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/options/activation.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/options/padding.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformerlayer.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/adaptive.h -> /pytorch/torch/csrc/api/include/torch/nn/options/adaptive.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/options/fold.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/options/instancenorm.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/options/upsampling.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/options/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/options/dropout.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/convert_parameters.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/utils/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/rnn.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/clip_grad.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/functional/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/conv.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/functional/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/distance.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/functional/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/loss.h [skipped, already hipified] +#10 24.51 /pytorch/torch/csrc/api/include/torch/nn/functional/vision.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/vision.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/normalization.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/pooling.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/linear.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/batchnorm.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/embedding.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/activation.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/padding.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/fold.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/instancenorm.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/upsampling.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/functional/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/dropout.h [skipped, already hipified] +#10 24.52 /pytorch/torch/csrc/api/include/torch/nn/modules/utils.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/utils.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/conv.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/distance.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformercoder.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/loss.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/rnn.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/common.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/common.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/normalization.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/transformer.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformer.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/pooling.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/linear.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/batchnorm.h [skipped, already hipified] +#10 24.53 /pytorch/torch/csrc/api/include/torch/nn/modules/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/embedding.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/activation.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/padding.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformerlayer.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/adaptive.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/adaptive.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/fold.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/instancenorm.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/upsampling.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/dropout.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/_functions.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/_functions.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/functional.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/functional.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_value.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/sequential.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/modulelist.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h [skipped, already hipified] +#10 24.54 /pytorch/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/named_any.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/moduledict.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> /pytorch/torch/csrc/api/include/torch/nn/parallel/data_parallel.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/dataloader.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/example.h -> /pytorch/torch/csrc/api/include/torch/data/example.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/iterator.h -> /pytorch/torch/csrc/api/include/torch/data/iterator.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/transforms.h -> /pytorch/torch/csrc/api/include/torch/data/transforms.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers.h -> /pytorch/torch/csrc/api/include/torch/data/samplers.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets.h -> /pytorch/torch/csrc/api/include/torch/data/datasets.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/dataloader_options.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader_options.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/worker_exception.h -> /pytorch/torch/csrc/api/include/torch/data/worker_exception.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/map.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/map.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/stateful.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/stateful.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/tensor.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/tensor.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/shared.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/shared.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/base.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/base.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/chunk.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/chunk.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/datasets/mnist.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/mnist.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/random.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/random.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/base.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/base.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/stream.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/stream.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/sequential.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/sequential.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/serialize.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/serialize.h [skipped, already hipified] +#10 24.55 /pytorch/torch/csrc/api/include/torch/data/samplers/distributed.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/distributed.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/dataloader/stateful.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/stateful.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/dataloader/stateless.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/stateless.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/dataloader/base.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/base.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/transforms/stack.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/stack.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/transforms/tensor.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/tensor.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/transforms/base.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/base.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/transforms/collate.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/collate.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/transforms/lambda.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/lambda.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/detail/sequencers.h -> /pytorch/torch/csrc/api/include/torch/data/detail/sequencers.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/detail/queue.h -> /pytorch/torch/csrc/api/include/torch/data/detail/queue.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> /pytorch/torch/csrc/api/include/torch/data/detail/data_shuttle.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/serialize/tensor.h -> /pytorch/torch/csrc/api/include/torch/serialize/tensor.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/serialize/input-archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/input-archive.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/serialize/archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/archive.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/serialize/output-archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/output-archive.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/rmsprop.h -> /pytorch/torch/csrc/api/include/torch/optim/rmsprop.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/sgd.h -> /pytorch/torch/csrc/api/include/torch/optim/sgd.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/optimizer.h -> /pytorch/torch/csrc/api/include/torch/optim/optimizer.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/adagrad.h -> /pytorch/torch/csrc/api/include/torch/optim/adagrad.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/adam.h -> /pytorch/torch/csrc/api/include/torch/optim/adam.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/adamw.h -> /pytorch/torch/csrc/api/include/torch/optim/adamw.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/serialize.h -> /pytorch/torch/csrc/api/include/torch/optim/serialize.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/lbfgs.h -> /pytorch/torch/csrc/api/include/torch/optim/lbfgs.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> /pytorch/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> /pytorch/torch/csrc/api/include/torch/optim/schedulers/step_lr.h [skipped, already hipified] +#10 24.56 /pytorch/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> /pytorch/torch/csrc/api/include/torch/detail/TensorDataContainer.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/api/include/torch/detail/static.h -> /pytorch/torch/csrc/api/include/torch/detail/static.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/api/include/torch/python/init.h -> /pytorch/torch/csrc/api/include/torch/python/init.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/monitor/python_init.h -> /pytorch/torch/csrc/monitor/python_init.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/monitor/events.h -> /pytorch/torch/csrc/monitor/events.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/monitor/counters.cpp -> /pytorch/torch/csrc/monitor/counters.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/monitor/counters.h -> /pytorch/torch/csrc/monitor/counters.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/monitor/events.cpp -> /pytorch/torch/csrc/monitor/events.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/monitor/python_init.cpp -> /pytorch/torch/csrc/monitor/python_init.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/dynamo/init.h -> /pytorch/torch/csrc/dynamo/init.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/dynamo/guards.cpp -> /pytorch/torch/csrc/dynamo/guards.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/dynamo/eval_frame.h -> /pytorch/torch/csrc/dynamo/eval_frame.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/dynamo/eval_frame.c -> /pytorch/torch/csrc/dynamo/eval_frame.c [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/dynamo/guards.h -> /pytorch/torch/csrc/dynamo/guards.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/dynamo/init.cpp -> /pytorch/torch/csrc/dynamo/init.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/tensor/python_tensor.h -> /pytorch/torch/csrc/tensor/python_tensor.h [skipped, already hipified] +#10 24.57 /pytorch/torch/csrc/tensor/python_tensor.cpp -> /pytorch/torch/csrc/tensor/python_tensor.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/utils/data/datapipes/datapipe.pyi.in -> /pytorch/torch/utils/data/datapipes/datapipe.pyi.in [skipped, already hipified] +#10 24.57 /pytorch/torch/utils/benchmark/utils/timeit_template.cpp -> /pytorch/torch/utils/benchmark/utils/timeit_template.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp [skipped, already hipified] +#10 24.57 /pytorch/torch/_inductor/codegen/cpp_prefix.h -> /pytorch/torch/_inductor/codegen/cpp_prefix.h [skipped, already hipified] +#10 24.57 /pytorch/torch/lib/libshm/manager.cpp -> /pytorch/torch/lib/libshm/manager.cpp [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm/core.cpp -> /pytorch/torch/lib/libshm/core.cpp [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm/err.h -> /pytorch/torch/lib/libshm/err.h [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm/libshm.h -> /pytorch/torch/lib/libshm/libshm.h [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm/socket.h -> /pytorch/torch/lib/libshm/socket.h [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm/alloc_info.h -> /pytorch/torch/lib/libshm/alloc_info.h [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm_windows/core.cpp -> /pytorch/torch/lib/libshm_windows/core.cpp [skipped, already hipified] +#10 24.58 /pytorch/torch/lib/libshm_windows/libshm.h -> /pytorch/torch/lib/libshm_windows/libshm.h [skipped, already hipified] +#10 24.58 /pytorch/torch/nn/functional.pyi.in -> /pytorch/torch/nn/functional.pyi.in [skipped, already hipified] +#10 24.58 /pytorch/torch/_C/return_types.pyi.in -> /pytorch/torch/_C/return_types.pyi.in [skipped, already hipified] +#10 24.58 /pytorch/torch/_C/__init__.pyi.in -> /pytorch/torch/_C/__init__.pyi.in [skipped, already hipified] +#10 24.58 /pytorch/torch/_C/_nn.pyi.in -> /pytorch/torch/_C/_nn.pyi.in [skipped, already hipified] +#10 24.58 /pytorch/torch/_C/_VariableFunctions.pyi.in -> /pytorch/torch/_C/_VariableFunctions.pyi.in [skipped, already hipified] +#10 24.58 /pytorch/caffe2/db/create_db_op_gpu.cc -> /pytorch/caffe2/db/hip/create_db_op_gpu.cc [ok] +#10 24.58 /pytorch/caffe2/core/context_gpu.h -> /pytorch/caffe2/core/hip/context_gpu.h [ok] +#10 24.58 /pytorch/caffe2/core/net_gpu_test.cc -> /pytorch/caffe2/core/hip/net_gpu_test.cc [ok] +#10 24.59 /pytorch/caffe2/core/common_gpu.cc -> /pytorch/caffe2/core/hip/common_gpu.cc [ok] +#10 24.59 /pytorch/caffe2/core/event_gpu.cc -> /pytorch/caffe2/core/hip/event_gpu.cc [ok] +#10 24.59 /pytorch/caffe2/core/event_gpu_test.cc -> /pytorch/caffe2/core/hip/event_gpu_test.cc [ok] +#10 24.59 /pytorch/caffe2/core/blob_serialization_gpu.cc -> /pytorch/caffe2/core/hip/blob_serialization_gpu.cc [ok] +#10 24.59 /pytorch/caffe2/core/context_gpu_test.cc -> /pytorch/caffe2/core/hip/context_gpu_test.cc [ok] +#10 24.59 /pytorch/caffe2/core/blob_gpu_test.cc -> /pytorch/caffe2/core/hip/blob_gpu_test.cc [ok] +#10 24.59 /pytorch/caffe2/core/context_gpu.cu -> /pytorch/caffe2/core/hip/context_gpu.hip [ok] +#10 24.59 /pytorch/caffe2/core/common_gpu.h -> /pytorch/caffe2/core/hip/common_gpu.h [ok] +#10 24.59 /pytorch/caffe2/core/operator_gpu_test.cc -> /pytorch/caffe2/core/hip/operator_gpu_test.cc [ok] +#10 24.59 /pytorch/caffe2/utils/GpuAtomics.cuh -> /pytorch/caffe2/utils/hip/GpuAtomics.cuh [ok] +#10 24.59 /pytorch/caffe2/utils/GpuScanUtils.cuh -> /pytorch/caffe2/utils/hip/GpuScanUtils.cuh [ok] +#10 24.59 /pytorch/caffe2/utils/cub_namespace.cuh -> /pytorch/caffe2/utils/hip/cub_namespace.cuh [ok] +#10 24.59 /pytorch/caffe2/utils/math_gpu_test.cc -> /pytorch/caffe2/utils/hip/math_gpu_test.cc [ok] +#10 24.59 /pytorch/caffe2/utils/GpuDefs.cuh -> /pytorch/caffe2/utils/hip/GpuDefs.cuh [ok] +#10 24.60 /pytorch/caffe2/utils/math_gpu.cu -> /pytorch/caffe2/utils/hip/math_gpu.hip [ok] +#10 24.60 /pytorch/caffe2/utils/GpuBitonicSort.cuh -> /pytorch/caffe2/utils/hip/GpuBitonicSort.cuh [ok] +#10 24.60 /pytorch/caffe2/utils/math/reduce.cuh -> /pytorch/caffe2/utils/math/hip/reduce.cuh [ok] +#10 24.60 /pytorch/caffe2/utils/math/broadcast.cu -> /pytorch/caffe2/utils/math/hip/broadcast.hip [ok] +#10 24.60 /pytorch/caffe2/utils/math/transpose.cu -> /pytorch/caffe2/utils/math/hip/transpose.hip [ok] +#10 24.60 /pytorch/caffe2/utils/math/reduce.cu -> /pytorch/caffe2/utils/math/hip/reduce.hip [ok] +#10 24.60 /pytorch/caffe2/utils/math/elementwise.cu -> /pytorch/caffe2/utils/math/hip/elementwise.hip [ok] +#10 24.60 /pytorch/caffe2/mpi/mpi_gpu_test.cc -> /pytorch/caffe2/mpi/hip/mpi_gpu_test.cc [ok] +#10 24.60 /pytorch/caffe2/distributed/redis_store_handler_op_gpu.cc -> /pytorch/caffe2/distributed/hip/redis_store_handler_op_gpu.cc [ok] +#10 24.60 /pytorch/caffe2/distributed/file_store_handler_op_gpu.cc -> /pytorch/caffe2/distributed/hip/file_store_handler_op_gpu.cc [ok] +#10 24.60 /pytorch/caffe2/operators/channel_shuffle_op.cu -> /pytorch/caffe2/operators/hip/channel_shuffle_op.hip [ok] +#10 24.60 /pytorch/caffe2/operators/sparse_normalize_op_gpu.cu -> /pytorch/caffe2/operators/hip/sparse_normalize_op_gpu.hip [ok] +#10 24.60 /pytorch/caffe2/operators/zero_gradient_op_gpu.cc -> /pytorch/caffe2/operators/hip/zero_gradient_op_gpu.cc [ok] +#10 24.60 /pytorch/caffe2/operators/roi_align_rotated_op.cu -> /pytorch/caffe2/operators/hip/roi_align_rotated_op.hip [ok] +#10 24.60 /pytorch/caffe2/operators/batch_sparse_to_dense_op.cu -> /pytorch/caffe2/operators/hip/batch_sparse_to_dense_op.hip [ok] +#10 24.60 /pytorch/caffe2/operators/operator_fallback_gpu.h -> /pytorch/caffe2/operators/hip/operator_fallback_gpu.h [ok] +#10 24.61 /pytorch/caffe2/operators/relu_n_op.cu -> /pytorch/caffe2/operators/hip/relu_n_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/mem_query_op.cu -> /pytorch/caffe2/operators/hip/mem_query_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/reduce_front_back_max_ops.cu -> /pytorch/caffe2/operators/hip/reduce_front_back_max_ops.hip [ok] +#10 24.61 /pytorch/caffe2/operators/gather_op.cu -> /pytorch/caffe2/operators/hip/gather_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/half_float_ops.cu -> /pytorch/caffe2/operators/hip/half_float_ops.hip [ok] +#10 24.61 /pytorch/caffe2/operators/max_pool_with_index.cu -> /pytorch/caffe2/operators/hip/max_pool_with_index.hip [ok] +#10 24.61 /pytorch/caffe2/operators/data_couple_gpu.cu -> /pytorch/caffe2/operators/hip/data_couple_gpu.hip [ok] +#10 24.61 /pytorch/caffe2/operators/lengths_pad_op.cu -> /pytorch/caffe2/operators/hip/lengths_pad_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/locally_connected_op_gpu.cc -> /pytorch/caffe2/operators/hip/locally_connected_op_gpu.cc [ok] +#10 24.61 /pytorch/caffe2/operators/sparse_lp_regularizer_op_gpu.cu -> /pytorch/caffe2/operators/hip/sparse_lp_regularizer_op_gpu.hip [ok] +#10 24.61 /pytorch/caffe2/operators/prepend_dim_op_gpu.cc -> /pytorch/caffe2/operators/hip/prepend_dim_op_gpu.cc [ok] +#10 24.61 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu_test.cc -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu_test.cc [ok] +#10 24.61 /pytorch/caffe2/operators/while_op_gpu.cc -> /pytorch/caffe2/operators/hip/while_op_gpu.cc [ok] +#10 24.61 /pytorch/caffe2/operators/fully_connected_op_gpu.cc -> /pytorch/caffe2/operators/hip/fully_connected_op_gpu.cc [ok] +#10 24.61 /pytorch/caffe2/operators/im2col_op_gpu.cc -> /pytorch/caffe2/operators/hip/im2col_op_gpu.cc [ok] +#10 24.61 /pytorch/caffe2/operators/transpose_op.cu -> /pytorch/caffe2/operators/hip/transpose_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/sqrt_op_gpu.cc -> /pytorch/caffe2/operators/hip/sqrt_op_gpu.cc [ok] +#10 24.61 /pytorch/caffe2/operators/instance_norm_op.cu -> /pytorch/caffe2/operators/hip/instance_norm_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/summarize_op.cu -> /pytorch/caffe2/operators/hip/summarize_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/tile_op.cu -> /pytorch/caffe2/operators/hip/tile_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/lp_pool_op.cu -> /pytorch/caffe2/operators/hip/lp_pool_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/moments_op.cu -> /pytorch/caffe2/operators/hip/moments_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/cosine_embedding_criterion_op.cu -> /pytorch/caffe2/operators/hip/cosine_embedding_criterion_op.hip [ok] +#10 24.61 /pytorch/caffe2/operators/roi_align_gradient_op.cu -> /pytorch/caffe2/operators/hip/roi_align_gradient_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/cbrt_op.cu -> /pytorch/caffe2/operators/hip/cbrt_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/segment_reduction_op_gpu.cu -> /pytorch/caffe2/operators/hip/segment_reduction_op_gpu.hip [ok] +#10 24.62 /pytorch/caffe2/operators/batch_permutation_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/batch_permutation_op_gpu_test.cc [ok] +#10 24.62 /pytorch/caffe2/operators/ensure_cpu_output_op.cu -> /pytorch/caffe2/operators/hip/ensure_cpu_output_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/sigmoid_op.cu -> /pytorch/caffe2/operators/hip/sigmoid_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/mod_op.cu -> /pytorch/caffe2/operators/hip/mod_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/reshape_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/reshape_op_gpu_test.cc [ok] +#10 24.62 /pytorch/caffe2/operators/one_hot_ops.cu -> /pytorch/caffe2/operators/hip/one_hot_ops.hip [ok] +#10 24.62 /pytorch/caffe2/operators/elementwise_add_op_gpu.cc -> /pytorch/caffe2/operators/hip/elementwise_add_op_gpu.cc [ok] +#10 24.62 /pytorch/caffe2/operators/normalize_ops.cu -> /pytorch/caffe2/operators/hip/normalize_ops.hip [ok] +#10 24.62 /pytorch/caffe2/operators/sqr_op_gpu.cc -> /pytorch/caffe2/operators/hip/sqr_op_gpu.cc [ok] +#10 24.62 /pytorch/caffe2/operators/negative_op_gpu.cc -> /pytorch/caffe2/operators/hip/negative_op_gpu.cc [ok] +#10 24.62 /pytorch/caffe2/operators/scale_op_gpu.cc -> /pytorch/caffe2/operators/hip/scale_op_gpu.cc [ok] +#10 24.62 /pytorch/caffe2/operators/piecewise_linear_transform_op.cu -> /pytorch/caffe2/operators/hip/piecewise_linear_transform_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/cosh_op.cu -> /pytorch/caffe2/operators/hip/cosh_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/enforce_finite_op.cu -> /pytorch/caffe2/operators/hip/enforce_finite_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/elementwise_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/elementwise_op_gpu_test.cc [ok] +#10 24.62 /pytorch/caffe2/operators/counter_ops_gpu.cc -> /pytorch/caffe2/operators/hip/counter_ops_gpu.cc [ok] +#10 24.62 /pytorch/caffe2/operators/lpnorm_op.cu -> /pytorch/caffe2/operators/hip/lpnorm_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/conv_op_shared_gpu.cc -> /pytorch/caffe2/operators/hip/conv_op_shared_gpu.cc [ok] +#10 24.62 /pytorch/caffe2/operators/sparse_to_dense_op.cu -> /pytorch/caffe2/operators/hip/sparse_to_dense_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/mean_op.cu -> /pytorch/caffe2/operators/hip/mean_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/resize_op.cu -> /pytorch/caffe2/operators/hip/resize_op.hip [ok] +#10 24.62 /pytorch/caffe2/operators/stop_gradient_gpu.cc -> /pytorch/caffe2/operators/hip/stop_gradient_gpu.cc [ok] +#10 24.63 /pytorch/caffe2/operators/deform_conv_op.cu -> /pytorch/caffe2/operators/hip/deform_conv_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/utility_ops_gpu_test.cc -> /pytorch/caffe2/operators/hip/utility_ops_gpu_test.cc [ok] +#10 24.63 /pytorch/caffe2/operators/expand_op_gpu.cc -> /pytorch/caffe2/operators/hip/expand_op_gpu.cc [ok] +#10 24.63 /pytorch/caffe2/operators/reverse_packed_segs_op.cu -> /pytorch/caffe2/operators/hip/reverse_packed_segs_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/lstm_unit_op_gpu.cu -> /pytorch/caffe2/operators/hip/lstm_unit_op_gpu.hip [ok] +#10 24.63 /pytorch/caffe2/operators/conv_op_gpu.cc -> /pytorch/caffe2/operators/hip/conv_op_gpu.cc [ok] +#10 24.63 /pytorch/caffe2/operators/async_net_barrier_op.cu -> /pytorch/caffe2/operators/hip/async_net_barrier_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/pow_op.cu -> /pytorch/caffe2/operators/hip/pow_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/ceil_op.cu -> /pytorch/caffe2/operators/hip/ceil_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/lengths_tile_op.cu -> /pytorch/caffe2/operators/hip/lengths_tile_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/roi_align_rotated_gradient_op.cu -> /pytorch/caffe2/operators/hip/roi_align_rotated_gradient_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/log1p_op.cu -> /pytorch/caffe2/operators/hip/log1p_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/spatial_batch_norm_op.cu -> /pytorch/caffe2/operators/hip/spatial_batch_norm_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/batch_gather_ops.cu -> /pytorch/caffe2/operators/hip/batch_gather_ops.hip [ok] +#10 24.63 /pytorch/caffe2/operators/arg_ops.cu -> /pytorch/caffe2/operators/hip/arg_ops.hip [ok] +#10 24.63 /pytorch/caffe2/operators/leaky_relu_op.cu -> /pytorch/caffe2/operators/hip/leaky_relu_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/generate_proposals_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/generate_proposals_op_gpu_test.cc [ok] +#10 24.63 /pytorch/caffe2/operators/conv_transpose_op_gpu.cc -> /pytorch/caffe2/operators/hip/conv_transpose_op_gpu.cc [ok] +#10 24.63 /pytorch/caffe2/operators/concat_split_op_gpu.cc -> /pytorch/caffe2/operators/hip/concat_split_op_gpu.cc [ok] +#10 24.63 /pytorch/caffe2/operators/margin_ranking_criterion_op.cu -> /pytorch/caffe2/operators/hip/margin_ranking_criterion_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/acos_op.cu -> /pytorch/caffe2/operators/hip/acos_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/alias_with_name.cu -> /pytorch/caffe2/operators/hip/alias_with_name.hip [ok] +#10 24.63 /pytorch/caffe2/operators/free_op_gpu.cc -> /pytorch/caffe2/operators/hip/free_op_gpu.cc [ok] +#10 24.63 /pytorch/caffe2/operators/gelu_op.cu -> /pytorch/caffe2/operators/hip/gelu_op.hip [ok] +#10 24.63 /pytorch/caffe2/operators/loss_op.cu -> /pytorch/caffe2/operators/hip/loss_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/softmax_ops.cu -> /pytorch/caffe2/operators/hip/softmax_ops.hip [ok] +#10 24.64 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.cu -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu.hip [ok] +#10 24.64 /pytorch/caffe2/operators/cross_entropy_op.cu -> /pytorch/caffe2/operators/hip/cross_entropy_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/sequence_ops.cu -> /pytorch/caffe2/operators/hip/sequence_ops.hip [ok] +#10 24.64 /pytorch/caffe2/operators/boolean_mask_ops.cu -> /pytorch/caffe2/operators/hip/boolean_mask_ops.hip [ok] +#10 24.64 /pytorch/caffe2/operators/operator_fallback_gpu_test.cc -> /pytorch/caffe2/operators/hip/operator_fallback_gpu_test.cc [ok] +#10 24.64 /pytorch/caffe2/operators/gather_op.cuh -> /pytorch/caffe2/operators/hip/gather_op.cuh [ok] +#10 24.64 /pytorch/caffe2/operators/channel_stats_op.cu -> /pytorch/caffe2/operators/hip/channel_stats_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/space_batch_op_gpu.cu -> /pytorch/caffe2/operators/hip/space_batch_op_gpu.hip [ok] +#10 24.64 /pytorch/caffe2/operators/cast_op.cu -> /pytorch/caffe2/operators/hip/cast_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/find_op.cu -> /pytorch/caffe2/operators/hip/find_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/unsafe_coalesce.cu -> /pytorch/caffe2/operators/hip/unsafe_coalesce.hip [ok] +#10 24.64 /pytorch/caffe2/operators/elementwise_div_op.cu -> /pytorch/caffe2/operators/hip/elementwise_div_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/integral_image_op.cu -> /pytorch/caffe2/operators/hip/integral_image_op.hip [ok] +#10 24.64 /pytorch/caffe2/operators/exp_op_gpu.cc -> /pytorch/caffe2/operators/hip/exp_op_gpu.cc [ok] +#10 24.64 /pytorch/caffe2/operators/pack_segments.cu -> /pytorch/caffe2/operators/hip/pack_segments.hip [ok] +#10 24.64 /pytorch/caffe2/operators/elementwise_sub_op_gpu.cc -> /pytorch/caffe2/operators/hip/elementwise_sub_op_gpu.cc [ok] +#10 24.65 /pytorch/caffe2/operators/roi_align_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/roi_align_op_gpu_test.cc [ok] +#10 24.65 /pytorch/caffe2/operators/prelu_op.cu -> /pytorch/caffe2/operators/hip/prelu_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/utility_ops.cu -> /pytorch/caffe2/operators/hip/utility_ops.hip [ok] +#10 24.65 /pytorch/caffe2/operators/clip_op.cu -> /pytorch/caffe2/operators/hip/clip_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/reduce_front_back_sum_mean_ops.cu -> /pytorch/caffe2/operators/hip/reduce_front_back_sum_mean_ops.hip [ok] +#10 24.65 /pytorch/caffe2/operators/glu_op.cu -> /pytorch/caffe2/operators/hip/glu_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/roi_pool_op.cu -> /pytorch/caffe2/operators/hip/roi_pool_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/weighted_sample_op.cu -> /pytorch/caffe2/operators/hip/weighted_sample_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/atan_op.cu -> /pytorch/caffe2/operators/hip/atan_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/top_k.cu -> /pytorch/caffe2/operators/hip/top_k.hip [ok] +#10 24.65 /pytorch/caffe2/operators/tensor_protos_db_input_gpu.cc -> /pytorch/caffe2/operators/hip/tensor_protos_db_input_gpu.cc [ok] +#10 24.65 /pytorch/caffe2/operators/rsqrt_op.cu -> /pytorch/caffe2/operators/hip/rsqrt_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/elementwise_linear_op.cu -> /pytorch/caffe2/operators/hip/elementwise_linear_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/segment_reduction_op_gpu.cuh -> /pytorch/caffe2/operators/hip/segment_reduction_op_gpu.cuh [ok] +#10 24.65 /pytorch/caffe2/operators/rmac_regions_op.cu -> /pytorch/caffe2/operators/hip/rmac_regions_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/batch_matmul_op.cu -> /pytorch/caffe2/operators/hip/batch_matmul_op.hip [ok] +#10 24.65 /pytorch/caffe2/operators/spatial_batch_norm_op_impl.cuh -> /pytorch/caffe2/operators/hip/spatial_batch_norm_op_impl.cuh [ok] +#10 24.65 /pytorch/caffe2/operators/do_op_gpu.cc -> /pytorch/caffe2/operators/hip/do_op_gpu.cc [ok] +#10 24.65 /pytorch/caffe2/operators/negate_gradient_op_gpu.cc -> /pytorch/caffe2/operators/hip/negate_gradient_op_gpu.cc [ok] +#10 24.65 /pytorch/caffe2/operators/pad_op_gpu.cu -> /pytorch/caffe2/operators/hip/pad_op_gpu.hip [ok] +#10 24.66 /pytorch/caffe2/operators/pool_op.cu -> /pytorch/caffe2/operators/hip/pool_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/roi_align_op.cu -> /pytorch/caffe2/operators/hip/roi_align_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/stump_func_op.cu -> /pytorch/caffe2/operators/hip/stump_func_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/copy_op.cu -> /pytorch/caffe2/operators/hip/copy_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/load_save_op_gpu.cc -> /pytorch/caffe2/operators/hip/load_save_op_gpu.cc [ok] +#10 24.66 /pytorch/caffe2/operators/expand_squeeze_dims_op_gpu.cc -> /pytorch/caffe2/operators/hip/expand_squeeze_dims_op_gpu.cc [ok] +#10 24.66 /pytorch/caffe2/operators/floor_op.cu -> /pytorch/caffe2/operators/hip/floor_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/bucketize_op.cu -> /pytorch/caffe2/operators/hip/bucketize_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/distance_op.cu -> /pytorch/caffe2/operators/hip/distance_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/reshape_op_gpu.cc -> /pytorch/caffe2/operators/hip/reshape_op_gpu.cc [ok] +#10 24.66 /pytorch/caffe2/operators/logit_op.cu -> /pytorch/caffe2/operators/hip/logit_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/accumulate_op.cu -> /pytorch/caffe2/operators/hip/accumulate_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/elu_op.cu -> /pytorch/caffe2/operators/hip/elu_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/top_k_heap_selection.cuh -> /pytorch/caffe2/operators/hip/top_k_heap_selection.cuh [ok] +#10 24.66 /pytorch/caffe2/operators/hard_sigmoid_op.cu -> /pytorch/caffe2/operators/hip/hard_sigmoid_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/reciprocal_op.cu -> /pytorch/caffe2/operators/hip/reciprocal_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/accuracy_op.cu -> /pytorch/caffe2/operators/hip/accuracy_op.hip [ok] +#10 24.66 /pytorch/caffe2/operators/elementwise_ops.cu -> /pytorch/caffe2/operators/hip/elementwise_ops.hip [ok] +#10 24.66 /pytorch/caffe2/operators/reduction_ops.cu -> /pytorch/caffe2/operators/hip/reduction_ops.hip [ok] +#10 24.66 /pytorch/caffe2/operators/shape_op_gpu.cc -> /pytorch/caffe2/operators/hip/shape_op_gpu.cc [ok] +#10 24.67 /pytorch/caffe2/operators/scale_blobs_op.cu -> /pytorch/caffe2/operators/hip/scale_blobs_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/upsample_op.cu -> /pytorch/caffe2/operators/hip/upsample_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/softsign_op.cu -> /pytorch/caffe2/operators/hip/softsign_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/group_norm_op.cu -> /pytorch/caffe2/operators/hip/group_norm_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/layer_norm_op.cu -> /pytorch/caffe2/operators/hip/layer_norm_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/filler_op.cu -> /pytorch/caffe2/operators/hip/filler_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/minmax_ops.cu -> /pytorch/caffe2/operators/hip/minmax_ops.hip [ok] +#10 24.67 /pytorch/caffe2/operators/local_response_normalization_op.cu -> /pytorch/caffe2/operators/hip/local_response_normalization_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/replace_nan_op.cu -> /pytorch/caffe2/operators/hip/replace_nan_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.h -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu.h [ok] +#10 24.67 /pytorch/caffe2/operators/tanh_op.cu -> /pytorch/caffe2/operators/hip/tanh_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/generate_proposals_op.cu -> /pytorch/caffe2/operators/hip/generate_proposals_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/erf_op.cu -> /pytorch/caffe2/operators/hip/erf_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/elementwise_mul_op.cu -> /pytorch/caffe2/operators/hip/elementwise_mul_op.hip [ok] +#10 24.67 /pytorch/caffe2/operators/order_switch_ops_gpu.cc -> /pytorch/caffe2/operators/hip/order_switch_ops_gpu.cc [ok] +#10 24.67 /pytorch/caffe2/operators/unique_ops.cu -> /pytorch/caffe2/operators/hip/unique_ops.hip [ok] +#10 24.67 /pytorch/caffe2/operators/if_op_gpu.cc -> /pytorch/caffe2/operators/hip/if_op_gpu.cc [ok] +#10 24.67 /pytorch/caffe2/operators/swish_op.cu -> /pytorch/caffe2/operators/hip/swish_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/communicator_op_gpu.cc -> /pytorch/caffe2/operators/hip/communicator_op_gpu.cc [ok] +#10 24.68 /pytorch/caffe2/operators/resize_3d_op.cu -> /pytorch/caffe2/operators/hip/resize_3d_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/given_tensor_fill_op.cu -> /pytorch/caffe2/operators/hip/given_tensor_fill_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/boolean_unmask_ops.cu -> /pytorch/caffe2/operators/hip/boolean_unmask_ops.hip [ok] +#10 24.68 /pytorch/caffe2/operators/thresholded_relu_op.cu -> /pytorch/caffe2/operators/hip/thresholded_relu_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/affine_channel_op.cu -> /pytorch/caffe2/operators/hip/affine_channel_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/sinh_op.cu -> /pytorch/caffe2/operators/hip/sinh_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/batch_permutation_op.cu -> /pytorch/caffe2/operators/hip/batch_permutation_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/slice_op.cu -> /pytorch/caffe2/operators/hip/slice_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/perplexity_op.cu -> /pytorch/caffe2/operators/hip/perplexity_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/cos_op.cu -> /pytorch/caffe2/operators/hip/cos_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/reduce_ops.cu -> /pytorch/caffe2/operators/hip/reduce_ops.hip [ok] +#10 24.68 /pytorch/caffe2/operators/assert_op.cu -> /pytorch/caffe2/operators/hip/assert_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/softplus_op.cu -> /pytorch/caffe2/operators/hip/softplus_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/batch_moments_op.cu -> /pytorch/caffe2/operators/hip/batch_moments_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/relu_op.cu -> /pytorch/caffe2/operators/hip/relu_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/given_tensor_byte_string_to_uint8_fill_op.cu -> /pytorch/caffe2/operators/hip/given_tensor_byte_string_to_uint8_fill_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/dropout_op.cu -> /pytorch/caffe2/operators/hip/dropout_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/top_k_radix_selection.cuh -> /pytorch/caffe2/operators/hip/top_k_radix_selection.cuh [ok] +#10 24.68 /pytorch/caffe2/operators/rms_norm_op.cu -> /pytorch/caffe2/operators/hip/rms_norm_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/asin_op.cu -> /pytorch/caffe2/operators/hip/asin_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/max_pool_with_index_gpu.h -> /pytorch/caffe2/operators/hip/max_pool_with_index_gpu.h [ok] +#10 24.68 /pytorch/caffe2/operators/multi_class_accuracy_op.cu -> /pytorch/caffe2/operators/hip/multi_class_accuracy_op.hip [ok] +#10 24.68 /pytorch/caffe2/operators/matmul_op_gpu.cc -> /pytorch/caffe2/operators/hip/matmul_op_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/operators/gru_unit_op_gpu.cu -> /pytorch/caffe2/operators/hip/gru_unit_op_gpu.hip [ok] +#10 24.69 /pytorch/caffe2/operators/selu_op.cu -> /pytorch/caffe2/operators/hip/selu_op.hip [ok] +#10 24.69 /pytorch/caffe2/operators/batch_matmul_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/batch_matmul_op_gpu_test.cc [ok] +#10 24.69 /pytorch/caffe2/operators/log_op_gpu.cc -> /pytorch/caffe2/operators/hip/log_op_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/operators/sin_op.cu -> /pytorch/caffe2/operators/hip/sin_op.hip [ok] +#10 24.69 /pytorch/caffe2/operators/abs_op.cu -> /pytorch/caffe2/operators/hip/abs_op.hip [ok] +#10 24.69 /pytorch/caffe2/operators/tan_op.cu -> /pytorch/caffe2/operators/hip/tan_op.hip [ok] +#10 24.69 /pytorch/caffe2/operators/channel_backprop_stats_op.cu -> /pytorch/caffe2/operators/hip/channel_backprop_stats_op.hip [ok] +#10 24.69 /pytorch/caffe2/operators/cube_op.cu -> /pytorch/caffe2/operators/hip/cube_op.hip [ok] +#10 24.69 /pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.cc -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_executor_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/operators/rnn/recurrent_network_op_gpu.cu -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_op_gpu.hip [ok] +#10 24.69 /pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.h -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_executor_gpu.h [ok] +#10 24.69 /pytorch/caffe2/operators/rnn/recurrent_network_blob_fetcher_op_gpu.cc -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_blob_fetcher_op_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/contrib/aten/aten_op_gpu.cc -> /pytorch/caffe2/contrib/aten/hip/aten_op_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/contrib/gloo/broadcast_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/broadcast_ops_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/contrib/gloo/common_world_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/common_world_ops_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/contrib/gloo/allreduce_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/allreduce_ops_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/contrib/nccl/cuda_nccl_op_gpu.cc -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_op_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.h -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_gpu.h [ok] +#10 24.69 /pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.cc -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/video/video_input_op_gpu.cc -> /pytorch/caffe2/video/hip/video_input_op_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/queue/queue_ops_gpu.cc -> /pytorch/caffe2/queue/hip/queue_ops_gpu.cc [ok] +#10 24.69 /pytorch/caffe2/sgd/fp32_momentum_sgd_op.cu -> /pytorch/caffe2/sgd/hip/fp32_momentum_sgd_op.hip [ok] +#10 24.69 /pytorch/caffe2/sgd/adam_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adam_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/yellowfin_op_gpu.cu -> /pytorch/caffe2/sgd/hip/yellowfin_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/fp16_momentum_sgd_op.cu -> /pytorch/caffe2/sgd/hip/fp16_momentum_sgd_op.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/learning_rate_op_gpu.cc -> /pytorch/caffe2/sgd/hip/learning_rate_op_gpu.cc [ok] +#10 24.70 /pytorch/caffe2/sgd/momentum_sgd_op_gpu.cu -> /pytorch/caffe2/sgd/hip/momentum_sgd_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/adagrad_fused_op_gpu.cuh -> /pytorch/caffe2/sgd/hip/adagrad_fused_op_gpu.cuh [ok] +#10 24.70 /pytorch/caffe2/sgd/adadelta_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adadelta_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/rmsprop_op_gpu.cu -> /pytorch/caffe2/sgd/hip/rmsprop_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/lars_op_gpu.cu -> /pytorch/caffe2/sgd/hip/lars_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/weight_scale_op_gpu.cc -> /pytorch/caffe2/sgd/hip/weight_scale_op_gpu.cc [ok] +#10 24.70 /pytorch/caffe2/sgd/adagrad_fused_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adagrad_fused_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/adagrad_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adagrad_op_gpu.hip [ok] +#10 24.70 /pytorch/caffe2/sgd/iter_op_gpu.cc -> /pytorch/caffe2/sgd/hip/iter_op_gpu.cc [ok] +#10 24.70 /pytorch/caffe2/image/transform_gpu.h -> /pytorch/caffe2/image/hip/transform_gpu.h [ok] +#10 24.70 /pytorch/caffe2/image/image_input_op_gpu.cc -> /pytorch/caffe2/image/hip/image_input_op_gpu.cc [ok] +#10 24.70 /pytorch/caffe2/image/transform_gpu.cu -> /pytorch/caffe2/image/hip/transform_gpu.hip [ok] +#10 24.70 /pytorch/modules/detectron/roi_pool_f_op.cu -> /pytorch/modules/detectron/hip/roi_pool_f_op.hip [ok] +#10 24.70 /pytorch/modules/detectron/group_spatial_softmax_op.cu -> /pytorch/modules/detectron/hip/group_spatial_softmax_op.hip [ok] +#10 24.70 /pytorch/modules/detectron/sigmoid_focal_loss_op.cu -> /pytorch/modules/detectron/hip/sigmoid_focal_loss_op.hip [ok] +#10 24.70 /pytorch/modules/detectron/sample_as_op.cu -> /pytorch/modules/detectron/hip/sample_as_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/sigmoid_cross_entropy_loss_op.cu -> /pytorch/modules/detectron/hip/sigmoid_cross_entropy_loss_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/smooth_l1_loss_op.cu -> /pytorch/modules/detectron/hip/smooth_l1_loss_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/select_smooth_l1_loss_op.cu -> /pytorch/modules/detectron/hip/select_smooth_l1_loss_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/ps_roi_pool_op.cu -> /pytorch/modules/detectron/hip/ps_roi_pool_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/softmax_focal_loss_op.cu -> /pytorch/modules/detectron/hip/softmax_focal_loss_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/upsample_nearest_op.cu -> /pytorch/modules/detectron/hip/upsample_nearest_op.hip [ok] +#10 24.71 /pytorch/modules/detectron/spatial_narrow_as_op.cu -> /pytorch/modules/detectron/hip/spatial_narrow_as_op.hip [ok] +#10 24.71 /pytorch/c10/cuda/CUDAFunctions.cpp -> /pytorch/c10/hip/HIPFunctions.cpp [ok] +#10 24.71 /pytorch/c10/cuda/CUDAMathCompat.h -> /pytorch/c10/hip/HIPMathCompat.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDAStream.h -> /pytorch/c10/hip/HIPStream.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDAException.cpp -> /pytorch/c10/hip/HIPException.cpp [ok] +#10 24.71 /pytorch/c10/cuda/CUDAStream.cpp -> /pytorch/c10/hip/HIPStream.cpp [ok] +#10 24.71 /pytorch/c10/cuda/CUDAGraphsC10Utils.h -> /pytorch/c10/hip/HIPGraphsC10Utils.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDAMiscFunctions.h -> /pytorch/c10/hip/HIPMiscFunctions.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDADeviceAssertion.h -> /pytorch/c10/hip/HIPDeviceAssertion.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDACachingAllocator.h -> /pytorch/c10/hip/HIPCachingAllocator.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDAAlgorithm.h -> /pytorch/c10/hip/HIPAlgorithm.h [ok] +#10 24.71 /pytorch/c10/cuda/CUDAMiscFunctions.cpp -> /pytorch/c10/hip/HIPMiscFunctions.cpp [ok] +#10 24.71 /pytorch/c10/cuda/CUDADeviceAssertionHost.cpp -> /pytorch/c10/hip/HIPDeviceAssertionHost.cpp [ok] +#10 24.72 /pytorch/c10/cuda/CUDACachingAllocator.cpp -> /pytorch/c10/hip/HIPCachingAllocator.cpp [ok] +#10 24.72 /pytorch/c10/cuda/CUDAMacros.h -> /pytorch/c10/hip/HIPMacros.h [ok] +#10 24.72 /pytorch/c10/cuda/CUDAFunctions.h -> /pytorch/c10/hip/HIPFunctions.h [ok] +#10 24.72 /pytorch/c10/cuda/CUDAMallocAsyncAllocator.cpp -> /pytorch/c10/hip/HIPMallocAsyncAllocator.cpp [ok] +#10 24.72 /pytorch/c10/cuda/CUDAException.h -> /pytorch/c10/hip/HIPException.h [ok] +#10 24.72 /pytorch/c10/cuda/CUDAGuard.h -> /pytorch/c10/hip/HIPGuard.h [ok] +#10 24.72 /pytorch/c10/cuda/CUDADeviceAssertionHost.h -> /pytorch/c10/hip/HIPDeviceAssertionHost.h [ok] +#10 24.72 /pytorch/c10/cuda/impl/CUDATest.h -> /pytorch/c10/hip/impl/HIPTest.h [ok] +#10 24.72 /pytorch/c10/cuda/impl/CUDAGuardImpl.cpp -> /pytorch/c10/hip/impl/HIPGuardImpl.cpp [ok] +#10 24.72 /pytorch/c10/cuda/impl/CUDAGuardImpl.h -> /pytorch/c10/hip/impl/HIPGuardImpl.h [ok] +#10 24.72 /pytorch/c10/cuda/impl/cuda_cmake_macros.h.in -> /pytorch/c10/hip/impl/hip_cmake_macros.h.in [ok] +#10 24.72 /pytorch/c10/cuda/impl/CUDATest.cpp -> /pytorch/c10/hip/impl/HIPTest.cpp [ok] +#10 24.72 /pytorch/c10/cuda/test/CMakeLists.txt -> /pytorch/c10/hip/test/CMakeLists.txt [ok] +#10 24.72 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_multiple_blocks.hip [ok] +#10 24.72 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_same_block.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_same_block.hip [ok] +#10 24.72 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_from_2_processes.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_from_2_processes.hip [ok] +#10 24.72 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_1_var_test.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_1_var_test.hip [ok] +#10 24.72 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_catches_stream.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_catches_stream.hip [ok] +#10 24.73 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_catches_thread_and_block_and_device.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_catches_thread_and_block_and_device.hip [ok] +#10 24.73 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_blocks_and_threads.hip [ok] +#10 24.73 /pytorch/c10/cuda/test/impl/CUDATest.cpp -> /pytorch/c10/hip/test/impl/HIPTest.cpp [ok] +#10 24.73 /pytorch/third_party/nvfuser/csrc/partition.cpp -> /pytorch/third_party/nvfuser/csrc/partition.cpp [ok] +#10 24.73 /pytorch/third_party/nvfuser/csrc/lower_validation.h -> /pytorch/third_party/nvfuser/csrc/lower_validation.h [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/manager.h -> /pytorch/third_party/nvfuser/csrc/manager.h [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/iter_visitor.cpp -> /pytorch/third_party/nvfuser/csrc/iter_visitor.cpp [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/lower_allocation.h -> /pytorch/third_party/nvfuser/csrc/lower_allocation.h [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/inlining.h -> /pytorch/third_party/nvfuser/csrc/inlining.h [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/lower_double_buffer.h -> /pytorch/third_party/nvfuser/csrc/lower_double_buffer.h [ok] +#10 24.73 /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.cpp [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/lower_shift.h -> /pytorch/third_party/nvfuser/csrc/lower_shift.h [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/lower2device.cpp -> /pytorch/third_party/nvfuser/csrc/lower2device.cpp [ok] +#10 24.73 /pytorch/third_party/nvfuser/csrc/inlining.cpp -> /pytorch/third_party/nvfuser/csrc/inlining.cpp [skipped, already hipified] +#10 24.73 /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.cpp -> /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.cpp [skipped, already hipified] +#10 24.74 /pytorch/third_party/nvfuser/csrc/fusion.h -> /pytorch/third_party/nvfuser/csrc/fusion.h [skipped, already hipified] +#10 24.74 /pytorch/third_party/nvfuser/csrc/lower_index_compute.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index_compute.cpp [skipped, already hipified] +#10 24.74 /pytorch/third_party/nvfuser/csrc/register_interface.cpp -> /pytorch/third_party/nvfuser/csrc/register_interface.cpp [skipped, already hipified] +#10 24.74 /pytorch/third_party/nvfuser/csrc/fusion.cpp -> /pytorch/third_party/nvfuser/csrc/fusion.cpp [skipped, already hipified] +#10 24.74 /pytorch/third_party/nvfuser/csrc/utils.h -> /pytorch/third_party/nvfuser/csrc/utils.h [skipped, already hipified] +#10 24.74 /pytorch/third_party/nvfuser/csrc/lower_shift.cpp -> /pytorch/third_party/nvfuser/csrc/lower_shift.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/type_inference.cpp -> /pytorch/third_party/nvfuser/csrc/type_inference.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/kernel_ir.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_ir.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/iter_visitor.h -> /pytorch/third_party/nvfuser/csrc/iter_visitor.h [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.cpp -> /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/ir_graphviz.cpp -> /pytorch/third_party/nvfuser/csrc/ir_graphviz.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/ir_container.h -> /pytorch/third_party/nvfuser/csrc/ir_container.h [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/manager.cpp -> /pytorch/third_party/nvfuser/csrc/manager.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/lower_magic_zero.cpp -> /pytorch/third_party/nvfuser/csrc/lower_magic_zero.cpp [skipped, already hipified] +#10 24.75 /pytorch/third_party/nvfuser/csrc/type_promotion.cpp -> /pytorch/third_party/nvfuser/csrc/type_promotion.cpp [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/root_domain_map.cpp -> /pytorch/third_party/nvfuser/csrc/root_domain_map.cpp [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/lower2device.h -> /pytorch/third_party/nvfuser/csrc/lower2device.h [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/non_divisible_split.h -> /pytorch/third_party/nvfuser/csrc/non_divisible_split.h [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/lower_predicate.h -> /pytorch/third_party/nvfuser/csrc/lower_predicate.h [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/ir_iostream.h -> /pytorch/third_party/nvfuser/csrc/ir_iostream.h [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/ir_internal_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_internal_nodes.h [skipped, already hipified] +#10 24.76 /pytorch/third_party/nvfuser/csrc/grouped_reduction.cpp -> /pytorch/third_party/nvfuser/csrc/grouped_reduction.cpp [skipped, already hipified] +#10 24.77 /pytorch/third_party/nvfuser/csrc/ir_nodes.cpp -> /pytorch/third_party/nvfuser/csrc/ir_nodes.cpp [skipped, already hipified] +#10 24.77 /pytorch/third_party/nvfuser/csrc/partial_split_map.h -> /pytorch/third_party/nvfuser/csrc/partial_split_map.h [skipped, already hipified] +#10 24.77 /pytorch/third_party/nvfuser/csrc/lower_validation.cpp -> /pytorch/third_party/nvfuser/csrc/lower_validation.cpp [ok] +#10 24.77 /pytorch/third_party/nvfuser/csrc/mutator.cpp -> /pytorch/third_party/nvfuser/csrc/mutator.cpp [skipped, already hipified] +#10 24.77 /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.cpp -> /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.cpp [ok] +#10 24.78 /pytorch/third_party/nvfuser/csrc/ir_container.cpp -> /pytorch/third_party/nvfuser/csrc/ir_container.cpp [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_divisible_split.h -> /pytorch/third_party/nvfuser/csrc/lower_divisible_split.h [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_sync_information.h -> /pytorch/third_party/nvfuser/csrc/lower_sync_information.h [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/dispatch.cpp -> /pytorch/third_party/nvfuser/csrc/dispatch.cpp [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_unroll.h -> /pytorch/third_party/nvfuser/csrc/lower_unroll.h [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_index_hoist.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index_hoist.cpp [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.cpp [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/ir_base_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_base_nodes.h [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.h -> /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.h [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/partial_split_map.cpp -> /pytorch/third_party/nvfuser/csrc/partial_split_map.cpp [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_expr_sort.h -> /pytorch/third_party/nvfuser/csrc/lower_expr_sort.h [skipped, already hipified] +#10 24.78 /pytorch/third_party/nvfuser/csrc/lower_alias_memory.cpp -> /pytorch/third_party/nvfuser/csrc/lower_alias_memory.cpp [skipped, already hipified] +#10 24.79 /pytorch/third_party/nvfuser/csrc/expr_evaluator.h -> /pytorch/third_party/nvfuser/csrc/expr_evaluator.h [skipped, already hipified] +#10 24.79 /pytorch/third_party/nvfuser/csrc/lower_predicate.cpp -> /pytorch/third_party/nvfuser/csrc/lower_predicate.cpp [skipped, already hipified] +#10 24.79 /pytorch/third_party/nvfuser/csrc/index_compute.cpp -> /pytorch/third_party/nvfuser/csrc/index_compute.cpp [skipped, already hipified] +#10 24.79 /pytorch/third_party/nvfuser/csrc/predicate_compute.h -> /pytorch/third_party/nvfuser/csrc/predicate_compute.h [skipped, already hipified] +#10 24.79 /pytorch/third_party/nvfuser/csrc/compute_at_map.h -> /pytorch/third_party/nvfuser/csrc/compute_at_map.h [skipped, already hipified] +#10 24.80 /pytorch/third_party/nvfuser/csrc/executor_utils.cpp -> /pytorch/third_party/nvfuser/csrc/executor_utils.cpp [ok] +#10 24.80 /pytorch/third_party/nvfuser/csrc/predicate_compute.cpp -> /pytorch/third_party/nvfuser/csrc/predicate_compute.cpp [skipped, already hipified] +#10 24.80 /pytorch/third_party/nvfuser/csrc/register_interface.h -> /pytorch/third_party/nvfuser/csrc/register_interface.h [skipped, already hipified] +#10 24.80 /pytorch/third_party/nvfuser/csrc/lower_index.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index.cpp [skipped, already hipified] +#10 24.80 /pytorch/third_party/nvfuser/csrc/type_promotion.h -> /pytorch/third_party/nvfuser/csrc/type_promotion.h [skipped, already hipified] +#10 24.80 /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.h -> /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.h [skipped, already hipified] +#10 24.80 /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.h -> /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.h [skipped, already hipified] +#10 24.81 /pytorch/third_party/nvfuser/csrc/type.cpp -> /pytorch/third_party/nvfuser/csrc/type.cpp [ok] +#10 24.81 /pytorch/third_party/nvfuser/csrc/arith.cpp -> /pytorch/third_party/nvfuser/csrc/arith.cpp [skipped, already hipified] +#10 24.81 /pytorch/third_party/nvfuser/csrc/ir_graphviz.h -> /pytorch/third_party/nvfuser/csrc/ir_graphviz.h [skipped, already hipified] +#10 24.81 /pytorch/third_party/nvfuser/csrc/ir_iostream.cpp -> /pytorch/third_party/nvfuser/csrc/ir_iostream.cpp [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/ir_utils.cpp -> /pytorch/third_party/nvfuser/csrc/ir_utils.cpp [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/lower_loops.cpp -> /pytorch/third_party/nvfuser/csrc/lower_loops.cpp [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/transform_rfactor.cpp -> /pytorch/third_party/nvfuser/csrc/transform_rfactor.cpp [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/kernel_cache.h -> /pytorch/third_party/nvfuser/csrc/kernel_cache.h [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/disjoint_set.h -> /pytorch/third_party/nvfuser/csrc/disjoint_set.h [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.cpp -> /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.cpp [skipped, already hipified] +#10 24.82 /pytorch/third_party/nvfuser/csrc/utils.cpp -> /pytorch/third_party/nvfuser/csrc/utils.cpp [skipped, already hipified] +#10 24.83 /pytorch/third_party/nvfuser/csrc/parser.cpp -> /pytorch/third_party/nvfuser/csrc/parser.cpp [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/lower_replace_size.cpp -> /pytorch/third_party/nvfuser/csrc/lower_replace_size.cpp [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.h -> /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/transform_view.h -> /pytorch/third_party/nvfuser/csrc/transform_view.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/type_inference.h -> /pytorch/third_party/nvfuser/csrc/type_inference.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/type.h -> /pytorch/third_party/nvfuser/csrc/type.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/transform_iter.h -> /pytorch/third_party/nvfuser/csrc/transform_iter.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/lower_magic_zero.h -> /pytorch/third_party/nvfuser/csrc/lower_magic_zero.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/expr_evaluator.cpp -> /pytorch/third_party/nvfuser/csrc/expr_evaluator.cpp [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/compute_at_map.cpp -> /pytorch/third_party/nvfuser/csrc/compute_at_map.cpp [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/codegen.h -> /pytorch/third_party/nvfuser/csrc/codegen.h [skipped, already hipified] +#10 24.84 /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.h -> /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.h [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/fusion_segmenter.cpp -> /pytorch/third_party/nvfuser/csrc/fusion_segmenter.cpp [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/compute_at.cpp -> /pytorch/third_party/nvfuser/csrc/compute_at.cpp [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.cpp -> /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.cpp [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.cpp -> /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.cpp [ok] +#10 24.85 /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.cpp -> /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.cpp [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.h -> /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.h [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/parser.h -> /pytorch/third_party/nvfuser/csrc/parser.h [skipped, already hipified] +#10 24.85 /pytorch/third_party/nvfuser/csrc/vectorization_info.h -> /pytorch/third_party/nvfuser/csrc/vectorization_info.h [skipped, already hipified] +#10 24.86 /pytorch/third_party/nvfuser/csrc/dynamic_type.h -> /pytorch/third_party/nvfuser/csrc/dynamic_type.h [skipped, already hipified] +#10 24.86 /pytorch/third_party/nvfuser/csrc/lower_unroll.cpp -> /pytorch/third_party/nvfuser/csrc/lower_unroll.cpp [skipped, already hipified] +#10 24.86 /pytorch/third_party/nvfuser/csrc/kernel.h -> /pytorch/third_party/nvfuser/csrc/kernel.h [skipped, already hipified] +#10 24.86 /pytorch/third_party/nvfuser/csrc/lower_utils.cpp -> /pytorch/third_party/nvfuser/csrc/lower_utils.cpp [ok] +#10 24.86 /pytorch/third_party/nvfuser/csrc/instrumentation.cpp -> /pytorch/third_party/nvfuser/csrc/instrumentation.cpp [skipped, already hipified] +#10 24.86 /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.cpp -> /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.cpp [ok] +#10 24.86 /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.cpp -> /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.cpp [ok] +#10 24.87 /pytorch/third_party/nvfuser/csrc/kernel_cache.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_cache.cpp [ok] +#10 24.87 /pytorch/third_party/nvfuser/csrc/executor_launch_params.h -> /pytorch/third_party/nvfuser/csrc/executor_launch_params.h [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/evaluator_common.h -> /pytorch/third_party/nvfuser/csrc/evaluator_common.h [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/ir_cloner.cpp -> /pytorch/third_party/nvfuser/csrc/ir_cloner.cpp [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/lower_double_buffer.cpp -> /pytorch/third_party/nvfuser/csrc/lower_double_buffer.cpp [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/ir_utils.h -> /pytorch/third_party/nvfuser/csrc/ir_utils.h [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/ir_builder.h -> /pytorch/third_party/nvfuser/csrc/ir_builder.h [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/lower_instrument.cpp -> /pytorch/third_party/nvfuser/csrc/lower_instrument.cpp [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/transform_view.cpp -> /pytorch/third_party/nvfuser/csrc/transform_view.cpp [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/lower_loops.h -> /pytorch/third_party/nvfuser/csrc/lower_loops.h [skipped, already hipified] +#10 24.87 /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.cpp -> /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.cpp [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/kernel.cpp -> /pytorch/third_party/nvfuser/csrc/kernel.cpp [ok] +#10 24.88 /pytorch/third_party/nvfuser/csrc/lower_index_compute.h -> /pytorch/third_party/nvfuser/csrc/lower_index_compute.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/compute_at.h -> /pytorch/third_party/nvfuser/csrc/compute_at.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/transform_replay.h -> /pytorch/third_party/nvfuser/csrc/transform_replay.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.h -> /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/instrumentation.h -> /pytorch/third_party/nvfuser/csrc/instrumentation.h [ok] +#10 24.88 /pytorch/third_party/nvfuser/csrc/mutator.h -> /pytorch/third_party/nvfuser/csrc/mutator.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/fusion_segmenter.h -> /pytorch/third_party/nvfuser/csrc/fusion_segmenter.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/lower_instrument.h -> /pytorch/third_party/nvfuser/csrc/lower_instrument.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/root_domain_map.h -> /pytorch/third_party/nvfuser/csrc/root_domain_map.h [skipped, already hipified] +#10 24.88 /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.h -> /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.h [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/lower_expr_sort.cpp -> /pytorch/third_party/nvfuser/csrc/lower_expr_sort.cpp [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/contiguity.cpp -> /pytorch/third_party/nvfuser/csrc/contiguity.cpp [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/lower_replace_size.h -> /pytorch/third_party/nvfuser/csrc/lower_replace_size.h [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/executor.cpp -> /pytorch/third_party/nvfuser/csrc/executor.cpp [ok] +#10 24.89 /pytorch/third_party/nvfuser/csrc/ir_cloner.h -> /pytorch/third_party/nvfuser/csrc/ir_cloner.h [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/tensor_view.cpp -> /pytorch/third_party/nvfuser/csrc/tensor_view.cpp [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/mma_type.h -> /pytorch/third_party/nvfuser/csrc/mma_type.h [skipped, already hipified] +#10 24.89 /pytorch/third_party/nvfuser/csrc/ir_printer.h -> /pytorch/third_party/nvfuser/csrc/ir_printer.h [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/evaluator_common.cpp -> /pytorch/third_party/nvfuser/csrc/evaluator_common.cpp [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.cpp -> /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.cpp [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/ir_all_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_all_nodes.h [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.cpp -> /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.cpp [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/lower_utils.h -> /pytorch/third_party/nvfuser/csrc/lower_utils.h [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.h -> /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.h [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/non_divisible_split.cpp -> /pytorch/third_party/nvfuser/csrc/non_divisible_split.cpp [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/mma_type.cpp -> /pytorch/third_party/nvfuser/csrc/mma_type.cpp [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/contiguity.h -> /pytorch/third_party/nvfuser/csrc/contiguity.h [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/executor_launch_params.cpp -> /pytorch/third_party/nvfuser/csrc/executor_launch_params.cpp [ok] +#10 24.90 /pytorch/third_party/nvfuser/csrc/dispatch.h -> /pytorch/third_party/nvfuser/csrc/dispatch.h [skipped, already hipified] +#10 24.90 /pytorch/third_party/nvfuser/csrc/lower_sync_information.cpp -> /pytorch/third_party/nvfuser/csrc/lower_sync_information.cpp [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/lower_divisible_split.cpp -> /pytorch/third_party/nvfuser/csrc/lower_divisible_split.cpp [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/arith.h -> /pytorch/third_party/nvfuser/csrc/arith.h [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/executor.h -> /pytorch/third_party/nvfuser/csrc/executor.h [ok] +#10 24.91 /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.h -> /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.h [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/transform_iter.cpp -> /pytorch/third_party/nvfuser/csrc/transform_iter.cpp [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/kernel_ir.h -> /pytorch/third_party/nvfuser/csrc/kernel_ir.h [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.h -> /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.h [skipped, already hipified] +#10 24.91 /pytorch/third_party/nvfuser/csrc/ir_base_nodes.cpp -> /pytorch/third_party/nvfuser/csrc/ir_base_nodes.cpp [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/lower_index.h -> /pytorch/third_party/nvfuser/csrc/lower_index.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/grouped_reduction.h -> /pytorch/third_party/nvfuser/csrc/grouped_reduction.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/partition.h -> /pytorch/third_party/nvfuser/csrc/partition.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/lower_alias_memory.h -> /pytorch/third_party/nvfuser/csrc/lower_alias_memory.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.h -> /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.h -> /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/lower_index_hoist.h -> /pytorch/third_party/nvfuser/csrc/lower_index_hoist.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/transform_rfactor.h -> /pytorch/third_party/nvfuser/csrc/transform_rfactor.h [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.h -> /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.h [ok] +#10 24.92 /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.cpp -> /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.cpp [skipped, already hipified] +#10 24.92 /pytorch/third_party/nvfuser/csrc/executor_utils.h -> /pytorch/third_party/nvfuser/csrc/executor_utils.h [ok] +#10 24.92 /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.h -> /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.h [skipped, already hipified] +#10 24.93 /pytorch/third_party/nvfuser/csrc/graph_fuser.cpp -> /pytorch/third_party/nvfuser/csrc/graph_fuser.cpp [skipped, already hipified] +#10 24.93 /pytorch/third_party/nvfuser/csrc/ir_builder.cpp -> /pytorch/third_party/nvfuser/csrc/ir_builder.cpp [skipped, already hipified] +#10 24.93 /pytorch/third_party/nvfuser/csrc/index_compute.h -> /pytorch/third_party/nvfuser/csrc/index_compute.h [skipped, already hipified] +#10 24.93 /pytorch/third_party/nvfuser/csrc/ir_interface_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_interface_nodes.h [skipped, already hipified] +#10 24.93 /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.h -> /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.h [skipped, already hipified] +#10 24.93 /pytorch/third_party/nvfuser/csrc/transform_replay.cpp -> /pytorch/third_party/nvfuser/csrc/transform_replay.cpp [skipped, already hipified] +#10 24.94 /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.cpp -> /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.cpp [skipped, already hipified] +#10 24.94 /pytorch/third_party/nvfuser/csrc/lower_allocation.cpp -> /pytorch/third_party/nvfuser/csrc/lower_allocation.cpp [skipped, already hipified] +#10 24.94 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.h [skipped, already hipified] +#10 24.94 /pytorch/third_party/nvfuser/csrc/scheduler/utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/utils.h [skipped, already hipified] +#10 24.94 /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.cpp [skipped, already hipified] +#10 24.95 /pytorch/third_party/nvfuser/csrc/scheduler/registry.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/registry.cpp [ok] +#10 24.95 /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.cpp [skipped, already hipified] +#10 24.96 /pytorch/third_party/nvfuser/csrc/scheduler/transpose.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose.cpp [ok] +#10 24.96 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.cpp [ok] +#10 24.96 /pytorch/third_party/nvfuser/csrc/scheduler/matmul.h -> /pytorch/third_party/nvfuser/csrc/scheduler/matmul.h [skipped, already hipified] +#10 24.97 /pytorch/third_party/nvfuser/csrc/scheduler/reduction.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction.cpp [ok] +#10 24.97 /pytorch/third_party/nvfuser/csrc/scheduler/utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/utils.cpp [skipped, already hipified] +#10 24.97 /pytorch/third_party/nvfuser/csrc/scheduler/debug_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/debug_utils.h [skipped, already hipified] +#10 24.97 /pytorch/third_party/nvfuser/csrc/scheduler/normalization.h -> /pytorch/third_party/nvfuser/csrc/scheduler/normalization.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/normalization.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/normalization.cpp [ok] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_heuristic.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/registry.h -> /pytorch/third_party/nvfuser/csrc/scheduler/registry.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/transpose_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose_heuristic.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_heuristic.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/heuristic.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/reduction.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/all_schedulers.h -> /pytorch/third_party/nvfuser/csrc/scheduler/all_schedulers.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.h -> /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.cpp [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.cpp [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/compile_time_info.h -> /pytorch/third_party/nvfuser/csrc/scheduler/compile_time_info.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.h [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/matmul.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/matmul.cpp [skipped, already hipified] +#10 24.98 /pytorch/third_party/nvfuser/csrc/scheduler/transpose.h -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose.h [skipped, already hipified] +#10 24.99 /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.h [skipped, already hipified] +#10 24.99 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.h [skipped, already hipified] +#10 24.99 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.cpp [skipped, already hipified] +#10 24.99 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings_extension.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings_extension.cpp [skipped, already hipified] +#10 24.99 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.cpp [skipped, already hipified] +#10 24.99 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.cpp [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_record.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_record.h [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.h [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.h [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.h [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.cpp [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.h [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_cache.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_cache.cpp [ok] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_definition.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_definition.cpp [ok] +#10 25.00 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_record.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_record.cpp [ok] +#10 25.00 /pytorch/third_party/nvfuser/csrc/ops/composite.h -> /pytorch/third_party/nvfuser/csrc/ops/composite.h [skipped, already hipified] +#10 25.00 /pytorch/third_party/nvfuser/csrc/ops/normalization.h -> /pytorch/third_party/nvfuser/csrc/ops/normalization.h [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/csrc/ops/normalization.cpp -> /pytorch/third_party/nvfuser/csrc/ops/normalization.cpp [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/csrc/ops/composite.cpp -> /pytorch/third_party/nvfuser/csrc/ops/composite.cpp [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/csrc/ops/all_ops.h -> /pytorch/third_party/nvfuser/csrc/ops/all_ops.h [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/csrc/ops/alias.h -> /pytorch/third_party/nvfuser/csrc/ops/alias.h [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/csrc/ops/alias.cpp -> /pytorch/third_party/nvfuser/csrc/ops/alias.cpp [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/csrc/docs/documentation.h -> /pytorch/third_party/nvfuser/csrc/docs/documentation.h [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/examples/sinh_extension/main.cpp -> /pytorch/third_party/nvfuser/examples/sinh_extension/main.cpp [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/examples/sinh_libtorch/main.cpp -> /pytorch/third_party/nvfuser/examples/sinh_libtorch/main.cpp [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/fp16_support.cu -> /pytorch/third_party/nvfuser/runtime/fp16_support.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/welford.cu -> /pytorch/third_party/nvfuser/runtime/welford.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/swizzle.cu -> /pytorch/third_party/nvfuser/runtime/swizzle.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/tensorcore.cu -> /pytorch/third_party/nvfuser/runtime/tensorcore.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/grid_sync.cu -> /pytorch/third_party/nvfuser/runtime/grid_sync.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/array_rocm.cu -> /pytorch/third_party/nvfuser/runtime/array_rocm.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/tensor.cu -> /pytorch/third_party/nvfuser/runtime/tensor.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/random_numbers.cu -> /pytorch/third_party/nvfuser/runtime/random_numbers.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/tuple.cu -> /pytorch/third_party/nvfuser/runtime/tuple.cu [skipped, already hipified] +#10 25.01 /pytorch/third_party/nvfuser/runtime/block_sync_default.cu -> /pytorch/third_party/nvfuser/runtime/block_sync_default.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/array.cu -> /pytorch/third_party/nvfuser/runtime/array.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/warp_rocm.cu -> /pytorch/third_party/nvfuser/runtime/warp_rocm.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/type_traits.cu -> /pytorch/third_party/nvfuser/runtime/type_traits.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/bf16_support.cu -> /pytorch/third_party/nvfuser/runtime/bf16_support.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/memory.cu -> /pytorch/third_party/nvfuser/runtime/memory.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/warp.cu -> /pytorch/third_party/nvfuser/runtime/warp.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/fused_reduction.cu -> /pytorch/third_party/nvfuser/runtime/fused_reduction.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/grid_broadcast.cu -> /pytorch/third_party/nvfuser/runtime/grid_broadcast.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/fused_welford_helper.cu -> /pytorch/third_party/nvfuser/runtime/fused_welford_helper.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/fused_welford_impl.cu -> /pytorch/third_party/nvfuser/runtime/fused_welford_impl.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/index_utils.cu -> /pytorch/third_party/nvfuser/runtime/index_utils.cu [skipped, already hipified] +#10 25.02 /pytorch/third_party/nvfuser/runtime/bf16_support_rocm.cu -> /pytorch/third_party/nvfuser/runtime/bf16_support_rocm.cu [skipped, already hipified] +#10 25.04 /pytorch/third_party/nvfuser/test/test_gpu2.cpp -> /pytorch/third_party/nvfuser/test/test_gpu2.cpp [ok] +#10 25.04 /pytorch/third_party/nvfuser/test/test_gpu_tensor_factories.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_tensor_factories.cpp [ok] +#10 25.05 /pytorch/third_party/nvfuser/test/test_gpu3.cpp -> /pytorch/third_party/nvfuser/test/test_gpu3.cpp [ok] +#10 25.05 /pytorch/third_party/nvfuser/test/test_utils.h -> /pytorch/third_party/nvfuser/test/test_utils.h [ok] +#10 25.05 /pytorch/third_party/nvfuser/test/test_gpu_transpose.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_transpose.cpp [ok] +#10 25.07 /pytorch/third_party/nvfuser/test/test_gpu_shift.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_shift.cpp [ok] +#10 25.07 /pytorch/third_party/nvfuser/test/test_gpu_tensorcore.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_tensorcore.cpp [ok] +#10 25.07 /pytorch/third_party/nvfuser/test/test_gpu_validator.h -> /pytorch/third_party/nvfuser/test/test_gpu_validator.h [ok] +#10 25.08 /pytorch/third_party/nvfuser/test/test_gpu_fused_reduction.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_fused_reduction.cpp [ok] +#10 25.08 /pytorch/third_party/nvfuser/test/test_gpu_utils.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_utils.cpp [ok] +#10 25.08 /pytorch/third_party/nvfuser/test/test_gpu_view.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_view.cpp [ok] +#10 25.09 /pytorch/third_party/nvfuser/test/test_gpu_rng.cu -> /pytorch/third_party/nvfuser/test/test_gpu_rng.cu [ok] +#10 25.11 /pytorch/third_party/nvfuser/test/test_gpu1.cpp -> /pytorch/third_party/nvfuser/test/test_gpu1.cpp [ok] +#10 25.11 Successfully preprocessed all matching files. +#10 25.27 Building wheel torch-2.0.0a0+gite9ebda2 +#10 25.33 -- Building version 2.0.0a0+gite9ebda2 +#10 25.34 cmake -GNinja -DBUILD_PYTHON=True -DBUILD_TEST=True -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/pytorch/torch -DCMAKE_POLICY_VERSION_MINIMUM=3.18 -DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages -DNUMPY_INCLUDE_DIR=/usr/local/lib/python3.10/dist-packages/numpy/_core/include -DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.10 -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 -DTORCH_BUILD_VERSION=2.0.0a0+gite9ebda2 -DUSE_NINJA=1 -DUSE_NUMPY=True /pytorch +#10 25.48 -- The CXX compiler identification is GNU 11.3.0 +#10 25.56 -- The C compiler identification is GNU 11.3.0 +#10 25.57 -- Detecting CXX compiler ABI info +#10 25.62 -- Detecting CXX compiler ABI info - done +#10 25.63 -- Check for working CXX compiler: /usr/bin/c++ - skipped +#10 25.63 -- Detecting CXX compile features +#10 25.63 -- Detecting CXX compile features - done +#10 25.63 -- Detecting C compiler ABI info +#10 25.68 -- Detecting C compiler ABI info - done +#10 25.68 -- Check for working C compiler: /usr/bin/cc - skipped +#10 25.68 -- Detecting C compile features +#10 25.68 -- Detecting C compile features - done +#10 25.68 -- /usr/bin/c++ /pytorch/torch/abi-check.cpp -o /pytorch/build/abi-check +#10 25.94 -- Determined _GLIBCXX_USE_CXX11_ABI=1 +#10 25.94 -- Not forcing any particular BLAS to be found +#10 25.94 -- Could not find ccache. Consider installing ccache to speed up compilation. +#10 25.95 -- Performing Test COMPILER_WORKS +#10 25.99 -- Performing Test COMPILER_WORKS - Success +#10 25.99 -- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING +#10 26.01 -- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING - Failed +#10 26.01 -- Turning off deprecation warning due to glog. +#10 26.01 -- Performing Test C_HAS_AVX_1 +#10 26.19 -- Performing Test C_HAS_AVX_1 - Failed +#10 26.19 -- Performing Test C_HAS_AVX_2 +#10 26.37 -- Performing Test C_HAS_AVX_2 - Success +#10 26.37 -- Performing Test C_HAS_AVX2_1 +#10 26.53 -- Performing Test C_HAS_AVX2_1 - Failed +#10 26.53 -- Performing Test C_HAS_AVX2_2 +#10 26.71 -- Performing Test C_HAS_AVX2_2 - Success +#10 26.71 -- Performing Test C_HAS_AVX512_1 +#10 26.87 -- Performing Test C_HAS_AVX512_1 - Failed +#10 26.87 -- Performing Test C_HAS_AVX512_2 +#10 27.01 -- Performing Test C_HAS_AVX512_2 - Failed +#10 27.01 -- Performing Test C_HAS_AVX512_3 +#10 27.17 -- Performing Test C_HAS_AVX512_3 - Failed +#10 27.17 -- Performing Test CXX_HAS_AVX_1 +#10 27.33 -- Performing Test CXX_HAS_AVX_1 - Failed +#10 27.33 -- Performing Test CXX_HAS_AVX_2 +#10 27.51 -- Performing Test CXX_HAS_AVX_2 - Success +#10 27.51 -- Performing Test CXX_HAS_AVX2_1 +#10 27.67 -- Performing Test CXX_HAS_AVX2_1 - Failed +#10 27.67 -- Performing Test CXX_HAS_AVX2_2 +#10 27.84 -- Performing Test CXX_HAS_AVX2_2 - Success +#10 27.84 -- Performing Test CXX_HAS_AVX512_1 +#10 28.00 -- Performing Test CXX_HAS_AVX512_1 - Failed +#10 28.00 -- Performing Test CXX_HAS_AVX512_2 +#10 28.14 -- Performing Test CXX_HAS_AVX512_2 - Failed +#10 28.14 -- Performing Test CXX_HAS_AVX512_3 +#10 28.30 -- Performing Test CXX_HAS_AVX512_3 - Failed +#10 28.30 -- Current compiler supports avx2 extension. Will build perfkernels. +#10 28.30 -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS +#10 28.56 -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success +#10 28.56 -- Current compiler supports avx512f extension. Will build fbgemm. +#10 28.56 -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY +#10 28.61 -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success +#10 28.61 -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY +#10 28.66 -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success +#10 28.66 -- Performing Test COMPILER_SUPPORTS_RDYNAMIC +#10 28.71 -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success +#10 28.71 CUDA_TOOLKIT_ROOT_DIR not found or specified +#10 28.73 -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) +#10 28.73 CMake Warning at cmake/public/cuda.cmake:31 (message): +#10 28.73 Caffe2: CUDA cannot be found. Depending on whether you are building Caffe2 +#10 28.73 or a Caffe2 dependent library, the next warning / error will give you more +#10 28.73 info. +#10 28.73 Call Stack (most recent call first): +#10 28.73 cmake/Dependencies.cmake:43 (include) +#10 28.73 CMakeLists.txt:717 (include) +#10 28.73 +#10 28.73 +#10 28.73 CMake Warning at cmake/Dependencies.cmake:66 (message): +#10 28.73 Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. +#10 28.73 Call Stack (most recent call first): +#10 28.73 CMakeLists.txt:717 (include) +#10 28.73 +#10 28.73 +#10 28.73 -- Building using own protobuf under third_party per request. +#10 28.73 -- Use custom protobuf build. +#10 28.73 -- +#10 28.73 -- 3.13.0.0 +#10 28.73 -- Looking for pthread.h +#10 28.78 -- Looking for pthread.h - found +#10 28.78 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +#10 28.82 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +#10 28.82 -- Found Threads: TRUE +#10 28.83 -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS +#10 28.90 -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success +#10 28.92 -- Caffe2 protobuf include directory: $$ +#10 28.92 -- Trying to find preferred BLAS backend of choice: MKL +#10 28.92 -- MKL_THREADING = OMP +#10 28.92 -- Looking for sys/types.h +#10 28.96 -- Looking for sys/types.h - found +#10 28.96 -- Looking for stdint.h +#10 29.00 -- Looking for stdint.h - found +#10 29.00 -- Looking for stddef.h +#10 29.04 -- Looking for stddef.h - found +#10 29.04 -- Check size of void* +#10 29.09 -- Check size of void* - done +#10 29.11 -- MKL_THREADING = OMP +#10 29.13 CMake Warning at cmake/Dependencies.cmake:226 (message): +#10 29.13 MKL could not be found. Defaulting to Eigen +#10 29.13 Call Stack (most recent call first): +#10 29.13 CMakeLists.txt:717 (include) +#10 29.13 +#10 29.13 +#10 29.13 CMake Warning at cmake/Dependencies.cmake:263 (message): +#10 29.13 Preferred BLAS (MKL) cannot be found, now searching for a general BLAS +#10 29.13 library +#10 29.13 Call Stack (most recent call first): +#10 29.13 CMakeLists.txt:717 (include) +#10 29.13 +#10 29.13 +#10 29.13 -- MKL_THREADING = OMP +#10 29.13 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_intel_lp64: not found +#10 29.13 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_intel_lp64: not found +#10 29.13 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_intel: not found +#10 29.13 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_intel: not found +#10 29.13 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_gf_lp64: not found +#10 29.13 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_gf_lp64: not found +#10 29.13 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_gf: not found +#10 29.13 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 29.13 -- Library mkl_gf: not found +#10 29.13 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.13 -- Library mkl_intel_lp64: not found +#10 29.13 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.13 -- Library mkl_intel_lp64: not found +#10 29.13 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.13 -- Library mkl_intel: not found +#10 29.13 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.13 -- Library mkl_intel: not found +#10 29.13 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.14 -- Library mkl_gf_lp64: not found +#10 29.14 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.14 -- Library mkl_gf_lp64: not found +#10 29.14 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.14 -- Library mkl_gf: not found +#10 29.14 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 29.14 -- Library mkl_gf: not found +#10 29.14 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_intel_lp64: not found +#10 29.14 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_intel_lp64: not found +#10 29.14 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_intel: not found +#10 29.14 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_intel: not found +#10 29.14 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_gf_lp64: not found +#10 29.14 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_gf_lp64: not found +#10 29.14 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_gf: not found +#10 29.14 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 29.14 -- Library mkl_gf: not found +#10 29.14 -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m - dl] +#10 29.14 -- Library mkl_intel_lp64: not found +#10 29.14 -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] +#10 29.14 -- Library mkl_intel: not found +#10 29.14 -- Checking for [mkl_gf_lp64 - mkl_sequential - mkl_core - m - dl] +#10 29.14 -- Library mkl_gf_lp64: not found +#10 29.14 -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] +#10 29.14 -- Library mkl_gf: not found +#10 29.14 -- Checking for [mkl_intel_lp64 - mkl_core - gomp - pthread - m - dl] +#10 29.14 -- Library mkl_intel_lp64: not found +#10 29.14 -- Checking for [mkl_intel - mkl_core - gomp - pthread - m - dl] +#10 29.14 -- Library mkl_intel: not found +#10 29.14 -- Checking for [mkl_gf_lp64 - mkl_core - gomp - pthread - m - dl] +#10 29.14 -- Library mkl_gf_lp64: not found +#10 29.14 -- Checking for [mkl_gf - mkl_core - gomp - pthread - m - dl] +#10 29.14 -- Library mkl_gf: not found +#10 29.14 -- Checking for [mkl_intel_lp64 - mkl_core - iomp5 - pthread - m - dl] +#10 29.15 -- Library mkl_intel_lp64: not found +#10 29.15 -- Checking for [mkl_intel - mkl_core - iomp5 - pthread - m - dl] +#10 29.15 -- Library mkl_intel: not found +#10 29.15 -- Checking for [mkl_gf_lp64 - mkl_core - iomp5 - pthread - m - dl] +#10 29.15 -- Library mkl_gf_lp64: not found +#10 29.15 -- Checking for [mkl_gf - mkl_core - iomp5 - pthread - m - dl] +#10 29.15 -- Library mkl_gf: not found +#10 29.15 -- Checking for [mkl_intel_lp64 - mkl_core - pthread - m - dl] +#10 29.15 -- Library mkl_intel_lp64: not found +#10 29.15 -- Checking for [mkl_intel - mkl_core - pthread - m - dl] +#10 29.15 -- Library mkl_intel: not found +#10 29.15 -- Checking for [mkl_gf_lp64 - mkl_core - pthread - m - dl] +#10 29.15 -- Library mkl_gf_lp64: not found +#10 29.15 -- Checking for [mkl_gf - mkl_core - pthread - m - dl] +#10 29.15 -- Library mkl_gf: not found +#10 29.15 -- Checking for [mkl - guide - pthread - m] +#10 29.15 -- Library mkl: not found +#10 29.15 -- MKL library not found +#10 29.15 -- Checking for [blis] +#10 29.15 -- Library blis: BLAS_blis_LIBRARY-NOTFOUND +#10 29.15 -- Checking for [Accelerate] +#10 29.15 -- Library Accelerate: BLAS_Accelerate_LIBRARY-NOTFOUND +#10 29.15 -- Checking for [vecLib] +#10 29.15 -- Library vecLib: BLAS_vecLib_LIBRARY-NOTFOUND +#10 29.15 -- Checking for [flexiblas] +#10 29.15 -- Library flexiblas: BLAS_flexiblas_LIBRARY-NOTFOUND +#10 29.15 -- Checking for [openblas] +#10 29.15 -- Library openblas: /usr/lib/x86_64-linux-gnu/libopenblas.so +#10 29.15 -- Looking for sgemm_ +#10 29.21 -- Looking for sgemm_ - found +#10 29.21 -- Performing Test BLAS_F2C_DOUBLE_WORKS +#10 29.29 -- Performing Test BLAS_F2C_DOUBLE_WORKS - Failed +#10 29.29 -- Performing Test BLAS_F2C_FLOAT_WORKS +#10 29.37 -- Performing Test BLAS_F2C_FLOAT_WORKS - Success +#10 29.37 -- Performing Test BLAS_USE_CBLAS_DOT +#10 29.44 -- Performing Test BLAS_USE_CBLAS_DOT - Success +#10 29.44 -- Looking for sbgemm_ +#10 29.48 -- Looking for sbgemm_ - not found +#10 29.48 -- Found a library with BLAS API (open). Full path: (/usr/lib/x86_64-linux-gnu/libopenblas.so) +#10 29.48 -- Using pocketfft in directory: /pytorch/third_party/pocketfft/ +#10 29.51 -- The ASM compiler identification is GNU +#10 29.51 -- Found assembler: /usr/bin/cc +#10 29.52 -- Brace yourself, we are building NNPACK +#10 29.53 -- Performing Test NNPACK_ARCH_IS_X86_32 +#10 29.55 -- Performing Test NNPACK_ARCH_IS_X86_32 - Failed +#10 29.56 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 29.56 -- NNPACK backend is x86-64 +#10 29.85 -- Found Python: /usr/bin/python3.10 (found version "3.10.12") found components: Interpreter +#10 29.86 -- Failed to find LLVM FileCheck +#10 29.86 -- Found Git: /usr/bin/git (found version "2.34.1") +#10 29.88 -- git version: v1.6.1 normalized to 1.6.1 +#10 29.88 -- Version: 1.6.1 +#10 29.88 -- Looking for shm_open in rt +#10 29.92 -- Looking for shm_open in rt - found +#10 29.92 -- Performing Test HAVE_CXX_FLAG_STD_CXX11 +#10 29.97 -- Performing Test HAVE_CXX_FLAG_STD_CXX11 - Success +#10 29.97 -- Performing Test HAVE_CXX_FLAG_WALL +#10 30.02 -- Performing Test HAVE_CXX_FLAG_WALL - Success +#10 30.02 -- Performing Test HAVE_CXX_FLAG_WEXTRA +#10 30.08 -- Performing Test HAVE_CXX_FLAG_WEXTRA - Success +#10 30.08 -- Performing Test HAVE_CXX_FLAG_WSHADOW +#10 30.13 -- Performing Test HAVE_CXX_FLAG_WSHADOW - Success +#10 30.13 -- Performing Test HAVE_CXX_FLAG_WERROR +#10 30.18 -- Performing Test HAVE_CXX_FLAG_WERROR - Success +#10 30.18 -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE +#10 30.23 -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE - Success +#10 30.23 -- Performing Test HAVE_CXX_FLAG_PEDANTIC +#10 30.28 -- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success +#10 30.29 -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS +#10 30.34 -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success +#10 30.34 -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 +#10 30.37 -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Failed +#10 30.37 -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING +#10 30.42 -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success +#10 30.42 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS +#10 30.47 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success +#10 30.47 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED +#10 30.52 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED - Success +#10 30.52 -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING +#10 30.57 -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success +#10 30.57 -- Performing Test HAVE_CXX_FLAG_WD654 +#10 30.59 -- Performing Test HAVE_CXX_FLAG_WD654 - Failed +#10 30.59 -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY +#10 30.62 -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Failed +#10 30.62 -- Performing Test HAVE_CXX_FLAG_COVERAGE +#10 30.67 -- Performing Test HAVE_CXX_FLAG_COVERAGE - Success +#10 30.67 -- Performing Test HAVE_STD_REGEX +#10 30.67 -- Performing Test HAVE_STD_REGEX +#10 32.32 -- Performing Test HAVE_STD_REGEX -- success +#10 32.32 -- Performing Test HAVE_GNU_POSIX_REGEX +#10 32.32 -- Performing Test HAVE_GNU_POSIX_REGEX +#10 32.34 -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile +#10 32.34 -- Performing Test HAVE_POSIX_REGEX +#10 32.34 -- Performing Test HAVE_POSIX_REGEX +#10 32.50 -- Performing Test HAVE_POSIX_REGEX -- success +#10 32.50 -- Performing Test HAVE_STEADY_CLOCK +#10 32.50 -- Performing Test HAVE_STEADY_CLOCK +#10 32.60 -- Performing Test HAVE_STEADY_CLOCK -- success +#10 32.62 -- Performing Test COMPILER_SUPPORTS_AVX512 +#10 32.68 -- Performing Test COMPILER_SUPPORTS_AVX512 - Success +#10 32.83 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 32.83 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 32.83 does not match the name of the calling package (OpenMP). This can lead to +#10 32.83 problems in calling code that expects `find_package` result variables +#10 32.83 (e.g., `_FOUND`) to follow a certain pattern. +#10 32.83 Call Stack (most recent call first): +#10 32.83 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 32.83 third_party/fbgemm/CMakeLists.txt:85 (find_package) +#10 32.83 This warning is for project developers. Use -Wno-dev to suppress it. +#10 32.83 +#10 32.83 -- Found OpenMP_C: -fopenmp (found version "4.5") +#10 32.89 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 32.89 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 32.89 does not match the name of the calling package (OpenMP). This can lead to +#10 32.89 problems in calling code that expects `find_package` result variables +#10 32.89 (e.g., `_FOUND`) to follow a certain pattern. +#10 32.89 Call Stack (most recent call first): +#10 32.89 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 32.89 third_party/fbgemm/CMakeLists.txt:85 (find_package) +#10 32.89 This warning is for project developers. Use -Wno-dev to suppress it. +#10 32.89 +#10 32.89 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#10 32.89 -- Found OpenMP: TRUE (found version "4.5") +#10 32.89 CMake Warning at third_party/fbgemm/CMakeLists.txt:87 (message): +#10 32.89 OpenMP found! OpenMP_C_INCLUDE_DIRS = +#10 32.89 +#10 32.89 +#10 32.96 CMake Warning at third_party/fbgemm/CMakeLists.txt:186 (message): +#10 32.96 ========== +#10 32.96 +#10 32.96 +#10 32.96 CMake Warning at third_party/fbgemm/CMakeLists.txt:187 (message): +#10 32.96 CMAKE_BUILD_TYPE = Release +#10 32.96 +#10 32.96 +#10 32.96 CMake Warning at third_party/fbgemm/CMakeLists.txt:188 (message): +#10 32.96 CMAKE_CXX_FLAGS_DEBUG is -g +#10 32.96 +#10 32.96 +#10 32.96 CMake Warning at third_party/fbgemm/CMakeLists.txt:189 (message): +#10 32.96 CMAKE_CXX_FLAGS_RELEASE is -O3 -DNDEBUG +#10 32.96 +#10 32.96 +#10 32.96 CMake Warning at third_party/fbgemm/CMakeLists.txt:190 (message): +#10 32.96 ========== +#10 32.96 +#10 32.96 +#10 32.96 -- Performing Test __CxxFlag__fno_threadsafe_statics +#10 33.01 -- Performing Test __CxxFlag__fno_threadsafe_statics - Success +#10 33.02 -- Performing Test __CxxFlag__fno_semantic_interposition +#10 33.07 -- Performing Test __CxxFlag__fno_semantic_interposition - Success +#10 33.07 -- Performing Test __CxxFlag__fmerge_all_constants +#10 33.12 -- Performing Test __CxxFlag__fmerge_all_constants - Success +#10 33.12 -- Performing Test __CxxFlag__fno_enforce_eh_specs +#10 33.17 -- Performing Test __CxxFlag__fno_enforce_eh_specs - Success +#10 33.17 ** AsmJit Summary ** +#10 33.17 ASMJIT_DIR=/pytorch/third_party/fbgemm/third_party/asmjit +#10 33.17 ASMJIT_TEST=FALSE +#10 33.17 ASMJIT_TARGET_TYPE=STATIC +#10 33.17 ASMJIT_DEPS=pthread;rt +#10 33.17 ASMJIT_LIBS=asmjit;pthread;rt +#10 33.17 ASMJIT_CFLAGS=-DASMJIT_STATIC +#10 33.17 ASMJIT_PRIVATE_CFLAGS=-Wall;-Wextra;-Wconversion;-fno-math-errno;-fno-threadsafe-statics;-fno-semantic-interposition;-DASMJIT_STATIC +#10 33.17 ASMJIT_PRIVATE_CFLAGS_DBG= +#10 33.17 ASMJIT_PRIVATE_CFLAGS_REL=-O2;-fmerge-all-constants;-fno-enforce-eh-specs +#10 33.18 -- Found Numa: /usr/include +#10 33.18 -- Found Numa (include: /usr/include, library: /usr/lib/x86_64-linux-gnu/libnuma.so) +#10 33.18 -- Using third party subdirectory Eigen. +#10 33.20 -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.12", minimum required is "3.0") +#10 33.20 -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 (found suitable version "3.10.12", minimum required is "3.0") +#10 33.20 -- Using third_party/pybind11. +#10 33.20 -- pybind11 include dirs: /pytorch/cmake/../third_party/pybind11/include +#10 33.26 -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) +#10 33.31 -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) +#10 33.31 -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) +#10 33.31 CMake Warning at cmake/Dependencies.cmake:1179 (message): +#10 33.31 Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF +#10 33.31 Call Stack (most recent call first): +#10 33.31 CMakeLists.txt:717 (include) +#10 33.31 +#10 33.31 +#10 33.32 -- Found OpenMP_C: -fopenmp +#10 33.32 -- Found OpenMP_CXX: -fopenmp +#10 33.32 -- Found OpenMP: TRUE +#10 33.32 -- Adding OpenMP CXX_FLAGS: -fopenmp +#10 33.32 -- Will link against OpenMP libraries: /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so;/usr/lib/x86_64-linux-gnu/libpthread.a +#10 33.32 -- Disabling kernel asserts for ROCm +#10 33.32 Building PyTorch for GPU arch: gfx803 +#10 33.50 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#10 33.51 HIP VERSION: 5.4.22803-474e8620 +#10 33.56 -- Caffe2: Header version is: 5.4.2 +#10 33.56 +#10 33.56 ***** ROCm version from rocm_version.h **** +#10 33.56 +#10 33.56 ROCM_VERSION_DEV: 5.4.2 +#10 33.56 ROCM_VERSION_DEV_MAJOR: 5 +#10 33.56 ROCM_VERSION_DEV_MINOR: 4 +#10 33.56 ROCM_VERSION_DEV_PATCH: 2 +#10 33.56 ROCM_VERSION_DEV_INT: 50402 +#10 33.56 HIP_VERSION_MAJOR: 5 +#10 33.56 HIP_VERSION_MINOR: 4 +#10 33.56 TORCH_HIP_VERSION: 504 +#10 33.56 +#10 33.56 ***** Library versions from dpkg ***** +#10 33.56 +#10 33.57 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#10 33.57 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#10 33.58 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#10 33.58 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#10 33.59 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#10 33.61 +#10 33.61 ***** Library versions from cmake find_package ***** +#10 33.61 +#10 33.62 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.62 hip VERSION: 5.4.22505 +#10 33.62 hsa-runtime64 VERSION: 1.7.50402 +#10 33.62 amd_comgr VERSION: 2.4.0 +#10 33.63 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.63 rocrand VERSION: 2.10.9 +#10 33.63 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.63 hiprand VERSION: 2.10.9 +#10 33.64 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.64 rocblas VERSION: 2.46.0 +#10 33.64 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.65 miopen VERSION: 2.19.0 +#10 33.65 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.65 hipfft VERSION: 1.0.10 +#10 33.66 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.66 hipsparse VERSION: 2.3.3 +#10 33.67 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.67 rccl VERSION: 2.13.4 +#10 33.67 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.67 rocprim VERSION: 2.10.9 +#10 33.68 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.68 hipcub VERSION: 2.10.12 +#10 33.69 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.69 rocthrust VERSION: 2.10.9 +#10 33.69 HIP library name: amdhip64 +#10 33.69 INFOCompiling with HIP for AMD. +#10 33.69 INFOForcing USE_SYSTEM_NCCL to ON since it's required by using RCCL +#10 33.69 TORCH_HIP_VERSION=504 is added as a compiler defines +#10 33.69 -- hip::amdhip64 is SHARED_LIBRARY +#10 33.70 -- RCCL Found! +#10 33.71 -- Performing Test UV_LINT_W4 +#10 33.74 -- Performing Test UV_LINT_W4 - Failed +#10 33.74 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER_MSVC +#10 33.77 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER_MSVC - Failed +#10 33.77 -- Performing Test UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC +#10 33.79 -- Performing Test UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC - Failed +#10 33.79 -- Performing Test UV_LINT_NO_NONSTANDARD_MSVC +#10 33.82 -- Performing Test UV_LINT_NO_NONSTANDARD_MSVC - Failed +#10 33.82 -- Performing Test UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC +#10 33.85 -- Performing Test UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC - Failed +#10 33.85 -- Performing Test UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC +#10 33.88 -- Performing Test UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC - Failed +#10 33.88 -- Performing Test UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC +#10 33.91 -- Performing Test UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC - Failed +#10 33.91 -- Performing Test UV_LINT_NO_HIDES_LOCAL +#10 33.93 -- Performing Test UV_LINT_NO_HIDES_LOCAL - Failed +#10 33.93 -- Performing Test UV_LINT_NO_HIDES_PARAM +#10 33.96 -- Performing Test UV_LINT_NO_HIDES_PARAM - Failed +#10 33.96 -- Performing Test UV_LINT_NO_HIDES_GLOBAL +#10 33.99 -- Performing Test UV_LINT_NO_HIDES_GLOBAL - Failed +#10 33.99 -- Performing Test UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC +#10 34.02 -- Performing Test UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC - Failed +#10 34.02 -- Performing Test UV_LINT_NO_UNSAFE_MSVC +#10 34.05 -- Performing Test UV_LINT_NO_UNSAFE_MSVC - Failed +#10 34.05 -- Performing Test UV_LINT_WALL +#10 34.09 -- Performing Test UV_LINT_WALL - Success +#10 34.09 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER +#10 34.13 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER - Success +#10 34.13 -- Performing Test UV_LINT_STRICT_PROTOTYPES +#10 34.17 -- Performing Test UV_LINT_STRICT_PROTOTYPES - Success +#10 34.18 -- Performing Test UV_LINT_EXTRA +#10 34.22 -- Performing Test UV_LINT_EXTRA - Success +#10 34.22 -- Performing Test UV_LINT_UTF8_MSVC +#10 34.24 -- Performing Test UV_LINT_UTF8_MSVC - Failed +#10 34.25 -- Performing Test UV_F_STRICT_ALIASING +#10 34.29 -- Performing Test UV_F_STRICT_ALIASING - Success +#10 34.29 -- summary of build options: +#10 34.29 Install prefix: /pytorch/torch +#10 34.29 Target system: Linux +#10 34.29 Compiler: +#10 34.29 C compiler: /usr/bin/cc +#10 34.29 CFLAGS: +#10 34.29 +#10 34.29 -- Found uv: 1.38.1 (found version "1.38.1") +#10 34.29 CMake Warning at cmake/Dependencies.cmake:1404 (message): +#10 34.29 TensorPipe doesn't yet support ROCm +#10 34.29 Call Stack (most recent call first): +#10 34.29 CMakeLists.txt:717 (include) +#10 34.29 +#10 34.29 +#10 34.29 CMake Warning (dev) at third_party/gloo/CMakeLists.txt:21 (option): +#10 34.29 Policy CMP0077 is not set: option() honors normal variables. Run "cmake +#10 34.29 --help-policy CMP0077" for policy details. Use the cmake_policy command to +#10 34.29 set the policy and suppress this warning. +#10 34.29 +#10 34.29 For compatibility with older versions of CMake, option is clearing the +#10 34.29 normal variable 'BUILD_BENCHMARK'. +#10 34.29 This warning is for project developers. Use -Wno-dev to suppress it. +#10 34.29 +#10 34.29 -- Gloo build as SHARED library +#10 34.30 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#10 34.30 HIP library name: amdhip64 +#10 34.50 Successfully preprocessed all matching files. +#10 34.51 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 34.51 The package name passed to `find_package_handle_standard_args` (RCCL) does +#10 34.51 not match the name of the calling package (rccl). This can lead to +#10 34.51 problems in calling code that expects `find_package` result variables +#10 34.51 (e.g., `_FOUND`) to follow a certain pattern. +#10 34.51 Call Stack (most recent call first): +#10 34.51 third_party/gloo/cmake/Modules/Findrccl.cmake:43 (find_package_handle_standard_args) +#10 34.51 third_party/gloo/cmake/Dependencies.cmake:181 (find_package) +#10 34.51 third_party/gloo/CMakeLists.txt:111 (include) +#10 34.51 This warning is for project developers. Use -Wno-dev to suppress it. +#10 34.51 +#10 34.51 -- Found RCCL: /opt/rocm-5.4.2/include +#10 34.51 -- Determining RCCL version from the header file: /opt/rocm-5.4.2/include/rccl.h +#10 34.51 -- Found RCCL (include: /opt/rocm-5.4.2/include, library: /opt/rocm/lib/librccl.so) +#10 34.53 CMake Warning at cmake/Dependencies.cmake:1500 (message): +#10 34.53 Metal is only used in ios builds. +#10 34.53 Call Stack (most recent call first): +#10 34.53 CMakeLists.txt:717 (include) +#10 34.53 +#10 34.53 +#10 34.54 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 34.54 Generated: /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 34.54 Generated: /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 34.54 Generated: /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 34.77 -- +#10 34.77 -- ******** Summary ******** +#10 34.77 -- CMake version : 3.20.2 +#10 34.77 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 34.77 -- System : Linux +#10 34.77 -- C++ compiler : /usr/bin/c++ +#10 34.77 -- C++ compiler version : 11.3.0 +#10 34.77 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor +#10 34.77 -- Build type : Release +#10 34.77 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS +#10 34.77 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 34.77 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 34.77 -- CMAKE_MODULE_PATH : /opt/rocm/hip/cmake;/pytorch/cmake/Modules;/pytorch/cmake/public/../Modules_CUDA_fix +#10 34.77 -- +#10 34.77 -- ONNX version : 1.13.1rc2 +#10 34.77 -- ONNX NAMESPACE : onnx_torch +#10 34.77 -- ONNX_USE_LITE_PROTO : OFF +#10 34.77 -- USE_PROTOBUF_SHARED_LIBS : OFF +#10 34.77 -- Protobuf_USE_STATIC_LIBS : ON +#10 34.77 -- ONNX_DISABLE_EXCEPTIONS : OFF +#10 34.77 -- ONNX_WERROR : OFF +#10 34.77 -- ONNX_BUILD_TESTS : OFF +#10 34.77 -- ONNX_BUILD_BENCHMARKS : OFF +#10 34.77 -- +#10 34.77 -- Protobuf compiler : +#10 34.77 -- Protobuf includes : +#10 34.77 -- Protobuf libraries : +#10 34.77 -- BUILD_ONNX_PYTHON : OFF +#10 34.78 -- +#10 34.78 -- ******** Summary ******** +#10 34.78 -- CMake version : 3.20.2 +#10 34.78 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 34.78 -- System : Linux +#10 34.78 -- C++ compiler : /usr/bin/c++ +#10 34.78 -- C++ compiler version : 11.3.0 +#10 34.78 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor +#10 34.78 -- Build type : Release +#10 34.78 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 +#10 34.78 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 34.78 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 34.78 -- CMAKE_MODULE_PATH : /opt/rocm/hip/cmake;/pytorch/cmake/Modules;/pytorch/cmake/public/../Modules_CUDA_fix +#10 34.78 -- +#10 34.78 -- ONNX version : 1.4.1 +#10 34.78 -- ONNX NAMESPACE : onnx_torch +#10 34.78 -- ONNX_BUILD_TESTS : OFF +#10 34.78 -- ONNX_BUILD_BENCHMARKS : OFF +#10 34.78 -- ONNX_USE_LITE_PROTO : OFF +#10 34.78 -- ONNXIFI_DUMMY_BACKEND : +#10 34.78 -- +#10 34.78 -- Protobuf compiler : +#10 34.78 -- Protobuf includes : +#10 34.78 -- Protobuf libraries : +#10 34.78 -- BUILD_ONNX_PYTHON : OFF +#10 34.78 -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor +#10 34.78 -- Adding -DNDEBUG to compile flags +#10 34.78 -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 +#10 34.80 -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False +#10 34.80 CMake Warning at cmake/Dependencies.cmake:1689 (message): +#10 34.80 Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. +#10 34.80 Call Stack (most recent call first): +#10 34.80 CMakeLists.txt:717 (include) +#10 34.80 +#10 34.80 +#10 34.80 -- Could not find hardware support for NEON on this machine. +#10 34.80 -- No OMAP3 processor on this machine. +#10 34.80 -- No OMAP4 processor on this machine. +#10 34.81 -- Looking for cheev_ +#10 34.87 -- Looking for cheev_ - found +#10 34.87 -- Looking for cgesdd_ +#10 34.94 -- Looking for cgesdd_ - found +#10 34.94 -- Found a library with LAPACK API (open). +#10 34.94 disabling CUDA because NOT USE_CUDA is set +#10 34.94 -- Will build oneDNN Graph +#10 34.94 -- MKLDNN_CPU_RUNTIME = OMP +#10 34.94 -- cmake version: 3.20.2 +#10 34.94 CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:36 (cmake_policy): +#10 34.94 The OLD behavior for policy CMP0025 will be removed from a future version +#10 34.94 of CMake. +#10 34.94 +#10 34.94 The cmake-policies(7) manual explains that the OLD behaviors of all +#10 34.94 policies are deprecated and that a policy should be set to OLD only under +#10 34.94 specific short-term circumstances. Projects should be ported to the NEW +#10 34.94 behavior and not rely on setting a policy to OLD. +#10 34.94 +#10 34.94 +#10 34.94 -- DNNL_TARGET_ARCH: X64 +#10 34.94 -- DNNL_LIBRARY_NAME: dnnl +#10 34.95 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 34.95 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 34.95 does not match the name of the calling package (OpenMP). This can lead to +#10 34.95 problems in calling code that expects `find_package` result variables +#10 34.95 (e.g., `_FOUND`) to follow a certain pattern. +#10 34.95 Call Stack (most recent call first): +#10 34.95 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 34.95 third_party/ideep/mkl-dnn/third_party/oneDNN/cmake/OpenMP.cmake:69 (find_package) +#10 34.95 third_party/ideep/mkl-dnn/third_party/oneDNN/CMakeLists.txt:117 (include) +#10 34.95 This warning is for project developers. Use -Wno-dev to suppress it. +#10 34.95 +#10 34.95 -- Found OpenMP_C: -fopenmp +#10 34.95 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 34.95 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 34.95 does not match the name of the calling package (OpenMP). This can lead to +#10 34.95 problems in calling code that expects `find_package` result variables +#10 34.95 (e.g., `_FOUND`) to follow a certain pattern. +#10 34.95 Call Stack (most recent call first): +#10 34.95 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 34.95 third_party/ideep/mkl-dnn/third_party/oneDNN/cmake/OpenMP.cmake:69 (find_package) +#10 34.95 third_party/ideep/mkl-dnn/third_party/oneDNN/CMakeLists.txt:117 (include) +#10 34.95 This warning is for project developers. Use -Wno-dev to suppress it. +#10 34.95 +#10 34.95 -- Found OpenMP_CXX: -fopenmp +#10 34.95 -- Could NOT find Doxyrest (missing: DOXYREST_EXECUTABLE) +#10 34.97 -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.12", minimum required is "2.7") +#10 34.97 -- Could NOT find Sphinx (missing: SPHINX_EXECUTABLE) +#10 34.97 -- Enabled workload: TRAINING +#10 34.97 -- Enabled primitives: ALL +#10 34.97 -- Enabled primitive CPU ISA: ALL +#10 34.97 -- Enabled primitive GPU ISA: ALL +#10 34.98 -- Primitive cache is enabled +#10 35.00 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.h +#10 35.05 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.h - found +#10 35.05 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph_types.h +#10 35.09 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph_types.h - found +#10 35.09 -- Looking for C++ include /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.hpp +#10 35.44 -- Looking for C++ include /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.hpp - found +#10 35.45 -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) +#10 35.45 -- Cannot find Doxygen package +#10 35.45 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 35.45 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 35.45 does not match the name of the calling package (OpenMP). This can lead to +#10 35.45 problems in calling code that expects `find_package` result variables +#10 35.45 (e.g., `_FOUND`) to follow a certain pattern. +#10 35.45 Call Stack (most recent call first): +#10 35.45 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 35.45 third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:62 (find_package) +#10 35.45 third_party/ideep/mkl-dnn/CMakeLists.txt:179 (include) +#10 35.45 This warning is for project developers. Use -Wno-dev to suppress it. +#10 35.45 +#10 35.45 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 35.45 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 35.45 does not match the name of the calling package (OpenMP). This can lead to +#10 35.45 problems in calling code that expects `find_package` result variables +#10 35.45 (e.g., `_FOUND`) to follow a certain pattern. +#10 35.45 Call Stack (most recent call first): +#10 35.45 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 35.45 third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:62 (find_package) +#10 35.45 third_party/ideep/mkl-dnn/CMakeLists.txt:179 (include) +#10 35.45 This warning is for project developers. Use -Wno-dev to suppress it. +#10 35.45 +#10 35.46 -- DNNL_GRAPH_BUILD_FOR_CI is set to be OFF +#10 35.46 -- Compiling oneDNN Graph with CPU runtime OMP support +#10 35.46 -- Compiling oneDNN Graph with GPU runtime NONE support +#10 35.46 -- Graph compiler backend is disabled. +#10 35.46 -- Set version definitions to /pytorch/third_party/ideep/mkl-dnn/src/utils/verbose.cpp +#10 35.46 -- Compiled partition cache is enabled +#10 35.47 -- Found MKL-DNN: TRUE +#10 35.47 -- Looking for clock_gettime in rt +#10 35.51 -- Looking for clock_gettime in rt - found +#10 35.51 -- Looking for mmap +#10 35.55 -- Looking for mmap - found +#10 35.55 -- Looking for shm_open +#10 35.60 -- Looking for shm_open - found +#10 35.60 -- Looking for shm_unlink +#10 35.64 -- Looking for shm_unlink - found +#10 35.64 -- Looking for malloc_usable_size +#10 35.68 -- Looking for malloc_usable_size - found +#10 35.68 -- Performing Test C_HAS_THREAD +#10 35.73 -- Performing Test C_HAS_THREAD - Success +#10 35.73 -- Module support is disabled. +#10 35.73 -- Version: 9.1.0 +#10 35.73 -- Build type: Release +#10 35.73 -- CXX_STANDARD: 17 +#10 35.73 -- Performing Test has_std_17_flag +#10 35.78 -- Performing Test has_std_17_flag - Success +#10 35.78 -- Performing Test has_std_1z_flag +#10 35.84 -- Performing Test has_std_1z_flag - Success +#10 35.84 -- Required features: cxx_variadic_templates +#10 35.84 -- Using Kineto with Roctracer support +#10 35.84 -- Configuring Kineto dependency: +#10 35.84 -- KINETO_SOURCE_DIR = /pytorch/third_party/kineto/libkineto +#10 35.84 -- KINETO_BUILD_TESTS = OFF +#10 35.84 -- KINETO_LIBRARY_TYPE = static +#10 35.85 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 35.85 INFO CUDA_SOURCE_DIR = +#10 35.85 INFO ROCM_SOURCE_DIR = /opt/rocm +#10 35.86 INFO Building with roctracer +#10 35.89 -- Kineto: FMT_SOURCE_DIR = /pytorch/third_party/fmt +#10 35.89 -- Kineto: FMT_INCLUDE_DIR = /pytorch/third_party/fmt/include +#10 35.89 INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include +#10 35.89 INFO ROCTRACER_INCLUDE_DIR = /opt/rocm/include/roctracer +#10 35.89 INFO DYNOLOG_INCLUDE_DIR = /pytorch/third_party/kineto/libkineto/third_party/dynolog/ +#10 35.89 INFO IPCFABRIC_INCLUDE_DIR = /pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ +#10 35.89 -- Configured Kineto +#10 35.89 -- GCC 11.3.0: Adding gcc and gcc_s libs to link line +#10 35.89 -- Performing Test HAS_WERROR_RETURN_TYPE +#10 35.95 -- Performing Test HAS_WERROR_RETURN_TYPE - Success +#10 35.95 -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR +#10 36.00 -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success +#10 36.00 -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT +#10 36.03 -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Failed +#10 36.03 -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT +#10 36.08 -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success +#10 36.08 -- Performing Test HAS_WERROR_BOOL_OPERATION +#10 36.14 -- Performing Test HAS_WERROR_BOOL_OPERATION - Success +#10 36.14 -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE +#10 36.17 -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Failed +#10 36.17 -- Performing Test HAS_WNARROWING +#10 36.22 -- Performing Test HAS_WNARROWING - Success +#10 36.22 -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS +#10 36.27 -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success +#10 36.27 -- Performing Test HAS_WNO_TYPE_LIMITS +#10 36.33 -- Performing Test HAS_WNO_TYPE_LIMITS - Success +#10 36.33 -- Performing Test HAS_WNO_ARRAY_BOUNDS +#10 36.38 -- Performing Test HAS_WNO_ARRAY_BOUNDS - Success +#10 36.38 -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS +#10 36.43 -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success +#10 36.43 -- Performing Test HAS_WUNUSED_LOCAL_TYPEDEFS +#10 36.49 -- Performing Test HAS_WUNUSED_LOCAL_TYPEDEFS - Success +#10 36.49 -- Performing Test HAS_WNO_UNUSED_PARAMETER +#10 36.54 -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success +#10 36.54 -- Performing Test HAS_WNO_UNUSED_FUNCTION +#10 36.59 -- Performing Test HAS_WNO_UNUSED_FUNCTION - Success +#10 36.59 -- Performing Test HAS_WNO_UNUSED_RESULT +#10 36.65 -- Performing Test HAS_WNO_UNUSED_RESULT - Success +#10 36.65 -- Performing Test HAS_WNO_STRICT_OVERFLOW +#10 36.70 -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success +#10 36.70 -- Performing Test HAS_WNO_STRICT_ALIASING +#10 36.75 -- Performing Test HAS_WNO_STRICT_ALIASING - Success +#10 36.75 -- Performing Test HAS_WNO_ERROR_DEPRECATED_DECLARATIONS +#10 36.81 -- Performing Test HAS_WNO_ERROR_DEPRECATED_DECLARATIONS - Success +#10 36.81 -- Performing Test HAS_WVLA_EXTENSION +#10 36.83 -- Performing Test HAS_WVLA_EXTENSION - Failed +#10 36.83 -- Performing Test HAS_WNO_ERROR_PEDANTIC +#10 36.88 -- Performing Test HAS_WNO_ERROR_PEDANTIC - Success +#10 36.88 -- Performing Test HAS_WNO_ERROR_REDUNDANT_DECLS +#10 36.94 -- Performing Test HAS_WNO_ERROR_REDUNDANT_DECLS - Success +#10 36.94 -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST +#10 36.99 -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success +#10 36.99 -- Performing Test HAS_FCOLOR_DIAGNOSTICS +#10 37.02 -- Performing Test HAS_FCOLOR_DIAGNOSTICS - Failed +#10 37.02 -- Performing Test HAS_FDIAGNOSTICS_COLOR_ALWAYS +#10 37.07 -- Performing Test HAS_FDIAGNOSTICS_COLOR_ALWAYS - Success +#10 37.07 -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE +#10 37.12 -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE - Success +#10 37.12 -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED +#10 37.18 -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Success +#10 37.18 -- Performing Test HAS_FNO_MATH_ERRNO +#10 37.23 -- Performing Test HAS_FNO_MATH_ERRNO - Success +#10 37.23 -- Performing Test HAS_FNO_TRAPPING_MATH +#10 37.29 -- Performing Test HAS_FNO_TRAPPING_MATH - Success +#10 37.29 -- Performing Test HAS_WERROR_FORMAT +#10 37.34 -- Performing Test HAS_WERROR_FORMAT - Success +#10 37.34 -- Performing Test HAS_WERROR_CAST_FUNCTION_TYPE +#10 37.39 -- Performing Test HAS_WERROR_CAST_FUNCTION_TYPE - Success +#10 37.39 -- Performing Test HAS_WNO_STRINGOP_OVERFLOW +#10 37.45 -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Success +#10 37.45 -- Looking for backtrace +#10 37.50 -- Looking for backtrace - found +#10 37.50 -- backtrace facility detected in default set of libraries +#10 37.50 -- Found Backtrace: /usr/include +#10 37.50 -- NUMA paths: +#10 37.50 -- /usr/include +#10 37.50 -- /usr/lib/x86_64-linux-gnu/libnuma.so +#10 39.90 -- headers outputs: +#10 44.80 -- sources outputs: +#10 45.79 -- declarations_yaml outputs: +#10 45.79 -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT +#10 45.85 -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Success +#10 45.88 -- Using ATen parallel backend: OMP +#10 45.88 Building PyTorch for GPU arch: gfx803 +#10 45.88 HIP VERSION: 5.4.22803-474e8620 +#10 45.95 -- Caffe2: Header version is: 5.4.2 +#10 45.95 +#10 45.95 ***** ROCm version from rocm_version.h **** +#10 45.95 +#10 45.95 ROCM_VERSION_DEV: 5.4.2 +#10 45.95 ROCM_VERSION_DEV_MAJOR: 5 +#10 45.95 ROCM_VERSION_DEV_MINOR: 4 +#10 45.95 ROCM_VERSION_DEV_PATCH: 2 +#10 45.95 ROCM_VERSION_DEV_INT: 50402 +#10 45.95 HIP_VERSION_MAJOR: 5 +#10 45.95 HIP_VERSION_MINOR: 4 +#10 45.95 TORCH_HIP_VERSION: 504 +#10 45.95 +#10 45.95 ***** Library versions from dpkg ***** +#10 45.95 +#10 45.95 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#10 45.95 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#10 45.96 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#10 45.97 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#10 45.98 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#10 46.00 +#10 46.00 ***** Library versions from cmake find_package ***** +#10 46.00 +#10 46.00 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.00 hip VERSION: 5.4.22505 +#10 46.00 hsa-runtime64 VERSION: 1.7.50402 +#10 46.01 amd_comgr VERSION: 2.4.0 +#10 46.01 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.01 rocrand VERSION: 2.10.9 +#10 46.02 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.02 hiprand VERSION: 2.10.9 +#10 46.02 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.02 rocblas VERSION: 2.46.0 +#10 46.03 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.03 miopen VERSION: 2.19.0 +#10 46.03 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.04 hipfft VERSION: 1.0.10 +#10 46.04 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.04 hipsparse VERSION: 2.3.3 +#10 46.05 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.05 rccl VERSION: 2.13.4 +#10 46.05 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.05 rocprim VERSION: 2.10.9 +#10 46.06 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.06 hipcub VERSION: 2.10.12 +#10 46.07 -- hip::amdhip64 is SHARED_LIBRARY +#10 46.07 rocthrust VERSION: 2.10.9 +#10 46.07 HIP library name: amdhip64 +#10 46.07 ROCm is enabled. +#10 46.12 CMake Deprecation Warning at third_party/sleef/CMakeLists.txt:91 (cmake_policy): +#10 46.12 The OLD behavior for policy CMP0066 will be removed from a future version +#10 46.12 of CMake. +#10 46.12 +#10 46.12 The cmake-policies(7) manual explains that the OLD behaviors of all +#10 46.12 policies are deprecated and that a policy should be set to OLD only under +#10 46.12 specific short-term circumstances. Projects should be ported to the NEW +#10 46.12 behavior and not rely on setting a policy to OLD. +#10 46.12 +#10 46.12 +#10 46.13 -- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) +#10 46.14 -- Check size of long double +#10 46.18 -- Check size of long double - done +#10 46.18 -- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE +#10 46.23 -- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE - Success +#10 46.23 -- Performing Test COMPILER_SUPPORTS_FLOAT128 +#10 46.27 -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Success +#10 46.27 -- Performing Test COMPILER_SUPPORTS_SSE2 +#10 46.47 -- Performing Test COMPILER_SUPPORTS_SSE2 - Success +#10 46.47 -- Performing Test COMPILER_SUPPORTS_SSE4 +#10 46.65 -- Performing Test COMPILER_SUPPORTS_SSE4 - Success +#10 46.65 -- Performing Test COMPILER_SUPPORTS_AVX +#10 46.98 -- Performing Test COMPILER_SUPPORTS_AVX - Success +#10 46.99 -- Performing Test COMPILER_SUPPORTS_FMA4 +#10 47.16 -- Performing Test COMPILER_SUPPORTS_FMA4 - Success +#10 47.16 -- Performing Test COMPILER_SUPPORTS_AVX2 +#10 47.35 -- Performing Test COMPILER_SUPPORTS_AVX2 - Success +#10 47.35 -- Performing Test COMPILER_SUPPORTS_AVX512F +#10 47.52 -- Performing Test COMPILER_SUPPORTS_AVX512F - Success +#10 47.53 -- Found OpenMP_C: -fopenmp (found version "4.5") +#10 47.53 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#10 47.53 -- Found OpenMP: TRUE (found version "4.5") +#10 47.53 -- Performing Test COMPILER_SUPPORTS_OPENMP +#10 47.58 -- Performing Test COMPILER_SUPPORTS_OPENMP - Success +#10 47.58 -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES +#10 47.63 -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Success +#10 47.63 -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH +#10 47.67 -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success +#10 47.67 -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM +#10 47.72 -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Success +#10 47.74 -- Configuring build for SLEEF-v3.6.0 +#10 47.74 Target system: Linux-6.1.0-34-amd64 +#10 47.74 Target processor: x86_64 +#10 47.74 Host system: Linux-6.1.0-34-amd64 +#10 47.74 Host processor: x86_64 +#10 47.74 Detected C compiler: GNU @ /usr/bin/cc +#10 47.74 CMake: 3.20.2 +#10 47.74 Make program: /usr/bin/ninja +#10 47.74 -- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -Wno-psabi -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef +#10 47.74 -- Building shared libs : OFF +#10 47.74 -- Building static test bins: OFF +#10 47.74 -- MPFR : LIB_MPFR-NOTFOUND +#10 47.74 -- GMP : LIBGMP-NOTFOUND +#10 47.74 -- RT : /usr/lib/x86_64-linux-gnu/librt.a +#10 47.74 -- FFTW3 : LIBFFTW3-NOTFOUND +#10 47.74 -- OPENSSL : +#10 47.74 -- SDE : SDE_COMMAND-NOTFOUND +#10 47.74 -- RUNNING_ON_TRAVIS : +#10 47.74 -- COMPILER_SUPPORTS_OPENMP : 1 +#10 47.75 AT_INSTALL_INCLUDE_DIR include/ATen/core +#10 47.75 core header install: /pytorch/build/aten/src/ATen/core/TensorBody.h +#10 47.75 core header install: /pytorch/build/aten/src/ATen/core/aten_interned_strings.h +#10 47.75 core header install: /pytorch/build/aten/src/ATen/core/enum_tag.h +#10 48.15 -- Generating sources for unboxing kernels /usr/bin/python3;-m;torchgen.gen_executorch;--source-path=/pytorch/test/edge/../../test/edge;--install-dir=/pytorch/build/out;--tags-path=/pytorch/test/edge/../../aten/src/ATen/native/tags.yaml;--aten-yaml-path=/pytorch/test/edge/../../aten/src/ATen/native/native_functions.yaml;--use-aten-lib;--op-selection-yaml-path=/pytorch/test/edge/../../test/edge/selected_operators.yaml;--custom-ops-yaml-path=/pytorch/test/edge/../../test/edge/custom_ops.yaml +#10 48.17 -- Performing Test HAS_WNO_UNUSED_VARIABLE +#10 48.23 -- Performing Test HAS_WNO_UNUSED_VARIABLE - Success +#10 48.23 -- Performing Test HAS_WNO_MISSING_BRACES +#10 48.29 -- Performing Test HAS_WNO_MISSING_BRACES - Success +#10 48.29 -- Performing Test HAS_WNO_UNUSED_BUT_SET_PARAMETER +#10 48.35 -- Performing Test HAS_WNO_UNUSED_BUT_SET_PARAMETER - Success +#10 48.35 -- _GLIBCXX_USE_CXX11_ABI=1 is already defined as a cmake variable +#10 48.35 CMake Warning (dev) at torch/CMakeLists.txt:387: +#10 48.35 Syntax Warning in cmake code at column 107 +#10 48.35 +#10 48.35 Argument not separated from preceding token by whitespace. +#10 48.35 This warning is for project developers. Use -Wno-dev to suppress it. +#10 48.35 +#10 48.35 CMake Warning (dev) at torch/CMakeLists.txt:387: +#10 48.35 Syntax Warning in cmake code at column 115 +#10 48.35 +#10 48.35 Argument not separated from preceding token by whitespace. +#10 48.35 This warning is for project developers. Use -Wno-dev to suppress it. +#10 48.35 +#10 48.45 -- Using lib/python3.10/dist-packages as python relative installation path +#10 48.48 CMake Warning at CMakeLists.txt:1078 (message): +#10 48.48 Generated cmake files are only fully tested if one builds with system glog, +#10 48.48 gflags, and protobuf. Other settings may generate files that are not well +#10 48.48 tested. +#10 48.48 +#10 48.48 +#10 49.27 -- +#10 49.27 -- ******** Summary ******** +#10 49.27 -- General: +#10 49.27 -- CMake version : 3.20.2 +#10 49.27 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 49.27 -- System : Linux +#10 49.27 -- C++ compiler : /usr/bin/c++ +#10 49.27 -- C++ compiler id : GNU +#10 49.27 -- C++ compiler version : 11.3.0 +#10 49.27 -- Using ccache if found : ON +#10 49.27 -- Found ccache : CCACHE_PROGRAM-NOTFOUND +#10 49.27 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wunused-local-typedefs -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format -Werror=cast-function-type -Wno-stringop-overflow +#10 49.27 -- Build type : Release +#10 49.27 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;HAVE_MALLOC_USABLE_SIZE=1;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS +#10 49.27 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 49.27 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 49.27 -- USE_GOLD_LINKER : OFF +#10 49.27 -- +#10 49.27 -- TORCH_VERSION : 2.0.0 +#10 49.27 -- CAFFE2_VERSION : 2.0.0 +#10 49.27 -- BUILD_CAFFE2 : OFF +#10 49.27 -- BUILD_CAFFE2_OPS : OFF +#10 49.27 -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF +#10 49.27 -- BUILD_TENSOREXPR_BENCHMARK: OFF +#10 49.27 -- BUILD_NVFUSER_BENCHMARK: OFF +#10 49.27 -- BUILD_BINARY : OFF +#10 49.27 -- BUILD_CUSTOM_PROTOBUF : ON +#10 49.27 -- Link local protobuf : ON +#10 49.27 -- BUILD_DOCS : OFF +#10 49.27 -- BUILD_PYTHON : True +#10 49.27 -- Python version : 3.10.12 +#10 49.27 -- Python executable : /usr/bin/python3 +#10 49.27 -- Pythonlibs version : 3.10.12 +#10 49.27 -- Python library : /usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 +#10 49.27 -- Python includes : /usr/include/python3.10 +#10 49.27 -- Python site-packages: lib/python3.10/dist-packages +#10 49.27 -- BUILD_SHARED_LIBS : ON +#10 49.27 -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF +#10 49.27 -- BUILD_TEST : True +#10 49.27 -- BUILD_JNI : OFF +#10 49.27 -- BUILD_MOBILE_AUTOGRAD : OFF +#10 49.27 -- BUILD_LITE_INTERPRETER: OFF +#10 49.27 -- INTERN_BUILD_MOBILE : +#10 49.27 -- TRACING_BASED : OFF +#10 49.27 -- USE_BLAS : 1 +#10 49.27 -- BLAS : open +#10 49.27 -- BLAS_HAS_SBGEMM : +#10 49.27 -- USE_LAPACK : 1 +#10 49.27 -- LAPACK : open +#10 49.27 -- USE_ASAN : OFF +#10 49.27 -- USE_TSAN : OFF +#10 49.27 -- USE_CPP_CODE_COVERAGE : OFF +#10 49.27 -- USE_CUDA : OFF +#10 49.27 -- USE_ROCM : ON +#10 49.27 -- ROCM_VERSION : +#10 49.27 -- BUILD_NVFUSER : ON +#10 49.27 -- USE_EIGEN_FOR_BLAS : ON +#10 49.27 -- USE_FBGEMM : ON +#10 49.27 -- USE_FAKELOWP : OFF +#10 49.27 -- USE_KINETO : ON +#10 49.27 -- USE_FFMPEG : OFF +#10 49.27 -- USE_GFLAGS : OFF +#10 49.27 -- USE_GLOG : OFF +#10 49.27 -- USE_LEVELDB : OFF +#10 49.27 -- USE_LITE_PROTO : OFF +#10 49.27 -- USE_LMDB : OFF +#10 49.27 -- USE_METAL : OFF +#10 49.27 -- USE_PYTORCH_METAL : OFF +#10 49.27 -- USE_PYTORCH_METAL_EXPORT : OFF +#10 49.27 -- USE_MPS : OFF +#10 49.27 -- USE_FFTW : OFF +#10 49.27 -- USE_MKL : OFF +#10 49.27 -- USE_MKLDNN : ON +#10 49.27 -- USE_MKLDNN_ACL : OFF +#10 49.27 -- USE_MKLDNN_CBLAS : OFF +#10 49.27 -- USE_UCC : OFF +#10 49.27 -- USE_ITT : ON +#10 49.27 -- USE_NCCL : ON +#10 49.27 -- USE_SYSTEM_NCCL : ON +#10 49.27 -- USE_NCCL_WITH_UCC : OFF +#10 49.27 -- USE_NNPACK : ON +#10 49.27 -- USE_NUMPY : ON +#10 49.27 -- USE_OBSERVERS : ON +#10 49.27 -- USE_OPENCL : OFF +#10 49.27 -- USE_OPENCV : OFF +#10 49.27 -- USE_OPENMP : ON +#10 49.27 -- USE_TBB : OFF +#10 49.27 -- USE_VULKAN : OFF +#10 49.27 -- USE_PROF : OFF +#10 49.27 -- USE_QNNPACK : ON +#10 49.27 -- USE_PYTORCH_QNNPACK : ON +#10 49.27 -- USE_XNNPACK : ON +#10 49.27 -- USE_REDIS : OFF +#10 49.27 -- USE_ROCKSDB : OFF +#10 49.27 -- USE_ZMQ : OFF +#10 49.27 -- USE_DISTRIBUTED : ON +#10 49.27 -- USE_MPI : OFF +#10 49.27 -- USE_GLOO : ON +#10 49.27 -- USE_GLOO_WITH_OPENSSL : OFF +#10 49.27 -- USE_TENSORPIPE : ON +#10 49.27 -- Public Dependencies : +#10 49.27 -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;qnnpack;pytorch_qnnpack;nnpack;XNNPACK;fbgemm;/usr/lib/x86_64-linux-gnu/libnuma.so;ittnotify;fp16;caffe2::openmp;tensorpipe;gloo;foxi_loader;rt;fmt::fmt-header-only;kineto;gcc_s;gcc;dl +#10 49.27 -- USE_COREML_DELEGATE : OFF +#10 49.27 -- BUILD_LAZY_TS_BACKEND : ON +#10 49.27 -- TORCH_DISABLE_GPU_ASSERTS : ON +#10 49.28 -- Configuring done +#10 50.60 -- Generating done +#10 50.69 CMake Warning: +#10 50.69 Manually-specified variables were not used by the project: +#10 50.69 +#10 50.69 CMAKE_POLICY_VERSION_MINIMUM +#10 50.69 USE_NINJA +#10 50.69 +#10 50.69 +#10 50.69 -- Build files have been written to: /pytorch/build +#10 50.76 cmake --build . --target install --config Release -- -j 14 +#10 54.11 [1/4] Generating ATen declarations_yaml +#10 56.35 [2/4] Generating ATen headers +#10 56.97 [3/4] Generating ATen sources +#10 57.09 [1/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o +#10 57.63 [2/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o +#10 57.69 [3/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o +#10 57.81 [4/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o +#10 57.91 [5/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o +#10 57.92 [6/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o +#10 57.98 [7/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o +#10 57.99 [8/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o +#10 58.14 [9/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o +#10 58.34 [10/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o +#10 58.51 [11/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o +#10 58.57 [12/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o +#10 58.68 [13/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o +#10 58.69 [14/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o +#10 58.70 [15/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o +#10 58.71 [16/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o +#10 58.71 [17/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o +#10 58.73 [18/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o +#10 58.73 In file included from /usr/include/string.h:535, +#10 58.73 from ../third_party/protobuf/src/google/protobuf/stubs/port.h:39, +#10 58.73 from ../third_party/protobuf/src/google/protobuf/stubs/macros.h:34, +#10 58.73 from ../third_party/protobuf/src/google/protobuf/stubs/common.h:46, +#10 58.73 from ../third_party/protobuf/src/google/protobuf/message_lite.h:45, +#10 58.73 from ../third_party/protobuf/src/google/protobuf/message_lite.cc:36: +#10 58.73 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 58.73 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 58.73 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 58.73 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30, +#10 58.73 inlined from ‘bool google::protobuf::MessageLite::SerializeToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:403:42: +#10 58.73 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 58.73 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 58.73 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 58.73 30 | __glibc_objsize0 (__dest)); +#10 58.73 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 58.73 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 58.73 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 58.73 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 58.73 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30: +#10 58.73 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 58.73 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 58.73 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 58.73 30 | __glibc_objsize0 (__dest)); +#10 58.73 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 58.89 [19/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o +#10 59.08 [20/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o +#10 59.45 [21/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o +#10 59.57 [22/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o +#10 59.59 [23/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o +#10 59.60 [24/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o +#10 59.60 [25/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o +#10 59.98 [26/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o +#10 60.22 [27/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o +#10 60.25 [28/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o +#10 60.27 [29/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o +#10 60.31 [30/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o +#10 60.32 [31/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o +#10 60.50 [32/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o +#10 60.51 [33/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o +#10 60.67 [34/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o +#10 60.83 [35/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o +#10 60.89 [36/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o +#10 60.96 [37/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o +#10 60.97 [38/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o +#10 61.10 [39/6823] Linking CXX static library lib/libprotobuf-lite.a +#10 61.23 [40/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o +#10 61.29 [41/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o +#10 61.33 [42/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o +#10 61.49 [43/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o +#10 61.50 [44/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o +#10 61.56 [45/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o +#10 61.74 [46/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o +#10 61.79 [47/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o +#10 62.01 [48/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o +#10 62.01 In file included from /usr/include/string.h:535, +#10 62.01 from ../third_party/protobuf/src/google/protobuf/stubs/port.h:39, +#10 62.01 from ../third_party/protobuf/src/google/protobuf/stubs/macros.h:34, +#10 62.01 from ../third_party/protobuf/src/google/protobuf/stubs/common.h:46, +#10 62.01 from ../third_party/protobuf/src/google/protobuf/message_lite.h:45, +#10 62.01 from ../third_party/protobuf/src/google/protobuf/message_lite.cc:36: +#10 62.01 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 62.01 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 62.01 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 62.01 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30, +#10 62.01 inlined from ‘bool google::protobuf::MessageLite::SerializeToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:403:42: +#10 62.01 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 62.01 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 62.01 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 62.01 30 | __glibc_objsize0 (__dest)); +#10 62.01 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 62.01 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 62.01 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 62.01 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 62.01 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30: +#10 62.01 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 62.01 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 62.01 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 62.01 30 | __glibc_objsize0 (__dest)); +#10 62.01 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 62.02 [49/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o +#10 62.17 [50/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o +#10 62.42 [51/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o +#10 62.44 [52/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o +#10 62.63 [53/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o +#10 62.72 [54/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o +#10 62.83 [55/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o +#10 63.06 [56/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o +#10 63.22 [57/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o +#10 63.30 [58/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o +#10 63.57 [59/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o +#10 63.63 [60/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o +#10 63.66 [61/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o +#10 63.74 [62/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o +#10 64.01 [63/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o +#10 64.25 [64/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o +#10 64.89 [65/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o +#10 64.97 [66/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o +#10 65.18 [67/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o +#10 65.20 [68/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o +#10 65.44 [69/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o +#10 65.85 [70/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o +#10 65.96 [71/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o +#10 65.99 [72/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o +#10 66.39 [73/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o +#10 66.58 [74/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o +#10 66.61 [75/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o +#10 66.63 [76/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o +#10 66.86 [77/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o +#10 67.10 [78/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o +#10 67.19 [79/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o +#10 67.30 [80/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o +#10 67.39 [81/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o +#10 67.58 [82/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o +#10 68.08 [83/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o +#10 68.21 [84/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o +#10 68.55 [85/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o +#10 68.57 [86/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o +#10 68.79 [87/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o +#10 68.91 [88/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o +#10 68.97 [89/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o +#10 69.18 [90/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o +#10 69.42 [91/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o +#10 69.71 [92/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o +#10 70.18 [93/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o +#10 70.20 [94/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o +#10 70.21 [95/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o +#10 70.26 [96/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o +#10 70.32 [97/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o +#10 70.61 [98/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o +#10 70.66 [99/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o +#10 70.76 [100/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o +#10 70.97 [101/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o +#10 71.28 [102/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o +#10 71.69 [103/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o +#10 72.04 [104/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o +#10 72.65 [105/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o +#10 72.87 [106/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o +#10 73.24 [107/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o +#10 73.44 [108/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o +#10 73.46 [109/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o +#10 73.94 [110/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o +#10 74.07 [111/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o +#10 74.41 [112/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o +#10 74.49 [113/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o +#10 75.31 [114/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o +#10 75.34 [115/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o +#10 75.75 [116/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o +#10 75.87 [117/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o +#10 76.06 [118/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o +#10 76.09 [119/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/add.c.o +#10 76.13 [120/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o +#10 76.15 [121/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o +#10 76.19 [122/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/average-pooling.c.o +#10 76.38 [123/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o +#10 76.75 [124/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o +#10 76.82 [125/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o +#10 76.83 [126/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o +#10 76.97 [127/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o +#10 77.07 [128/6823] Linking CXX static library lib/libprotobuf.a +#10 77.32 [129/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o +#10 77.41 [130/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o +#10 77.43 [131/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o +#10 77.64 [132/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o +#10 77.79 [133/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o +#10 78.09 [134/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o +#10 78.21 [135/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o +#10 78.24 [136/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o +#10 78.53 [137/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o +#10 78.69 [138/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o +#10 78.83 [139/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o +#10 79.05 [140/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o +#10 79.21 [141/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o +#10 79.65 [142/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o +#10 79.75 [143/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o +#10 79.85 [144/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o +#10 79.96 [145/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o +#10 80.34 [146/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o +#10 80.41 [147/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o +#10 80.48 [148/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o +#10 80.51 [149/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o +#10 80.64 [150/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o +#10 80.83 [151/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o +#10 80.93 [152/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o +#10 80.98 [153/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o +#10 81.69 [154/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o +#10 82.05 [155/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o +#10 82.09 [156/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o +#10 82.09 [157/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o +#10 82.43 [158/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o +#10 82.52 [159/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o +#10 82.55 [160/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o +#10 82.89 [161/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o +#10 83.23 [162/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o +#10 83.59 [163/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o +#10 83.86 [164/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o +#10 83.97 [165/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o +#10 84.13 [166/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o +#10 84.27 [167/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o +#10 84.33 [168/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o +#10 84.35 [169/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o +#10 84.38 [170/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o +#10 84.38 [171/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o +#10 84.89 [172/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o +#10 85.09 [173/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o +#10 85.31 [174/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o +#10 85.69 [175/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o +#10 85.96 [176/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o +#10 86.30 [177/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o +#10 86.41 [178/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o +#10 86.42 [179/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o +#10 86.61 [180/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o +#10 86.66 [181/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o +#10 86.76 [182/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o +#10 86.80 [183/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o +#10 86.89 [184/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o +#10 87.03 [185/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o +#10 87.04 [186/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o +#10 87.12 [187/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o +#10 87.12 [188/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o +#10 87.15 [189/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o +#10 87.19 [190/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o +#10 87.21 [191/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o +#10 87.22 [192/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o +#10 87.23 [193/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o +#10 87.32 [194/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o +#10 87.33 [195/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o +#10 87.34 [196/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o +#10 87.39 [197/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o +#10 87.41 [198/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o +#10 87.44 [199/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o +#10 87.44 [200/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o +#10 87.44 [201/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o +#10 87.45 [202/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o +#10 87.47 [203/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o +#10 87.53 [204/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o +#10 87.54 [205/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o +#10 87.55 [206/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o +#10 87.55 [207/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o +#10 87.57 [208/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o +#10 87.59 [209/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o +#10 87.61 [210/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o +#10 87.62 [211/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o +#10 87.62 [212/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o +#10 87.62 [213/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o +#10 87.64 [214/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o +#10 87.66 [215/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o +#10 87.67 [216/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o +#10 87.71 [217/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o +#10 87.73 [218/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o +#10 87.75 [219/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o +#10 87.76 [220/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o +#10 87.77 [221/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o +#10 87.79 [222/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o +#10 87.82 [223/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o +#10 87.84 [224/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o +#10 87.86 [225/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o +#10 87.86 [226/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o +#10 87.88 [227/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o +#10 87.90 [228/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o +#10 87.91 [229/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o +#10 87.91 [230/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o +#10 87.93 [231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o +#10 87.93 [232/6823] Building C object confu-deps/cpuinfo/deps/clog/CMakeFiles/clog.dir/src/clog.c.o +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’: +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c:117:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 87.93 117 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 87.93 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_error’: +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c:195:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 87.93 195 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 87.93 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_warning’: +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c:273:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 87.93 273 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 87.93 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_info’: +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c:351:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 87.93 351 | write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 87.93 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_debug’: +#10 87.93 ../third_party/cpuinfo/deps/clog/src/clog.c:429:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 87.93 429 | write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 87.93 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 87.94 [233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o +#10 87.96 [234/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/channel-shuffle.c.o +#10 87.97 [235/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o +#10 87.99 [236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o +#10 87.99 [237/6823] Linking C static library lib/libclog.a +#10 87.99 [238/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/clamp.c.o +#10 88.03 [239/6823] Linking C static library lib/libcpuinfo_internals.a +#10 88.05 [240/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/global-average-pooling.c.o +#10 88.06 [241/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o +#10 88.06 [242/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/leaky-relu.c.o +#10 88.06 [243/6823] Linking C static library lib/libcpuinfo.a +#10 88.09 [244/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o +#10 88.10 [245/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/max-pooling.c.o +#10 88.10 [246/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/softargmax.c.o +#10 88.10 [247/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sigmoid.c.o +#10 88.11 [248/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/operator-delete.c.o +#10 88.17 [249/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8lut/scalar.c.o +#10 88.18 [250/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8lut32norm/scalar.c.o +#10 88.19 [251/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o +#10 88.19 [252/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o +#10 88.20 [253/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o +#10 88.22 [254/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/up8x9-sse2.c.o +#10 88.24 [255/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/up8xm-sse2.c.o +#10 88.25 [256/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/indirection.c.o +#10 88.26 [257/6823] Linking C static library lib/libpthreadpool.a +#10 88.30 [258/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/mp8x9p8q-sse2.c.o +#10 88.33 [259/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/operator-run.c.o +#10 88.37 [260/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/up8x7-sse2.c.o +#10 88.37 [261/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o +#10 88.37 [262/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/up8xm-sse2.c.o +#10 88.39 [263/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/mp8x7p7q-sse2.c.o +#10 88.43 [264/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8clamp/sse2.c.o +#10 88.43 [265/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8maxpool/sub16-sse2.c.o +#10 88.47 [266/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8maxpool/16x9p8q-sse2.c.o +#10 88.48 [267/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8rmax/sse2.c.o +#10 88.49 [268/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x2-sse2.c.o +#10 88.54 [269/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x4-sse2.c.o +#10 88.54 [270/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o +#10 88.54 [271/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x3-sse2.c.o +#10 88.60 [272/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/xm-sse2.c.o +#10 88.61 [273/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o +#10 88.61 [274/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o +#10 88.65 [275/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o +#10 88.66 [276/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o +#10 88.68 [277/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dwconv/up8x9-sse2.c.o +#10 88.70 [278/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o +#10 88.72 [279/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o +#10 88.72 [280/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o +#10 88.73 [281/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8vadd/sse2.c.o +#10 88.76 [282/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o +#10 88.76 [283/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o +#10 88.80 [284/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o +#10 88.81 [285/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o +#10 88.81 [286/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dwconv/mp8x25-sse2.c.o +#10 88.81 [287/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o +#10 88.81 [288/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o +#10 88.83 [289/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o +#10 88.83 [290/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o +#10 88.84 [291/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o +#10 88.85 [292/6823] Linking C static library lib/libqnnpack.a +#10 88.86 [293/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o +#10 88.88 [294/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o +#10 88.89 [295/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o +#10 88.90 [296/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o +#10 88.90 [297/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o +#10 88.90 [298/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o +#10 88.90 [299/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o +#10 88.96 [300/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o +#10 88.97 [301/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o +#10 88.97 [302/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o +#10 89.00 [303/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o +#10 89.02 [304/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o +#10 89.02 [305/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o +#10 89.05 [306/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-sse2.c.o +#10 89.07 [307/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-sse2.c.o +#10 89.07 [308/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-sse2.c.o +#10 89.14 [309/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o +#10 89.19 [310/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o +#10 89.20 [311/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-sse2.c.o +#10 89.25 [312/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o +#10 89.28 [313/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o +#10 89.30 [314/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-sse2.c.o +#10 89.32 [315/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-sse2.c.o +#10 89.41 [316/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x4c2-sse2.c.o +#10 89.41 [317/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-sse2.c.o +#10 89.42 [318/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o +#10 89.49 [319/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-sse2.c.o +#10 89.51 [320/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/sse2.c.o +#10 89.55 [321/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-sse2.c.o +#10 89.56 [322/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-sse2.c.o +#10 89.56 [323/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/sse2.c.o +#10 89.61 [324/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-sse2-per-channel.c.o +#10 89.62 [325/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-sse2.c.o +#10 89.62 [326/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-sse2.c.o +#10 89.62 [327/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-sse2.c.o +#10 89.64 [328/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-sse2-per-channel.c.o +#10 89.64 [329/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o +#10 89.67 [330/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x4c2-dq-sse2.c.o +#10 89.67 [331/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-sse2.c.o +#10 89.69 [332/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o +#10 89.69 [333/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o +#10 89.70 [334/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o +#10 89.71 [335/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-sse2.c.o +#10 89.71 [336/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o +#10 89.71 [337/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o +#10 89.71 [338/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o +#10 89.73 [339/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o +#10 89.73 [340/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o +#10 89.74 [341/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-sse2.c.o +#10 89.74 [342/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o +#10 89.75 [343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o +#10 89.76 [344/6823] Linking C static library lib/libnnpack_reference_layers.a +#10 89.76 [345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o +#10 89.78 [346/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/sse2.c.o +#10 89.78 [347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o +#10 89.78 [348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o +#10 89.78 [349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o +#10 89.78 [350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o +#10 89.81 [351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 89.82 [352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 89.84 [353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o +#10 89.85 [354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o +#10 89.85 [355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/hardware-config.c.o +#10 89.85 [356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples1-scalar.c.o +#10 89.86 [357/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4c1x4-dq-packedA-sse2.c.o +#10 89.87 [358/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/assembler.cc.o +#10 89.89 [359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x1.c.o +#10 89.90 [360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x1.c.o +#10 89.91 [361/6823] Linking CXX static library lib/libpytorch_qnnpack.a +#10 89.93 [362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x1.c.o +#10 89.95 [363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x2.c.o +#10 89.96 [364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x2.c.o +#10 89.97 [365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples4-scalar.c.o +#10 89.97 [366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x2.c.o +#10 89.98 [367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x3.c.o +#10 89.98 [368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x4.c.o +#10 89.99 [369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x4.c.o +#10 90.00 [370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x1.c.o +#10 90.01 [371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x2.c.o +#10 90.02 [372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x3.c.o +#10 90.03 [373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x4.c.o +#10 90.04 [374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o +#10 90.07 [375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x4.c.o +#10 90.08 [376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o +#10 90.08 [377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o +#10 90.10 [378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o +#10 90.11 [379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o +#10 90.15 [380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.o +#10 90.17 [381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o +#10 90.18 [382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o +#10 90.20 [383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.o +#10 90.21 [384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o +#10 90.21 [385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o +#10 90.21 [386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.o +#10 90.21 [387/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch32-assembler.cc.o +#10 90.22 [388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o +#10 90.24 [389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o +#10 90.26 [390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o +#10 90.27 [391/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch64-assembler.cc.o +#10 90.30 [392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o +#10 90.31 [393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o +#10 90.32 [394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o +#10 90.32 [395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.o +#10 90.33 [396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.o +#10 90.33 [397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o +#10 90.33 [398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o +#10 90.34 [399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o +#10 90.35 [400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o +#10 90.39 [401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o +#10 90.41 [402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o +#10 90.42 [403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o +#10 90.43 [404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.o +#10 90.44 [405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.o +#10 90.46 [406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o +#10 90.47 [407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o +#10 90.48 [408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.o +#10 90.48 [409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o +#10 90.49 [410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.o +#10 90.49 [411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o +#10 90.55 [412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.o +#10 90.55 [413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.o +#10 90.55 [414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.o +#10 90.57 [415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o +#10 90.59 [416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o +#10 90.61 [417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o +#10 90.62 [418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o +#10 90.63 [419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o +#10 90.64 [420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.o +#10 90.65 [421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o +#10 90.66 [422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o +#10 90.66 [423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o +#10 90.66 [424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o +#10 90.66 [425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.o +#10 90.68 [426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.o +#10 90.71 [427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o +#10 90.71 [428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o +#10 90.71 [429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o +#10 90.71 [430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o +#10 90.73 [431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o +#10 90.73 [432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o +#10 90.74 [433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o +#10 90.76 [434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o +#10 90.77 [435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o +#10 90.77 [436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o +#10 90.78 [437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o +#10 90.78 [438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o +#10 90.78 [439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o +#10 90.79 [440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o +#10 90.80 [441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o +#10 90.81 [442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o +#10 90.81 [443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o +#10 90.85 [444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o +#10 90.87 [445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o +#10 90.88 [446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o +#10 90.89 [447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o +#10 90.90 [448/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o +#10 90.91 [449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o +#10 90.91 [450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o +#10 90.91 [451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o +#10 90.92 [452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x1.c.o +#10 90.93 [453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o +#10 90.93 [454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x2.c.o +#10 90.96 [455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x3.c.o +#10 90.97 [456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o +#10 90.97 [457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x1.c.o +#10 90.97 [458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o +#10 90.99 [459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x4.c.o +#10 90.99 [460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-scalar-x1.c.o +#10 91.00 [461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o +#10 91.00 [462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x2.c.o +#10 91.03 [463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o +#10 91.03 [464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x3.c.o +#10 91.03 [465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x4.c.o +#10 91.03 [466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-scalar-c1.c.o +#10 91.05 [467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-scalar-c1.c.o +#10 91.06 [468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o +#10 91.06 [469/6823] Linking CXX static library lib/libprotoc.a +#10 91.08 [470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 91.09 [471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o +#10 91.09 [472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 91.10 [473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 91.10 [474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o +#10 91.10 [475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o +#10 91.11 [476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 91.13 [477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 91.15 [478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 91.15 [479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o +#10 91.18 [480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o +#10 91.18 [481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o +#10 91.18 [482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x4-minmax-scalar.c.o +#10 91.19 [483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o +#10 91.19 [484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o +#10 91.20 [485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o +#10 91.20 [486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o +#10 91.20 [487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-2x4-minmax-scalar.c.o +#10 91.22 [488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o +#10 91.22 [489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o +#10 91.22 [490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o +#10 91.24 [491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o +#10 91.24 [492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o +#10 91.26 [493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x4-minmax-scalar.c.o +#10 91.27 [494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o +#10 91.28 [495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o +#10 91.28 [496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o +#10 91.29 [497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o +#10 91.29 [498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o +#10 91.30 [499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o +#10 91.31 [500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/packing.c.o +#10 91.32 [501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o +#10 91.33 [502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o +#10 91.35 [503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o +#10 91.35 [504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o +#10 91.36 [505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o +#10 91.36 [506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o +#10 91.36 [507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o +#10 91.37 [508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o +#10 91.37 [509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o +#10 91.37 [510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o +#10 91.37 [511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o +#10 91.39 [512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x1.c.o +#10 91.40 [513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o +#10 91.40 [514/6823] Linking CXX executable bin/protoc-3.13.0.0 +#10 91.40 [515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o +#10 91.41 [516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x1.c.o +#10 91.41 [517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x1.c.o +#10 91.41 [518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x2.c.o +#10 91.41 [519/6823] Creating executable symlink bin/protoc +#10 91.41 [520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x4.c.o +#10 91.43 [521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x3.c.o +#10 91.43 [522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x3.c.o +#10 91.43 [523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x2.c.o +#10 91.43 [524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x4.c.o +#10 91.43 [525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x4.c.o +#10 91.45 [526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x2.c.o +#10 91.45 [527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x3.c.o +#10 91.46 [528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x1.c.o +#10 91.46 [529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x2.c.o +#10 91.46 [530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x1.c.o +#10 91.47 [531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x3.c.o +#10 91.47 [532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x1.c.o +#10 91.48 [533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x3.c.o +#10 91.49 [534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x2.c.o +#10 91.49 [535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x1.c.o +#10 91.49 [536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x4.c.o +#10 91.51 [537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x1.c.o +#10 91.51 [538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x4.c.o +#10 91.51 [539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x2.c.o +#10 91.51 [540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x4.c.o +#10 91.52 [541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x3.c.o +#10 91.52 [542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x2.c.o +#10 91.53 [543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x2-acc2.c.o +#10 91.53 [544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x4.c.o +#10 91.55 [545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x1.c.o +#10 91.55 [546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4-acc4.c.o +#10 91.56 [547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4-acc2.c.o +#10 91.56 [548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x2.c.o +#10 91.57 [549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4.c.o +#10 91.57 [550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x2-acc2.c.o +#10 91.57 [551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4-acc2.c.o +#10 91.58 [552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4-acc4.c.o +#10 91.58 [553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-scalar.c.o +#10 91.58 [554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o +#10 91.59 [555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o +#10 91.59 [556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4.c.o +#10 91.60 [557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o +#10 91.62 [558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o +#10 91.62 [559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x2.c.o +#10 91.62 [560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x1.c.o +#10 91.63 [561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o +#10 91.64 [562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o +#10 91.64 [563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x1.c.o +#10 91.64 [564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x4.c.o +#10 91.67 [565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o +#10 91.67 [566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x8.c.o +#10 91.68 [567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x2.c.o +#10 91.68 [568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o +#10 91.69 [569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x1.c.o +#10 91.69 [570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x2.c.o +#10 91.69 [571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x1.c.o +#10 91.70 [572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x8.c.o +#10 91.71 [573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x8.c.o +#10 91.71 [574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x4.c.o +#10 91.71 [575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x2.c.o +#10 91.72 [576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x4.c.o +#10 91.73 [577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x1.c.o +#10 91.74 [578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x4.c.o +#10 91.74 [579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x4.c.o +#10 91.74 [580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x2.c.o +#10 91.74 [581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x1.c.o +#10 91.74 [582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x8.c.o +#10 91.75 [583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x8.c.o +#10 91.76 [584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o +#10 91.77 [585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x4.c.o +#10 91.77 [586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x2.c.o +#10 91.78 [587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x1.c.o +#10 91.78 [588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x2.c.o +#10 91.78 [589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x1.c.o +#10 91.79 [590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x8.c.o +#10 91.79 [591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x4.c.o +#10 91.79 [592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x4.c.o +#10 91.80 [593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x8.c.o +#10 91.81 [594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x2.c.o +#10 91.81 [595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x8.c.o +#10 91.81 [596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x2.c.o +#10 91.81 [597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x1.c.o +#10 91.82 [598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o +#10 91.82 [599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x4.c.o +#10 91.82 [600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x8.c.o +#10 91.83 [601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x1.c.o +#10 91.83 [602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x2.c.o +#10 91.84 [603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x4.c.o +#10 91.87 [604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x1.c.o +#10 91.87 [605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x4.c.o +#10 91.87 [606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x8.c.o +#10 91.87 [607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x8.c.o +#10 91.87 [608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x1.c.o +#10 91.87 [609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x2.c.o +#10 91.87 [610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x4.c.o +#10 91.87 [611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x2.c.o +#10 91.88 [612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x1.c.o +#10 91.88 [613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x4.c.o +#10 91.88 [614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x8.c.o +#10 91.89 [615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x8.c.o +#10 91.91 [616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x2.c.o +#10 91.91 [617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x1.c.o +#10 91.91 [618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x2.c.o +#10 91.92 [619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x4.c.o +#10 91.92 [620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x8.c.o +#10 91.92 [621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x1.c.o +#10 91.93 [622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x4.c.o +#10 91.93 [623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x8.c.o +#10 91.93 [624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x1.c.o +#10 91.94 [625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x2.c.o +#10 91.95 [626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x4.c.o +#10 91.95 [627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x1.c.o +#10 91.96 [628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x2.c.o +#10 91.96 [629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x2.c.o +#10 91.97 [630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x1.c.o +#10 91.98 [631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x4.c.o +#10 91.99 [632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x2.c.o +#10 92.00 [633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x8.c.o +#10 92.00 [634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x8.c.o +#10 92.00 [635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x4.c.o +#10 92.00 [636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x8.c.o +#10 92.00 [637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x1.c.o +#10 92.00 [638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x2.c.o +#10 92.00 [639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x4.c.o +#10 92.01 [640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x8.c.o +#10 92.01 [641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x1.c.o +#10 92.02 [642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x2.c.o +#10 92.04 [643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 92.04 [644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x1.c.o +#10 92.05 [645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x1.c.o +#10 92.05 [646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x4.c.o +#10 92.05 [647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x2.c.o +#10 92.05 [648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x4.c.o +#10 92.05 [649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x2.c.o +#10 92.05 [650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x8.c.o +#10 92.05 [651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x4.c.o +#10 92.06 [652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x8.c.o +#10 92.07 [653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x8.c.o +#10 92.08 [654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x1.c.o +#10 92.08 [655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x2.c.o +#10 92.09 [656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x4.c.o +#10 92.09 [657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x2.c.o +#10 92.09 [658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x4.c.o +#10 92.10 [659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x2.c.o +#10 92.11 [660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x8.c.o +#10 92.11 [661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x1.c.o +#10 92.11 [662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x4.c.o +#10 92.11 [663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x1.c.o +#10 92.11 [664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x8.c.o +#10 92.12 [665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x1.c.o +#10 92.12 [666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x8.c.o +#10 92.13 [667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x4.c.o +#10 92.14 [668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x2.c.o +#10 92.14 [669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x2.c.o +#10 92.15 [670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x8.c.o +#10 92.16 [671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x4.c.o +#10 92.16 [672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x1.c.o +#10 92.16 [673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x8.c.o +#10 92.16 [674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x2.c.o +#10 92.16 [675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x1.c.o +#10 92.16 [676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x4.c.o +#10 92.18 [677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x1.c.o +#10 92.19 [678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x2.c.o +#10 92.19 [679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x4.c.o +#10 92.19 [680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x8.c.o +#10 92.19 [681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x1.c.o +#10 92.20 [682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x2.c.o +#10 92.20 [683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x4.c.o +#10 92.21 [684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x8.c.o +#10 92.21 [685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x8.c.o +#10 92.21 [686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x1.c.o +#10 92.22 [687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x2.c.o +#10 92.22 [688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x4.c.o +#10 92.22 [689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x1.c.o +#10 92.24 [690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x1.c.o +#10 92.24 [691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x2.c.o +#10 92.25 [692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x2.c.o +#10 92.25 [693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x4.c.o +#10 92.25 [694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x8.c.o +#10 92.26 [695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x8.c.o +#10 92.26 [696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x1.c.o +#10 92.26 [697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x8.c.o +#10 92.27 [698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x4.c.o +#10 92.27 [699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x2.c.o +#10 92.29 [700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x4.c.o +#10 92.29 [701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x2.c.o +#10 92.29 [702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x1.c.o +#10 92.30 [703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x1.c.o +#10 92.30 [704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x4.c.o +#10 92.30 [705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x8.c.o +#10 92.31 [706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x4.c.o +#10 92.31 [707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x8.c.o +#10 92.31 [708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x2.c.o +#10 92.31 [709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x1.c.o +#10 92.31 [710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x2.c.o +#10 92.32 [711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x8.c.o +#10 92.35 [712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x4.c.o +#10 92.37 [713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x2.c.o +#10 92.37 [714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x3.c.o +#10 92.38 [715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x1.c.o +#10 92.38 [716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x2.c.o +#10 92.38 [717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x4.c.o +#10 92.40 [718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x5.c.o +#10 92.40 [719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x1.c.o +#10 92.40 [720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x3.c.o +#10 92.40 [721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x4.c.o +#10 92.41 [722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x6.c.o +#10 92.42 [723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x5.c.o +#10 92.43 [724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x1.c.o +#10 92.44 [725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x1.c.o +#10 92.44 [726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x4.c.o +#10 92.44 [727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x4.c.o +#10 92.45 [728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x6.c.o +#10 92.45 [729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x2.c.o +#10 92.46 [730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x2.c.o +#10 92.46 [731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o +#10 92.47 [732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x1.c.o +#10 92.47 [733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x2.c.o +#10 92.48 [734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o +#10 92.49 [735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o +#10 92.49 [736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x4.c.o +#10 92.49 [737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x1.c.o +#10 92.49 [738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x8.c.o +#10 92.51 [739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x2.c.o +#10 92.52 [740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x1.c.o +#10 92.53 [741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x2.c.o +#10 92.53 [742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x1.c.o +#10 92.54 [743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x4.c.o +#10 92.55 [744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x4.c.o +#10 92.55 [745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x2.c.o +#10 92.55 [746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x4.c.o +#10 92.56 [747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x2.c.o +#10 92.56 [748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x1.c.o +#10 92.57 [749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x1.c.o +#10 92.58 [750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x4.c.o +#10 92.60 [751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x2.c.o +#10 92.61 [752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x4.c.o +#10 92.61 [753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x1.c.o +#10 92.62 [754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x4.c.o +#10 92.62 [755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x1.c.o +#10 92.62 [756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x1.c.o +#10 92.63 [757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x2.c.o +#10 92.64 [758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x2.c.o +#10 92.64 [759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x2.c.o +#10 92.66 [760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x4.c.o +#10 92.67 [761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x2.c.o +#10 92.67 [762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x1.c.o +#10 92.67 [763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x2.c.o +#10 92.68 [764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x4.c.o +#10 92.68 [765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x1.c.o +#10 92.69 [766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x1.c.o +#10 92.69 [767/6823] Generating src/x86_64-fma/2d-fourier-8x8.py.o +#10 92.69 [768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x4.c.o +#10 92.69 [769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x2.c.o +#10 92.70 [770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x4.c.o +#10 92.71 [771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x1.c.o +#10 92.71 [772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x2.c.o +#10 92.72 [773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x3.c.o +#10 92.72 [774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x4.c.o +#10 92.72 [775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x4.c.o +#10 92.72 [776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut4-p4.c.o +#10 92.73 [777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-scalar-bitcast.c.o +#10 92.73 [778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-scalar-fabsf.c.o +#10 92.73 [779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut16-p3.c.o +#10 92.73 [780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut16-p4.c.o +#10 92.75 [781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut8-p4.c.o +#10 92.76 [782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-p5.c.o +#10 92.76 [783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-p5.c.o +#10 92.76 [784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-lut64-p2.c.o +#10 92.76 [785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-lut2048-p1.c.o +#10 92.77 [786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut8-p3.c.o +#10 92.77 [787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-p6.c.o +#10 92.78 [788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-nearbyint.c.o +#10 92.78 [789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-addsub.c.o +#10 92.78 [790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-floor.c.o +#10 92.78 [791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-addsub.c.o +#10 92.79 [792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-cvt.c.o +#10 92.80 [793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-rint.c.o +#10 92.81 [794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-addsub.c.o +#10 92.81 [795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-ceil.c.o +#10 92.81 [796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-addsub.c.o +#10 92.81 [797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-cvt.c.o +#10 92.82 [798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-bitmanip.c.o +#10 92.82 [799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-cvt.c.o +#10 92.82 [800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-p5-div.c.o +#10 92.83 [801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-clz-binsearch.c.o +#10 92.83 [802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-trunc.c.o +#10 92.84 [803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-lut64-p2-div.c.o +#10 92.84 [804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti32-sqrt-lrint.c.o +#10 92.84 [805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-clz-newton.c.o +#10 92.84 [806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-lut2048-p1-div.c.o +#10 92.84 [807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti64-sqrt-lrint.c.o +#10 92.86 [808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti64-sqrtf-lrintf.c.o +#10 92.86 [809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-tflm.c.o +#10 92.87 [810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvtu32-sqrt-lrint.c.o +#10 92.87 [811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvtu32-sqrtf-lrintf.c.o +#10 92.87 [812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-hashemian.c.o +#10 92.87 [813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu32-sqrt-llrint.c.o +#10 92.87 [814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu32-sqrt-cvtsatu32f64.c.o +#10 92.89 [815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu64-sqrt-llrint.c.o +#10 92.90 [816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/tanh-f32-scalar-rr1-p6-div.c.o +#10 92.90 [817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/tanh-f32-scalar-rr2-p6-div.c.o +#10 92.91 [818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o +#10 92.92 [819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o +#10 92.94 [820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o +#10 92.96 [821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 92.96 [822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 92.97 [823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 92.98 [824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 93.00 [825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 93.00 [826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 93.01 [827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse41-2x4.c.o +#10 93.01 [828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x24.c.o +#10 93.02 [829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 93.03 [830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 93.04 [831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse41-2x8.c.o +#10 93.04 [832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x8.c.o +#10 93.05 [833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 93.05 [834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x32.c.o +#10 93.07 [835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 93.08 [836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x16.c.o +#10 93.12 [837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 93.14 [838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 93.14 [839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 93.14 [840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 93.15 [841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 93.16 [842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 93.16 [843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 93.17 [844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 93.18 [845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 93.22 [846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 93.23 [847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 93.23 [848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 93.23 [849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 93.24 [850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 93.24 [851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 93.24 [852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 93.24 [853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 93.25 [854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 93.26 [855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 93.29 [856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 93.32 [857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 93.32 [858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 93.33 [859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 93.33 [860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 93.34 [861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 93.35 [862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 93.36 [863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 93.36 [864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 93.37 [865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 93.37 [866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 93.38 [867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 93.39 [868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 93.40 [869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 93.41 [870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 93.41 [871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 93.41 [872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 93.43 [873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 93.45 [874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 93.47 [875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 93.48 [876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 93.48 [877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 93.48 [878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 93.48 [879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 93.49 [880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 93.51 [881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 93.51 [882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 93.54 [883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-sse-x4.c.o +#10 93.55 [884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 93.55 [885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 93.55 [886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 93.55 [887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 93.56 [888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-sse-x8.c.o +#10 93.56 [889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 93.58 [890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 93.59 [891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 93.59 [892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-sse-x8.c.o +#10 93.60 [893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 93.62 [894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 93.63 [895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 93.63 [896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o +#10 93.65 [897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o +#10 93.66 [898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 93.67 [899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 93.69 [900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 93.71 [901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 93.72 [902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 93.72 [903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 93.73 [904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 93.73 [905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o +#10 93.76 [906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 93.76 [907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x2.c.o +#10 93.77 [908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 93.77 [909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x1.c.o +#10 93.79 [910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x3.c.o +#10 93.81 [911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 93.82 [912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x4.c.o +#10 93.82 [913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 93.82 [914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 93.84 [915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 93.86 [916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o +#10 93.88 [917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o +#10 93.89 [918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 93.90 [919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 93.91 [920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 93.91 [921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 93.91 [922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 93.92 [923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 93.93 [924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 93.93 [925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o +#10 93.95 [926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 93.95 [927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o +#10 93.95 [928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 93.95 [929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 93.97 [930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 93.98 [931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o +#10 93.98 [932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 93.99 [933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 93.99 [934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o +#10 94.00 [935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 94.00 [936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 94.01 [937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 94.04 [938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 94.04 [939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 94.04 [940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-rndnu-scalar.c.o +#10 94.05 [941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 94.06 [942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 94.06 [943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-rndnu-scalar.c.o +#10 94.07 [944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 94.09 [945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 94.10 [946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-rndnu-scalar.c.o +#10 94.11 [947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 94.12 [948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 94.14 [949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 94.15 [950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 94.16 [951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 94.17 [952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 94.17 [953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-rndnu-scalar.c.o +#10 94.18 [954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 94.19 [955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-rndnu-scalar.c.o +#10 94.23 [956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 94.24 [957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 94.24 [958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 94.24 [959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 94.26 [960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 94.26 [961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-rndnu-scalar.c.o +#10 94.27 [962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 94.28 [963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-rndnu-scalar.c.o +#10 94.28 [964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 94.28 [965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 94.31 [966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-rndnu-scalar.c.o +#10 94.32 [967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 94.32 [968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 94.32 [969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 94.33 [970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-rndnu-scalar.c.o +#10 94.34 [971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 94.36 [972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-rndnu-scalar.c.o +#10 94.36 [973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 94.37 [974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 94.38 [975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 94.39 [976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 94.40 [977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 94.42 [978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-rndnu-scalar.c.o +#10 94.42 [979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 94.42 [980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 94.43 [981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 94.44 [982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 94.45 [983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-rndnu-scalar.c.o +#10 94.45 [984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 94.48 [985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 94.49 [986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 94.49 [987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-rndnu-scalar.c.o +#10 94.51 [988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 94.52 [989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 94.52 [990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 94.53 [991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 94.54 [992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-rndnu-scalar.c.o +#10 94.54 [993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-rndnu-scalar.c.o +#10 94.54 [994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 94.56 [995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-fmagic.c.o +#10 94.57 [996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-lrintf.c.o +#10 94.58 [997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 94.58 [998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 94.58 [999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x1.c.o +#10 94.58 [1000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned64.c.o +#10 94.59 [1001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-scalar.c.o +#10 94.59 [1002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned32.c.o +#10 94.59 [1003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 94.59 [1004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-signed64.c.o +#10 94.61 [1005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-scalar.c.o +#10 94.62 [1006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x2.c.o +#10 94.63 [1007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x2.c.o +#10 94.63 [1008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x4.c.o +#10 94.63 [1009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x1.c.o +#10 94.63 [1010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x4.c.o +#10 94.64 [1011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 94.64 [1012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x2.c.o +#10 94.64 [1013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x1.c.o +#10 94.64 [1014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x2.c.o +#10 94.64 [1015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-rndnu-scalar.c.o +#10 94.64 [1016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x4.c.o +#10 94.64 [1017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x1.c.o +#10 94.66 [1018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x1.c.o +#10 94.67 [1019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x1.c.o +#10 94.68 [1020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x2.c.o +#10 94.68 [1021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x1.c.o +#10 94.68 [1022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x2.c.o +#10 94.68 [1023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x4.c.o +#10 94.68 [1024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x4.c.o +#10 94.69 [1025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x2.c.o +#10 94.69 [1026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x4.c.o +#10 94.73 [1027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x4.c.o +#10 94.73 [1028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o +#10 94.74 [1029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 94.75 [1030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o +#10 94.75 [1031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 94.77 [1032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 94.78 [1033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o +#10 94.79 [1034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 94.81 [1035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 94.81 [1036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 94.83 [1037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 94.85 [1038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o +#10 94.85 [1039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 94.87 [1040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 94.88 [1041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 94.89 [1042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 94.90 [1043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o +#10 94.91 [1044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x1.c.o +#10 94.92 [1045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x2.c.o +#10 94.94 [1046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x3.c.o +#10 94.95 [1047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 94.95 [1048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x4.c.o +#10 94.96 [1049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 94.98 [1050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 94.99 [1051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 94.99 [1052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 95.00 [1053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o +#10 95.03 [1054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 95.05 [1055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 95.06 [1056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 95.07 [1057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 95.07 [1058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o +#10 95.07 [1059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 95.08 [1060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 95.08 [1061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 95.09 [1062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o +#10 95.10 [1063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 95.10 [1064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 95.11 [1065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o +#10 95.12 [1066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 95.12 [1067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o +#10 95.13 [1068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 95.15 [1069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 95.15 [1070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o +#10 95.15 [1071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 95.16 [1072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 95.17 [1073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 95.17 [1074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 95.18 [1075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o +#10 95.18 [1076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 95.20 [1077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 95.21 [1078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 95.21 [1079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 95.23 [1080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o +#10 95.24 [1081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 95.24 [1082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o +#10 95.24 [1083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 95.24 [1084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 95.27 [1085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 95.27 [1086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 95.28 [1087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o +#10 95.28 [1088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 95.29 [1089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 95.31 [1090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o +#10 95.32 [1091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 95.32 [1092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 95.35 [1093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o +#10 95.36 [1094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 95.37 [1095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 95.37 [1096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 95.37 [1097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 95.37 [1098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 95.39 [1099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 95.41 [1100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o +#10 95.41 [1101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 95.42 [1102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 95.42 [1103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 95.42 [1104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 95.44 [1105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o +#10 95.45 [1106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 95.46 [1107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o +#10 95.46 [1108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 95.50 [1109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 95.50 [1110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 95.53 [1111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x16.c.o +#10 95.53 [1112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x8.c.o +#10 95.53 [1113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 95.54 [1114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x24.c.o +#10 95.55 [1115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 95.55 [1116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 95.56 [1117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 95.59 [1118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x32.c.o +#10 95.59 [1119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o +#10 95.60 [1120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 95.63 [1121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 95.63 [1122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 95.63 [1123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o +#10 95.64 [1124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 95.64 [1125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 95.67 [1126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 95.70 [1127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 95.71 [1128/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o +#10 95.71 [1129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 95.73 [1130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 95.74 [1131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o +#10 95.74 [1132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 95.77 [1133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 95.77 [1134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 95.77 [1135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 95.82 [1136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-fmagic.c.o +#10 95.82 [1137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-scalar.c.o +#10 95.83 [1138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-lrintf.c.o +#10 95.83 [1139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o +#10 95.84 [1140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 95.84 [1141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-signed64.c.o +#10 95.85 [1142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x8.c.o +#10 95.85 [1143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 95.85 [1144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o +#10 95.86 [1145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x1.c.o +#10 95.86 [1146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x16.c.o +#10 95.86 [1147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned32.c.o +#10 95.86 [1148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x24.c.o +#10 95.86 [1149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned64.c.o +#10 95.87 [1150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 95.89 [1151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x2.c.o +#10 95.89 [1152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x1.c.o +#10 95.89 [1153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x4.c.o +#10 95.90 [1154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x1.c.o +#10 95.90 [1155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x4.c.o +#10 95.90 [1156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x2.c.o +#10 95.90 [1157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x1.c.o +#10 95.91 [1158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x2.c.o +#10 95.91 [1159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x4.c.o +#10 95.91 [1160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x1.c.o +#10 95.93 [1161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x4.c.o +#10 95.93 [1162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x2.c.o +#10 95.93 [1163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x4.c.o +#10 95.94 [1164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x1.c.o +#10 95.94 [1165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x2.c.o +#10 95.94 [1166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x1.c.o +#10 95.94 [1167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o +#10 95.94 [1168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x2.c.o +#10 95.94 [1169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x4.c.o +#10 95.95 [1170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x4.c.o +#10 95.95 [1171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x2.c.o +#10 95.96 [1172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o +#10 95.97 [1173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x1.c.o +#10 95.97 [1174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x3.c.o +#10 95.98 [1175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x2.c.o +#10 95.99 [1176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-scalar-x4.c.o +#10 95.99 [1177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x1.c.o +#10 95.99 [1178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x4.c.o +#10 95.99 [1179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x3.c.o +#10 95.99 [1180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o +#10 96.00 [1181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o +#10 96.00 [1182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x2.c.o +#10 96.00 [1183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o +#10 96.01 [1184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x4.c.o +#10 96.01 [1185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o +#10 96.02 [1186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-accumulate/gen/u32-filterbank-accumulate-scalar-x1.c.o +#10 96.03 [1187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o +#10 96.03 [1188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-scalar.c.o +#10 96.04 [1189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o +#10 96.04 [1190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x1.c.o +#10 96.04 [1191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-scalar-x4.c.o +#10 96.04 [1192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x2.c.o +#10 96.04 [1193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x1.c.o +#10 96.05 [1194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-subtract/u32-filterbank-subtract-scalar-x2.c.o +#10 96.05 [1195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x3.c.o +#10 96.06 [1196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o +#10 96.06 [1197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u64-u32-vsqrtshift/u64-u32-vsqrtshift-scalar-cvtu32-sqrt-cvtu32f64-x1.c.o +#10 96.07 [1198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x8.c.o +#10 96.07 [1199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x2.c.o +#10 96.07 [1200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x4.c.o +#10 96.08 [1201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o +#10 96.08 [1202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o +#10 96.08 [1203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x16.c.o +#10 96.09 [1204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o +#10 96.09 [1205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x4.c.o +#10 96.09 [1206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o +#10 96.10 [1207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o +#10 96.10 [1208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-scalar.c.o +#10 96.11 [1209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-scalar.c.o +#10 96.11 [1210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-scalar.c.o +#10 96.11 [1211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o +#10 96.12 [1212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o +#10 96.12 [1213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o +#10 96.13 [1214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-scalar.c.o +#10 96.13 [1215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o +#10 96.13 [1216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o +#10 96.14 [1217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o +#10 96.15 [1218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o +#10 96.16 [1219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o +#10 96.16 [1220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o +#10 96.16 [1221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o +#10 96.17 [1222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o +#10 96.17 [1223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o +#10 96.18 [1224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o +#10 96.19 [1225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o +#10 96.19 [1226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o +#10 96.19 [1227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x3-scalar.c.o +#10 96.19 [1228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o +#10 96.19 [1229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o +#10 96.19 [1230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x4-scalar.c.o +#10 96.20 [1231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o +#10 96.20 [1232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x2-scalar.c.o +#10 96.21 [1233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o +#10 96.21 [1234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o +#10 96.23 [1235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o +#10 96.23 [1236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o +#10 96.23 [1237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o +#10 96.25 [1238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o +#10 96.25 [1239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o +#10 96.25 [1240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o +#10 96.25 [1241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o +#10 96.25 [1242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o +#10 96.26 [1243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o +#10 96.26 [1244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o +#10 96.27 [1245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o +#10 96.29 [1246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o +#10 96.29 [1247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o +#10 96.29 [1248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o +#10 96.29 [1249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o +#10 96.29 [1250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-scalar.c.o +#10 96.29 [1251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-scalar.c.o +#10 96.29 [1252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-scalar.c.o +#10 96.29 [1253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-scalar.c.o +#10 96.29 [1254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-scalar.c.o +#10 96.29 [1255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o +#10 96.30 [1256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o +#10 96.32 [1257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o +#10 96.33 [1258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o +#10 96.33 [1259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o +#10 96.33 [1260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o +#10 96.33 [1261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-scalar-x16.c.o +#10 96.33 [1262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o +#10 96.33 [1263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o +#10 96.34 [1264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o +#10 96.35 [1265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o +#10 96.35 [1266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o +#10 96.35 [1267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-scalar.c.o +#10 96.36 [1268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-transpose/xx-transpose-1x1-scalar-memcpy.c.o +#10 96.41 [1269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o +#10 96.43 [1270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc4.c.o +#10 96.43 [1271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o +#10 96.45 [1272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.o +#10 96.45 [1273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc2.c.o +#10 96.45 [1274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4.c.o +#10 96.45 [1275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc3.c.o +#10 96.50 [1276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o +#10 96.50 [1277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4.c.o +#10 96.50 [1278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-4x4.c.o +#10 96.50 [1279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-3x4.c.o +#10 96.53 [1280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc2.c.o +#10 96.53 [1281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-5x4.c.o +#10 96.55 [1282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o +#10 96.56 [1283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc4.c.o +#10 96.58 [1284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4.c.o +#10 96.59 [1285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-6x4.c.o +#10 96.60 [1286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4-acc2.c.o +#10 96.61 [1287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o +#10 96.63 [1288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4.c.o +#10 96.66 [1289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc2.c.o +#10 96.67 [1290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-3x4.c.o +#10 96.69 [1291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-4x4.c.o +#10 96.69 [1292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc5.c.o +#10 96.69 [1293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc3.c.o +#10 96.75 [1294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4.c.o +#10 96.77 [1295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc4.c.o +#10 96.78 [1296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc3.c.o +#10 96.79 [1297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc2.c.o +#10 96.84 [1298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc2.c.o +#10 96.85 [1299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4.c.o +#10 96.85 [1300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc4.c.o +#10 96.87 [1301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc3.c.o +#10 96.89 [1302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-3x4-acc2.c.o +#10 96.89 [1303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-3x4.c.o +#10 96.93 [1304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc5.c.o +#10 96.95 [1305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4.c.o +#10 96.96 [1306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-sse-acc2.c.o +#10 96.96 [1307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4-acc2.c.o +#10 96.99 [1308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc3.c.o +#10 96.99 [1309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o +#10 97.00 [1310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-sse.c.o +#10 97.01 [1311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc2.c.o +#10 97.03 [1312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse-acc2.c.o +#10 97.03 [1313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o +#10 97.03 [1314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-sse-acc2.c.o +#10 97.04 [1315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o +#10 97.06 [1316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-5x4.c.o +#10 97.06 [1317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse-acc2.c.o +#10 97.09 [1318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-sse.c.o +#10 97.10 [1319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o +#10 97.12 [1320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4.c.o +#10 97.15 [1321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4-acc2.c.o +#10 97.15 [1322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.o +#10 97.15 [1323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-sse-acc2.c.o +#10 97.16 [1324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-sse.c.o +#10 97.17 [1325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-7f6m6l8c4s4r-minmax-sse.c.o +#10 97.18 [1326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-7f6m6l8c4s4r-minmax-sse-acc2.c.o +#10 97.19 [1327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.o +#10 97.19 [1328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse-acc2.c.o +#10 97.20 [1329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o +#10 97.21 [1330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-sse-acc2.c.o +#10 97.23 [1331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-sse.c.o +#10 97.24 [1332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-sse-x4.c.o +#10 97.25 [1333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-sse-c4.c.o +#10 97.26 [1334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-sse-c4.c.o +#10 97.26 [1335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o +#10 97.27 [1336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-dup.c.o +#10 97.28 [1337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-sse.c.o +#10 97.30 [1338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o +#10 97.32 [1339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse-load1.c.o +#10 97.34 [1340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse-acc2.c.o +#10 97.34 [1341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o +#10 97.34 [1342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse-dup.c.o +#10 97.34 [1343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8s4-minmax-sse.c.o +#10 97.35 [1344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o +#10 97.38 [1345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse-load1.c.o +#10 97.39 [1346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse-dup.c.o +#10 97.40 [1347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-dup.c.o +#10 97.40 [1348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse-load1.c.o +#10 97.41 [1349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-sse.c.o +#10 97.43 [1350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse-dup.c.o +#10 97.44 [1351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8s4-minmax-sse.c.o +#10 97.46 [1352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8s4-minmax-sse.c.o +#10 97.46 [1353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse-load1.c.o +#10 97.46 [1354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8s4-minmax-sse.c.o +#10 97.46 [1355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse-dup.c.o +#10 97.46 [1356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse-load1.c.o +#10 97.49 [1357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse-dup.c.o +#10 97.53 [1358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse-load1.c.o +#10 97.53 [1359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8s4-minmax-sse.c.o +#10 97.54 [1360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse-dup.c.o +#10 97.55 [1361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8s4-minmax-sse.c.o +#10 97.56 [1362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o +#10 97.57 [1363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-dup.c.o +#10 97.57 [1364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-sse.c.o +#10 97.63 [1365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse-load1.c.o +#10 97.63 [1366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse-dup.c.o +#10 97.67 [1367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o +#10 97.67 [1368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8s4-minmax-sse.c.o +#10 97.69 [1369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-dup.c.o +#10 97.70 [1370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o +#10 97.72 [1371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse-dup.c.o +#10 97.74 [1372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse-load1.c.o +#10 97.75 [1373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-sse.c.o +#10 97.76 [1374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-sse.c.o +#10 97.76 [1375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o +#10 97.78 [1376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8s4-minmax-sse.c.o +#10 97.78 [1377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o +#10 97.79 [1378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse-2x8.c.o +#10 97.79 [1379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o +#10 97.79 [1380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p4.c.o +#10 97.81 [1381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse-2x4.c.o +#10 97.81 [1382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o +#10 97.83 [1383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-sse.c.o +#10 97.85 [1384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c4.c.o +#10 97.85 [1385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-sse-x4.c.o +#10 97.86 [1386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-sse-x4.c.o +#10 97.86 [1387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-sse-x8.c.o +#10 97.87 [1388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-sse-x8.c.o +#10 97.87 [1389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-sse-x4.c.o +#10 97.89 [1390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o +#10 97.90 [1391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-sse-x8.c.o +#10 97.92 [1392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-sse-x8.c.o +#10 97.92 [1393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-sse-x4.c.o +#10 97.93 [1394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-sse-x4.c.o +#10 97.93 [1395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-sse-x4.c.o +#10 97.94 [1396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-sse-x8.c.o +#10 97.96 [1397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-sse-x8.c.o +#10 97.97 [1398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-sse-x8.c.o +#10 97.98 [1399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-sse-x4.c.o +#10 98.00 [1400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-sse-x4.c.o +#10 98.00 [1401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-sse-x8.c.o +#10 98.01 [1402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-sse-x4.c.o +#10 98.01 [1403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-sse-x8.c.o +#10 98.03 [1404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-sse-x4.c.o +#10 98.03 [1405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-sse-x4.c.o +#10 98.05 [1406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-sse-x8.c.o +#10 98.10 [1407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-x8.c.o +#10 98.10 [1408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 98.11 [1409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 98.11 [1410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-avx.c.o +#10 98.12 [1411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-avx.c.o +#10 98.14 [1412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-sse.c.o +#10 98.14 [1413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 98.14 [1414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 98.14 [1415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-x4.c.o +#10 98.15 [1416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-x4.c.o +#10 98.16 [1417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-x8.c.o +#10 98.17 [1418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-sse.c.o +#10 98.17 [1419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-sse-x8.c.o +#10 98.17 [1420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-sse-x4.c.o +#10 98.19 [1421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-sse-x4.c.o +#10 98.20 [1422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o +#10 98.21 [1423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-sse-x8.c.o +#10 98.21 [1424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-sse.c.o +#10 98.21 [1425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-sse-x4.c.o +#10 98.21 [1426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-sse-x8.c.o +#10 98.23 [1427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-x4.c.o +#10 98.24 [1428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-sse-x4.c.o +#10 98.24 [1429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-x8.c.o +#10 98.25 [1430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-sse-x8.c.o +#10 98.25 [1431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o +#10 98.25 [1432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-sse-2x.c.o +#10 98.25 [1433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-sse-x4.c.o +#10 98.27 [1434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-sse-x8.c.o +#10 98.27 [1435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-sqrt-x4.c.o +#10 98.27 [1436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-sqrt-x8.c.o +#10 98.29 [1437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-sse-x4.c.o +#10 98.29 [1438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-sse-x8.c.o +#10 98.30 [1439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-sse-x4.c.o +#10 98.30 [1440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse-addsub.c.o +#10 98.30 [1441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse-addsub.c.o +#10 98.31 [1442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-sse-x8.c.o +#10 98.32 [1443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-hh1mac.c.o +#10 98.32 [1444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse-addsub.c.o +#10 98.32 [1445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-sse-x4.c.o +#10 98.32 [1446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse-addsub.c.o +#10 98.32 [1447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-sse-x8.c.o +#10 98.33 [1448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-nr2mac.c.o +#10 98.35 [1449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-nr1mac.c.o +#10 98.38 [1450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x4-sse.c.o +#10 98.38 [1451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o +#10 98.39 [1452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-sse2-x8.c.o +#10 98.39 [1453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x8.c.o +#10 98.39 [1454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x16.c.o +#10 98.39 [1455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x8.c.o +#10 98.40 [1456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-sse2-x16.c.o +#10 98.41 [1457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x16.c.o +#10 98.41 [1458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x32.c.o +#10 98.42 [1459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x24.c.o +#10 98.42 [1460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x24.c.o +#10 98.44 [1461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-sse2-x8.c.o +#10 98.46 [1462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o +#10 98.48 [1463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-sse2-x16.c.o +#10 98.49 [1464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x32.c.o +#10 98.49 [1465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x16.c.o +#10 98.49 [1466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o +#10 98.51 [1467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x8.c.o +#10 98.52 [1468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o +#10 98.54 [1469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x24.c.o +#10 98.54 [1470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x32.c.o +#10 98.55 [1471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse2-dup.c.o +#10 98.57 [1472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse2-dup.c.o +#10 98.57 [1473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse2-dup.c.o +#10 98.57 [1474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse2-dup.c.o +#10 98.61 [1475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse2-dup.c.o +#10 98.61 [1476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse2-dup.c.o +#10 98.61 [1477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse2-dup.c.o +#10 98.62 [1478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse2-2x4.c.o +#10 98.62 [1479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse2-dup.c.o +#10 98.63 [1480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse2-dup.c.o +#10 98.63 [1481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x8.c.o +#10 98.66 [1482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse2-dup.c.o +#10 98.66 [1483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse2-2x8.c.o +#10 98.66 [1484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x24.c.o +#10 98.67 [1485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x16.c.o +#10 98.67 [1486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse2-dup.c.o +#10 98.69 [1487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse2-dup.c.o +#10 98.69 [1488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x4.c.o +#10 98.69 [1489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x32.c.o +#10 98.69 [1490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x24.c.o +#10 98.70 [1491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x8.c.o +#10 98.71 [1492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x32.c.o +#10 98.71 [1493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x8-acc2.c.o +#10 98.72 [1494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x16.c.o +#10 98.74 [1495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12-acc3.c.o +#10 98.75 [1496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12-acc2.c.o +#10 98.76 [1497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x8.c.o +#10 98.76 [1498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16.c.o +#10 98.77 [1499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16-acc4.c.o +#10 98.77 [1500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16-acc2.c.o +#10 98.79 [1501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20-acc5.c.o +#10 98.79 [1502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20-acc2.c.o +#10 98.79 [1503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x4.c.o +#10 98.80 [1504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12.c.o +#10 98.81 [1505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x8.c.o +#10 98.82 [1506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20.c.o +#10 98.84 [1507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x4.c.o +#10 98.84 [1508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x12.c.o +#10 98.87 [1509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x12.c.o +#10 98.87 [1510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x8.c.o +#10 98.88 [1511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x16.c.o +#10 98.89 [1512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x16.c.o +#10 98.89 [1513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x20.c.o +#10 98.89 [1514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x24.c.o +#10 98.89 [1515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse2-x4.c.o +#10 98.90 [1516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse2-x4.c.o +#10 98.91 [1517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x20.c.o +#10 98.93 [1518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse2-x8.c.o +#10 98.94 [1519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse2-x4.c.o +#10 98.94 [1520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x24.c.o +#10 98.94 [1521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse2-x8.c.o +#10 98.95 [1522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse2-x4.c.o +#10 98.95 [1523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse2-x4.c.o +#10 98.95 [1524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse2-x8.c.o +#10 98.95 [1525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse2-x8.c.o +#10 98.96 [1526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse2-x8.c.o +#10 98.97 [1527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x4.c.o +#10 98.99 [1528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x8.c.o +#10 99.01 [1529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse2-int16.c.o +#10 99.01 [1530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x4.c.o +#10 99.02 [1531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x12.c.o +#10 99.04 [1532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x8.c.o +#10 99.04 [1533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x12.c.o +#10 99.04 [1534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse2-int32.c.o +#10 99.04 [1535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x16.c.o +#10 99.04 [1536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x16.c.o +#10 99.08 [1537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-sse2-rr2-lut64-p2.c.o +#10 99.08 [1538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-sse2.c.o +#10 99.08 [1539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x20.c.o +#10 99.08 [1540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x24.c.o +#10 99.09 [1541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x20.c.o +#10 99.09 [1542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-sse2-rr2-lut16-p3.c.o +#10 99.09 [1543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-sse2-rr2-p6.c.o +#10 99.09 [1544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x24.c.o +#10 99.10 [1545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-sse2-rr2-p5.c.o +#10 99.10 [1546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse2-cvt.c.o +#10 99.10 [1547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse2-cvt.c.o +#10 99.11 [1548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-sse2-rr2-p5.c.o +#10 99.13 [1549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse2-cvt.c.o +#10 99.13 [1550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-div.c.o +#10 99.13 [1551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse2-cvt.c.o +#10 99.14 [1552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-nr1.c.o +#10 99.14 [1553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-nr2.c.o +#10 99.14 [1554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-div.c.o +#10 99.14 [1555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-nr1.c.o +#10 99.14 [1556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-nr2.c.o +#10 99.20 [1557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o +#10 99.24 [1558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.24 [1559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 99.25 [1560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.28 [1561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 99.29 [1562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 99.30 [1563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 99.33 [1564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.35 [1565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.36 [1566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 99.37 [1567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse2-mul16.c.o +#10 99.38 [1568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 99.38 [1569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 99.40 [1570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.43 [1571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.43 [1572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.45 [1573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 99.47 [1574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.47 [1575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 99.48 [1576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 99.51 [1577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.53 [1578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.53 [1579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 99.54 [1580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.54 [1581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.59 [1582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.60 [1583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 99.61 [1584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 99.61 [1585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.62 [1586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 99.63 [1587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.64 [1588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.65 [1589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 99.65 [1590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.66 [1591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.68 [1592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.69 [1593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.72 [1594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 99.73 [1595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.74 [1596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 99.74 [1597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.74 [1598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.74 [1599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.78 [1600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 99.78 [1601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.78 [1602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.83 [1603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.86 [1604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 99.86 [1605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.87 [1606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 99.87 [1607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 99.88 [1608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 99.89 [1609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse2-mul16.c.o +#10 99.91 [1610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 99.91 [1611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 99.96 [1612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 99.96 [1613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 99.98 [1614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 100.0 [1615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x8.c.o +#10 100.0 [1616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 100.0 [1617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x16.c.o +#10 100.0 [1618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x24.c.o +#10 100.1 [1619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x32.c.o +#10 100.1 [1620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse2-mul16.c.o +#10 100.1 [1621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c8.c.o +#10 100.1 [1622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 100.1 [1623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c16.c.o +#10 100.1 [1624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c8.c.o +#10 100.2 [1625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c24.c.o +#10 100.2 [1626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c16.c.o +#10 100.2 [1627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 100.2 [1628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.2 [1629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.2 [1630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-sse2.c.o +#10 100.2 [1631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 100.2 [1632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-sse2.c.o +#10 100.3 [1633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.3 [1634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.3 [1635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c24.c.o +#10 100.3 [1636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 100.3 [1637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-sse2.c.o +#10 100.3 [1638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 100.3 [1639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.3 [1640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 100.3 [1641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.4 [1642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-sse2.c.o +#10 100.4 [1643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.4 [1644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.4 [1645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-sse2.c.o +#10 100.4 [1646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 100.4 [1647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 100.5 [1648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.5 [1649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.5 [1650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-sse2.c.o +#10 100.5 [1651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.5 [1652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.5 [1653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-sse2.c.o +#10 100.5 [1654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 100.5 [1655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-sse2.c.o +#10 100.5 [1656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse2-mul16.c.o +#10 100.5 [1657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.5 [1658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-sse2.c.o +#10 100.5 [1659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.5 [1660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 100.6 [1661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.6 [1662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.6 [1663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.6 [1664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-sse2.c.o +#10 100.6 [1665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.6 [1666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.6 [1667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-sse2.c.o +#10 100.6 [1668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.6 [1669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 100.6 [1670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 100.7 [1671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.7 [1672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.7 [1673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 100.7 [1674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.7 [1675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.7 [1676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.7 [1677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.7 [1678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.7 [1679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.7 [1680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 100.7 [1681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-sse2.c.o +#10 100.8 [1682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 100.8 [1683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-sse2.c.o +#10 100.8 [1684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-sse2.c.o +#10 100.8 [1685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x8.c.o +#10 100.8 [1686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 100.8 [1687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 100.8 [1688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 100.8 [1689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 100.8 [1690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x8.c.o +#10 100.8 [1691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x16.c.o +#10 100.8 [1692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 100.9 [1693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x24.c.o +#10 100.9 [1694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x16.c.o +#10 100.9 [1695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x32.c.o +#10 100.9 [1696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x24.c.o +#10 100.9 [1697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-x32.c.o +#10 100.9 [1698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 100.9 [1699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-x16.c.o +#10 100.9 [1700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-x32.c.o +#10 100.9 [1701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x32.c.o +#10 100.9 [1702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 100.9 [1703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-x16.c.o +#10 100.9 [1704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 100.9 [1705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 101.0 [1706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x16.c.o +#10 101.0 [1707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x24.c.o +#10 101.0 [1708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x32.c.o +#10 101.0 [1709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x8.c.o +#10 101.0 [1710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o +#10 101.0 [1711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o +#10 101.0 [1712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c8.c.o +#10 101.1 [1713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c8.c.o +#10 101.1 [1714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 101.1 [1715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c16.c.o +#10 101.1 [1716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 101.1 [1717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c16.c.o +#10 101.1 [1718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c24.c.o +#10 101.1 [1719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.1 [1720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.1 [1721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.1 [1722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.2 [1723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 101.2 [1724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c24.c.o +#10 101.2 [1725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 101.2 [1726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.2 [1727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 101.2 [1728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.2 [1729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.2 [1730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.3 [1731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 101.3 [1732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 101.3 [1733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.3 [1734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 101.3 [1735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.3 [1736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.3 [1737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.3 [1738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 101.3 [1739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.3 [1740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.4 [1741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.4 [1742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 101.4 [1743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.4 [1744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.4 [1745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.4 [1746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 101.4 [1747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 101.4 [1748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.4 [1749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.4 [1750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.4 [1751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.5 [1752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.5 [1753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 101.5 [1754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.5 [1755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 101.5 [1756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.5 [1757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.5 [1758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 101.5 [1759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 101.6 [1760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.6 [1761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-sse2.c.o +#10 101.6 [1762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.6 [1763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-sse2.c.o +#10 101.6 [1764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 101.6 [1765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-sse2.c.o +#10 101.6 [1766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 101.6 [1767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-x8.c.o +#10 101.6 [1768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 101.6 [1769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-x16.c.o +#10 101.6 [1770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-x8.c.o +#10 101.6 [1771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 101.6 [1772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-x32.c.o +#10 101.6 [1773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-x16.c.o +#10 101.6 [1774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-x16.c.o +#10 101.7 [1775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 101.7 [1776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-x32.c.o +#10 101.7 [1777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-x16.c.o +#10 101.7 [1778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 101.7 [1779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 101.7 [1780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o +#10 101.7 [1781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-sse2-x64.c.o +#10 101.7 [1782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c16.c.o +#10 101.7 [1783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 101.7 [1784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o +#10 101.7 [1785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-sse2.c.o +#10 101.7 [1786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-sse2.c.o +#10 101.7 [1787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o +#10 101.8 [1788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-sse2.c.o +#10 101.8 [1789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c16.c.o +#10 101.8 [1790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-sse2-x64.c.o +#10 101.8 [1791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-sse2.c.o +#10 101.8 [1792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o +#10 101.8 [1793/6823] Generating src/x86_64-fma/2d-fourier-16x16.py.o +#10 101.8 [1794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-sse2.c.o +#10 101.9 [1795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/x16-transposec-4x8-sse2.c.o +#10 102.1 [1796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-sse2.c.o +#10 102.1 [1797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-sse2.c.o +#10 102.1 [1798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o +#10 102.1 [1799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-sse2.c.o +#10 102.2 [1800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-sse2.c.o +#10 102.2 [1801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-sse2.c.o +#10 102.2 [1802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-sse2.c.o +#10 102.2 [1803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-sse2.c.o +#10 102.2 [1804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-sse2.c.o +#10 102.2 [1805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-sse2.c.o +#10 102.2 [1806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-sse2.c.o +#10 102.2 [1807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-sse2.c.o +#10 102.2 [1808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-sse2.c.o +#10 102.2 [1809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o +#10 102.2 [1810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-sse2.c.o +#10 102.3 [1811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-sse2.c.o +#10 102.3 [1812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-sse2.c.o +#10 102.3 [1813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-sse2-x64.c.o +#10 102.4 [1814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc3.c.o +#10 102.4 [1815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-sse2.c.o +#10 102.4 [1816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc2.c.o +#10 102.4 [1817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc4.c.o +#10 102.4 [1818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-sse2.c.o +#10 102.5 [1819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o +#10 102.5 [1820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4.c.o +#10 102.5 [1821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4.c.o +#10 102.5 [1822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-4x4.c.o +#10 102.5 [1823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-sse2.c.o +#10 102.5 [1824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-sse2.c.o +#10 102.6 [1825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o +#10 102.6 [1826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-sse2.c.o +#10 102.6 [1827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-sse2.c.o +#10 102.6 [1828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-3x4.c.o +#10 102.6 [1829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-sse2.c.o +#10 102.6 [1830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-ssse3-ld64.c.o +#10 102.6 [1831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-6x4.c.o +#10 102.6 [1832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-ssse3-ld128.c.o +#10 102.6 [1833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-ssse3.c.o +#10 102.6 [1834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-ssse3-ld64.c.o +#10 102.6 [1835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-5x4.c.o +#10 102.7 [1836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-ssse3-ld128.c.o +#10 102.7 [1837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-ssse3-ld128.c.o +#10 102.7 [1838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-ssse3-ld128.c.o +#10 102.7 [1839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-ssse3.c.o +#10 102.7 [1840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-ssse3-ld64.c.o +#10 102.7 [1841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-ssse3.c.o +#10 102.7 [1842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-ssse3-ld64.c.o +#10 102.7 [1843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-ssse3-ld64.c.o +#10 102.7 [1844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-ssse3-ld128.c.o +#10 102.7 [1845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-x16.c.o +#10 102.7 [1846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-ssse3.c.o +#10 102.7 [1847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-ssse3-ld64.c.o +#10 102.7 [1848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-ssse3.c.o +#10 102.8 [1849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-ssse3-ld128.c.o +#10 102.8 [1850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-x32.c.o +#10 102.8 [1851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-x16.c.o +#10 102.8 [1852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-x16.c.o +#10 102.8 [1853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-ssse3.c.o +#10 102.8 [1854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-x32.c.o +#10 102.8 [1855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-ssse3.c.o +#10 102.8 [1856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-x16.c.o +#10 102.8 [1857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-x32.c.o +#10 102.8 [1858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-x32.c.o +#10 102.8 [1859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-ssse3-x16.c.o +#10 102.8 [1860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x8.c.o +#10 102.8 [1861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-ssse3-x32.c.o +#10 102.9 [1862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o +#10 102.9 [1863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x8.c.o +#10 102.9 [1864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x16.c.o +#10 102.9 [1865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x32.c.o +#10 102.9 [1866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x24.c.o +#10 102.9 [1867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x24.c.o +#10 102.9 [1868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x8.c.o +#10 102.9 [1869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x16.c.o +#10 102.9 [1870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x32.c.o +#10 102.9 [1871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x24.c.o +#10 102.9 [1872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x4.c.o +#10 102.9 [1873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x32.c.o +#10 102.9 [1874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x8.c.o +#10 103.0 [1875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x16.c.o +#10 103.0 [1876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x4.c.o +#10 103.0 [1877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x8.c.o +#10 103.0 [1878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x12.c.o +#10 103.0 [1879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x16.c.o +#10 103.0 [1880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x12.c.o +#10 103.0 [1881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-x4.c.o +#10 103.0 [1882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x24.c.o +#10 103.0 [1883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x16.c.o +#10 103.0 [1884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x20.c.o +#10 103.0 [1885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x20.c.o +#10 103.1 [1886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-x8.c.o +#10 103.1 [1887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse41-x4.c.o +#10 103.1 [1888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse41-x4.c.o +#10 103.1 [1889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x24.c.o +#10 103.1 [1890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse41-x8.c.o +#10 103.1 [1891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse41-x8.c.o +#10 103.1 [1892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse41-x8.c.o +#10 103.1 [1893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse41-x8.c.o +#10 103.1 [1894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse41-x4.c.o +#10 103.1 [1895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse41-x4.c.o +#10 103.1 [1896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x4.c.o +#10 103.1 [1897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x8.c.o +#10 103.2 [1898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x4.c.o +#10 103.2 [1899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x12.c.o +#10 103.2 [1900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x8.c.o +#10 103.2 [1901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x20.c.o +#10 103.2 [1902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x16.c.o +#10 103.2 [1903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x12.c.o +#10 103.2 [1904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x16.c.o +#10 103.2 [1905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x24.c.o +#10 103.2 [1906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x24.c.o +#10 103.2 [1907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse41-int16.c.o +#10 103.2 [1908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse41.c.o +#10 103.2 [1909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x20.c.o +#10 103.2 [1910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse41-int32.c.o +#10 103.2 [1911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse41.c.o +#10 103.2 [1912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-sse41.c.o +#10 103.2 [1913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse41.c.o +#10 103.2 [1914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse41.c.o +#10 103.3 [1915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o +#10 103.4 [1916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 103.4 [1917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 103.4 [1918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 103.4 [1919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 103.4 [1920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 103.5 [1921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse41-mul16.c.o +#10 103.5 [1922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 103.5 [1923/6823] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o +#10 103.6 [1924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 103.6 [1925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 103.6 [1926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 103.7 [1927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 103.7 [1928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 103.7 [1929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 103.7 [1930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 103.7 [1931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 103.7 [1932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 103.7 [1933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 103.8 [1934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 103.8 [1935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 103.8 [1936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 103.8 [1937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 103.8 [1938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 103.9 [1939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse41-mul32.c.o +#10 103.9 [1940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 103.9 [1941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 103.9 [1942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 103.9 [1943/6823] Generating src/x86_64-fma/blas/s8gemm.py.o +#10 103.9 [1944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 103.9 [1945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse41-mul16.c.o +#10 103.9 [1946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 103.9 [1947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 103.9 [1948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 104.0 [1949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 104.0 [1950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 104.0 [1951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 104.0 [1952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 104.0 [1953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 104.0 [1954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 104.1 [1955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 104.1 [1956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 104.1 [1957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 104.1 [1958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 104.1 [1959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 104.1 [1960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 104.1 [1961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 104.1 [1962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 104.1 [1963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 104.1 [1964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 104.1 [1965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 104.1 [1966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 104.2 [1967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 104.2 [1968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 104.2 [1969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 104.2 [1970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 104.2 [1971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 104.2 [1972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 104.2 [1973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 104.3 [1974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 104.3 [1975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 104.3 [1976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 104.3 [1977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 104.3 [1978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 104.4 [1979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 104.4 [1980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse41-mul32.c.o +#10 104.5 [1981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 104.5 [1982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse41-mul16.c.o +#10 104.5 [1983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 104.5 [1984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 104.7 [1985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 104.7 [1986/6823] Generating src/x86_64-fma/blas/c8gemm.py.o +#10 104.7 [1987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 104.7 [1988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 104.8 [1989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 104.8 [1990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse41-mul32.c.o +#10 104.8 [1991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 104.9 [1992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c8.c.o +#10 104.9 [1993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x8.c.o +#10 104.9 [1994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x16.c.o +#10 104.9 [1995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c8.c.o +#10 104.9 [1996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c16.c.o +#10 104.9 [1997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse41-mul16.c.o +#10 104.9 [1998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c16.c.o +#10 105.0 [1999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.0 [2000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.0 [2001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c24.c.o +#10 105.0 [2002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.0 [2003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x32.c.o +#10 105.0 [2004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c24.c.o +#10 105.0 [2005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.0 [2006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-sse41.c.o +#10 105.0 [2007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-sse41.c.o +#10 105.1 [2008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 105.1 [2009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x24.c.o +#10 105.1 [2010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-sse41.c.o +#10 105.1 [2011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.1 [2012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.1 [2013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 105.1 [2014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-sse41.c.o +#10 105.1 [2015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.1 [2016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 105.1 [2017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-sse41.c.o +#10 105.1 [2018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 105.2 [2019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.2 [2020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-sse41.c.o +#10 105.2 [2021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 105.2 [2022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.2 [2023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.3 [2024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.3 [2025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-sse41.c.o +#10 105.3 [2026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.3 [2027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-sse41.c.o +#10 105.3 [2028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 105.3 [2029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 105.3 [2030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-sse41.c.o +#10 105.3 [2031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-sse41.c.o +#10 105.3 [2032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.3 [2033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.3 [2034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.4 [2035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.4 [2036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.4 [2037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-sse41.c.o +#10 105.4 [2038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.4 [2039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.4 [2040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 105.4 [2041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.4 [2042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 105.4 [2043/6823] Generating src/x86_64-fma/blas/s4c6gemm.py.o +#10 105.5 [2044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.5 [2045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.5 [2046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 105.5 [2047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 105.5 [2048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse41-mul32.c.o +#10 105.5 [2049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.5 [2050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.5 [2051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.5 [2052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 105.5 [2053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 105.6 [2054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-sse41.c.o +#10 105.6 [2055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.6 [2056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.6 [2057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.6 [2058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-sse41.c.o +#10 105.6 [2059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 105.6 [2060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-sse41-sra.c.o +#10 105.6 [2061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 105.6 [2062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-sse41.c.o +#10 105.6 [2063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 105.6 [2064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x8.c.o +#10 105.6 [2065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-sse41-srl.c.o +#10 105.6 [2066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 105.7 [2067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x16.c.o +#10 105.7 [2068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x24.c.o +#10 105.7 [2069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x16.c.o +#10 105.7 [2070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x32.c.o +#10 105.7 [2071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x8.c.o +#10 105.7 [2072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x24.c.o +#10 105.8 [2073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x32.c.o +#10 105.8 [2074/6823] Generating src/x86_64-fma/blas/conv1x1.py.o +#10 105.9 [2075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x8.c.o +#10 106.0 [2076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x8.c.o +#10 106.0 [2077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x32.c.o +#10 106.0 [2078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x16.c.o +#10 106.1 [2079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x8.c.o +#10 106.1 [2080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x24.c.o +#10 106.1 [2081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x16.c.o +#10 106.1 [2082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x24.c.o +#10 106.1 [2083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x16.c.o +#10 106.1 [2084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 106.1 [2085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x32.c.o +#10 106.1 [2086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 106.1 [2087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x8.c.o +#10 106.2 [2088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x16.c.o +#10 106.2 [2089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 106.2 [2090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 106.2 [2091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 106.3 [2092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x32.c.o +#10 106.3 [2093/6823] Generating src/x86_64-fma/blas/sgemm.py.o +#10 106.3 [2094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x32.c.o +#10 106.3 [2095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 106.4 [2096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 106.4 [2097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c8.c.o +#10 106.5 [2098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c8.c.o +#10 106.5 [2099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 106.5 [2100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c16.c.o +#10 106.5 [2101/6823] Generating src/x86_64-fma/max-pooling.py.o +#10 106.6 [2102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x8.c.o +#10 106.6 [2103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x32.c.o +#10 106.6 [2104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 106.6 [2105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x16.c.o +#10 106.6 [2106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 106.6 [2107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x24.c.o +#10 106.6 [2108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c24.c.o +#10 106.6 [2109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c16.c.o +#10 106.6 [2110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 106.6 [2111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c24.c.o +#10 106.7 [2112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 106.7 [2113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 106.7 [2114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 106.7 [2115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 106.7 [2116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 106.7 [2117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 106.7 [2118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 106.7 [2119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 106.7 [2120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 106.8 [2121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 106.8 [2122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 106.8 [2123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 106.8 [2124/6823] Generating src/x86_64-fma/relu.py.o +#10 106.8 [2125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 106.8 [2126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 106.8 [2127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 106.8 [2128/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 106.9 [2129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 106.9 [2130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 106.9 [2131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 106.9 [2132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 106.9 [2133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 106.9 [2134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 106.9 [2135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 106.9 [2136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 106.9 [2137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 106.9 [2138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 107.0 [2139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 107.0 [2140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 107.0 [2141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 107.0 [2142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 107.0 [2143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 107.0 [2144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 107.0 [2145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 107.0 [2146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 107.1 [2147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 107.1 [2148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 107.1 [2149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 107.1 [2150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 107.1 [2151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 107.1 [2152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 107.1 [2153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 107.1 [2154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 107.1 [2155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 107.1 [2156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-sse41.c.o +#10 107.1 [2157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-sse41.c.o +#10 107.1 [2158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 107.2 [2159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-x8.c.o +#10 107.2 [2160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-x16.c.o +#10 107.2 [2161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-x8.c.o +#10 107.2 [2162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 107.2 [2163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-x16.c.o +#10 107.3 [2164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 107.3 [2165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 107.4 [2166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 107.4 [2167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 107.4 [2168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c8.c.o +#10 107.5 [2169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul32-ld32-x16.c.o +#10 107.5 [2170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x16.c.o +#10 107.5 [2171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul32-ld32-x16.c.o +#10 107.5 [2172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul32-ld32-x8.c.o +#10 107.5 [2173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x8.c.o +#10 107.5 [2174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x32.c.o +#10 107.5 [2175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul32-ld32-x8.c.o +#10 107.5 [2176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x8.c.o +#10 107.5 [2177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-sse41-x64.c.o +#10 107.5 [2178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o +#10 107.5 [2179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x16.c.o +#10 107.6 [2180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x32.c.o +#10 107.6 [2181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c8.c.o +#10 107.6 [2182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x8.c.o +#10 107.6 [2183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o +#10 107.6 [2184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o +#10 107.6 [2185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x16.c.o +#10 107.6 [2186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x24.c.o +#10 107.6 [2187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x8.c.o +#10 107.6 [2188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x32.c.o +#10 107.6 [2189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x16.c.o +#10 107.6 [2190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x32.c.o +#10 107.6 [2191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x24.c.o +#10 107.7 [2192/6823] Generating src/x86_64-fma/softmax.py.o +#10 108.0 [2193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-avx-acc2.c.o +#10 108.0 [2194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-avx-acc2.c.o +#10 108.0 [2195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-avx-acc2.c.o +#10 108.0 [2196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-avx-acc2.c.o +#10 108.0 [2197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-avx.c.o +#10 108.0 [2198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-avx.c.o +#10 108.0 [2199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-avx.c.o +#10 108.0 [2200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-avx.c.o +#10 108.0 [2201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-avx-acc2.c.o +#10 108.0 [2202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx-acc2.c.o +#10 108.1 [2203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-avx.c.o +#10 108.1 [2204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x8.c.o +#10 108.2 [2205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o +#10 108.2 [2206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx-acc2.c.o +#10 108.2 [2207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x16.c.o +#10 108.3 [2208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x24.c.o +#10 108.3 [2209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x32.c.o +#10 108.4 [2210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o +#10 108.4 [2211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx-acc2.c.o +#10 108.4 [2212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o +#10 108.4 [2213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-avx.c.o +#10 108.5 [2214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o +#10 108.5 [2215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-avx-acc2.c.o +#10 108.5 [2216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx-acc2.c.o +#10 108.6 [2217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx-acc2.c.o +#10 108.6 [2218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-avx-broadcast.c.o +#10 108.7 [2219/6823] Generating src/x86_64-fma/blas/sdotxf.py.o +#10 108.7 [2220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx.c.o +#10 108.7 [2221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o +#10 108.7 [2222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-avx-broadcast.c.o +#10 108.8 [2223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-avx-broadcast.c.o +#10 108.8 [2224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-avx-broadcast.c.o +#10 108.8 [2225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-avx-broadcast.c.o +#10 108.8 [2226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-avx-broadcast.c.o +#10 108.9 [2227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x8-minmax-avx-broadcast.c.o +#10 108.9 [2228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-avx-broadcast.c.o +#10 108.9 [2229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-avx-broadcast.c.o +#10 109.0 [2230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o +#10 109.0 [2231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16-minmax-avx-broadcast.c.o +#10 109.1 [2232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-avx-broadcast.c.o +#10 109.1 [2233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-avx-broadcast.c.o +#10 109.2 [2234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o +#10 109.2 [2235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x8-minmax-avx-broadcast.c.o +#10 109.2 [2236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-avx-broadcast.c.o +#10 109.2 [2237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-avx-broadcast.c.o +#10 109.2 [2238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x8-minmax-avx-broadcast.c.o +#10 109.3 [2239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-avx-broadcast.c.o +#10 109.3 [2240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-avx-broadcast.c.o +#10 109.4 [2241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-avx-broadcast.c.o +#10 109.4 [2242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-avx-broadcast.c.o +#10 109.4 [2243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-avx-broadcast.c.o +#10 109.5 [2244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o +#10 109.5 [2245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x8-minmax-avx-broadcast.c.o +#10 109.5 [2246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-avx-broadcast.c.o +#10 109.6 [2247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx-2x16.c.o +#10 109.6 [2248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx-2x8.c.o +#10 109.6 [2249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x8.c.o +#10 109.6 [2250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x16.c.o +#10 109.7 [2251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x32.c.o +#10 109.7 [2252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x8.c.o +#10 109.7 [2253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x24.c.o +#10 109.8 [2254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x16.c.o +#10 109.8 [2255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x32.c.o +#10 109.9 [2256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x24.c.o +#10 109.9 [2257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-avx.c.o +#10 109.9 [2258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx-x8.c.o +#10 110.0 [2259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx-x16.c.o +#10 110.0 [2260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx-x8.c.o +#10 110.0 [2261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx-x16.c.o +#10 110.0 [2262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx-x8.c.o +#10 110.0 [2263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx-x8.c.o +#10 110.1 [2264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx-x16.c.o +#10 110.1 [2265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx-x8.c.o +#10 110.1 [2266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx-x16.c.o +#10 110.2 [2267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx-x16.c.o +#10 110.2 [2268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx-x8.c.o +#10 110.3 [2269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx-x16.c.o +#10 110.3 [2270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx-x8.c.o +#10 110.3 [2271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx-x8.c.o +#10 110.4 [2272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx-x16.c.o +#10 110.4 [2273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx-x16.c.o +#10 110.4 [2274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx-x16.c.o +#10 110.4 [2275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx-x8.c.o +#10 110.4 [2276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx-x8.c.o +#10 110.4 [2277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx-x16.c.o +#10 110.5 [2278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx-x16.c.o +#10 110.5 [2279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx-x8.c.o +#10 110.6 [2280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx-x8.c.o +#10 110.6 [2281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-x16.c.o +#10 110.7 [2282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-x8.c.o +#10 110.7 [2283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx-x16.c.o +#10 110.7 [2284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx-x16.c.o +#10 110.8 [2285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-x8.c.o +#10 110.8 [2286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-x16.c.o +#10 110.8 [2287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx-x16.c.o +#10 110.8 [2288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx-x8.c.o +#10 110.8 [2289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx-x8.c.o +#10 110.9 [2290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx-x8.c.o +#10 110.9 [2291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x8.c.o +#10 111.0 [2292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx-x16.c.o +#10 111.0 [2293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x16.c.o +#10 111.1 [2294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x32.c.o +#10 111.1 [2295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x48.c.o +#10 111.1 [2296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x24.c.o +#10 111.2 [2297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x40.c.o +#10 111.2 [2298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x8.c.o +#10 111.3 [2299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x16.c.o +#10 111.3 [2300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x24.c.o +#10 111.3 [2301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x8.c.o +#10 111.3 [2302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x16.c.o +#10 111.4 [2303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x48.c.o +#10 111.4 [2304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x32.c.o +#10 111.4 [2305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x24.c.o +#10 111.5 [2306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x40.c.o +#10 111.5 [2307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x32.c.o +#10 111.6 [2308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx-x8.c.o +#10 111.6 [2309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x40.c.o +#10 111.6 [2310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx-x16.c.o +#10 111.7 [2311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx-x8.c.o +#10 111.7 [2312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x48.c.o +#10 111.7 [2313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-x16.c.o +#10 111.7 [2314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-x8.c.o +#10 111.7 [2315/6823] Generating src/x86_64-fma/blas/shdotxf.py.o +#10 111.7 [2316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx-x16.c.o +#10 111.8 [2317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx-x16.c.o +#10 111.8 [2318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx-x8.c.o +#10 111.8 [2319/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o +#10 111.8 [2320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx-x16.c.o +#10 111.9 [2321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx-x8.c.o +#10 111.9 [2322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx-x8.c.o +#10 111.9 [2323/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o +#10 111.9 [2324/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o +#10 111.9 [2325/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o +#10 112.0 [2326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx-x16.c.o +#10 112.0 [2327/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o +#10 112.0 [2328/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o +#10 112.0 [2329/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o +#10 112.0 [2330/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o +#10 112.0 [2331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx-x8.c.o +#10 112.0 [2332/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o +#10 112.1 [2333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx-x16.c.o +#10 112.1 [2334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x16.c.o +#10 112.1 [2335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x8.c.o +#10 112.1 [2336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x24.c.o +#10 112.2 [2337/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o +#10 112.2 [2338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x32.c.o +#10 112.2 [2339/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o +#10 112.3 [2340/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o +#10 112.4 [2341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x40.c.o +#10 112.4 [2342/6823] Linking C static library lib/libnnpack.a +#10 112.4 [2343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x56.c.o +#10 112.5 [2344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x8.c.o +#10 112.5 [2345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x72.c.o +#10 112.5 [2346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x64.c.o +#10 112.5 [2347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x48.c.o +#10 112.5 [2348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x24.c.o +#10 112.5 [2349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x80.c.o +#10 112.6 [2350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x32.c.o +#10 112.6 [2351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x16.c.o +#10 112.6 [2352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x48.c.o +#10 112.6 [2353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x56.c.o +#10 112.6 [2354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x40.c.o +#10 112.8 [2355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt-x16.c.o +#10 112.9 [2356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx-x8.c.o +#10 112.9 [2357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt-x8.c.o +#10 112.9 [2358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx-x8.c.o +#10 112.9 [2359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx-x16.c.o +#10 112.9 [2360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx-x8.c.o +#10 112.9 [2361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x72.c.o +#10 112.9 [2362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x64.c.o +#10 112.9 [2363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-lut4-p4-perm.c.o +#10 112.9 [2364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx-x16.c.o +#10 113.0 [2365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx-rr2-p5.c.o +#10 113.0 [2366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x80.c.o +#10 113.0 [2367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.o +#10 113.0 [2368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o +#10 113.1 [2369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 113.1 [2370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx-x16.c.o +#10 113.1 [2371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-lut16-p3.c.o +#10 113.1 [2372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o +#10 113.2 [2373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 113.2 [2374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-p6.c.o +#10 113.2 [2375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-div.c.o +#10 113.3 [2376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-nr1.c.o +#10 113.3 [2377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-lut64-p2-div.c.o +#10 113.3 [2378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx-mul16.c.o +#10 113.3 [2379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-nr2.c.o +#10 113.4 [2380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 113.4 [2381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 113.4 [2382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.o +#10 113.4 [2383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 113.5 [2384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 113.5 [2385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 113.5 [2386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 113.5 [2387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 113.5 [2388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 113.6 [2389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 113.6 [2390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 113.6 [2391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o +#10 113.6 [2392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 113.6 [2393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 113.6 [2394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 113.6 [2395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 113.7 [2396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 113.7 [2397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx-mul32.c.o +#10 113.7 [2398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 113.7 [2399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 113.7 [2400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 113.7 [2401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx-mul16.c.o +#10 113.7 [2402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 113.8 [2403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 113.8 [2404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 113.8 [2405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 113.8 [2406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 113.8 [2407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 113.8 [2408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 113.8 [2409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 113.8 [2410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 113.8 [2411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 113.9 [2412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 113.9 [2413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 113.9 [2414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 113.9 [2415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 113.9 [2416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 113.9 [2417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 113.9 [2418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 113.9 [2419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 113.9 [2420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 113.9 [2421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 114.0 [2422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 114.0 [2423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 114.0 [2424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 114.0 [2425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 114.0 [2426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 114.0 [2427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 114.0 [2428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 114.0 [2429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 114.1 [2430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 114.1 [2431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 114.1 [2432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 114.1 [2433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.o +#10 114.1 [2434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 114.1 [2435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 114.2 [2436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o +#10 114.2 [2437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 114.2 [2438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx-mul16.c.o +#10 114.3 [2439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.o +#10 114.3 [2440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx-mul32.c.o +#10 114.4 [2441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o +#10 114.4 [2442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 114.5 [2443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 114.5 [2444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 114.5 [2445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 114.5 [2446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 114.6 [2447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx-mul32.c.o +#10 114.6 [2448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x8.c.o +#10 114.6 [2449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 114.6 [2450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 114.6 [2451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-avx.c.o +#10 114.6 [2452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x24.c.o +#10 114.6 [2453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx-mul16.c.o +#10 114.7 [2454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 114.7 [2455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 114.7 [2456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 114.7 [2457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x16.c.o +#10 114.7 [2458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-avx.c.o +#10 114.7 [2459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 114.7 [2460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 114.7 [2461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-avx.c.o +#10 114.8 [2462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 114.8 [2463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-avx.c.o +#10 114.8 [2464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x32.c.o +#10 114.8 [2465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 114.8 [2466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 114.8 [2467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 114.8 [2468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-avx.c.o +#10 114.8 [2469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 114.8 [2470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 114.9 [2471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 114.9 [2472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 114.9 [2473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-avx.c.o +#10 114.9 [2474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-avx.c.o +#10 114.9 [2475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 114.9 [2476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 114.9 [2477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-avx.c.o +#10 114.9 [2478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 114.9 [2479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 114.9 [2480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-avx.c.o +#10 115.0 [2481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 115.0 [2482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 115.0 [2483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 115.0 [2484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 115.0 [2485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 115.0 [2486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 115.0 [2487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 115.0 [2488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 115.0 [2489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 115.1 [2490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 115.1 [2491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 115.1 [2492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 115.1 [2493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 115.1 [2494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 115.1 [2495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 115.2 [2496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x8.c.o +#10 115.2 [2497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx-mul32.c.o +#10 115.3 [2498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x16.c.o +#10 115.3 [2499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x32.c.o +#10 115.4 [2500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x24.c.o +#10 115.6 [2501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x32.c.o +#10 115.8 [2502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x8.c.o +#10 115.8 [2503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x24.c.o +#10 115.9 [2504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x16.c.o +#10 116.2 [2505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x32.c.o +#10 116.2 [2506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x8.c.o +#10 116.4 [2507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x32.c.o +#10 116.4 [2508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x16.c.o +#10 116.6 [2509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 116.7 [2510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x8.c.o +#10 116.7 [2511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x16.c.o +#10 116.8 [2512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 116.8 [2513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 116.9 [2514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 116.9 [2515/6823] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/util/flags_test.cpp.o +#10 117.0 [2516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x32.c.o +#10 117.0 [2517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 117.0 [2518/6823] Building CXX object c10/test/CMakeFiles/c10_irange_test.dir/util/irange_test.cpp.o +#10 117.1 [2519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 117.2 [2520/6823] Building CXX object c10/test/CMakeFiles/c10_exception_test.dir/util/exception_test.cpp.o +#10 117.3 [2521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 117.4 [2522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 117.5 [2523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 117.5 [2524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 117.5 [2525/6823] Building CXX object c10/test/CMakeFiles/c10_accumulate_test.dir/util/accumulate_test.cpp.o +#10 117.5 [2526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 117.6 [2527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x8.c.o +#10 117.7 [2528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 117.7 [2529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 117.7 [2530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x16.c.o +#10 117.7 [2531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 117.8 [2532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 117.8 [2533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 117.8 [2534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 117.9 [2535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 117.9 [2536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x24.c.o +#10 117.9 [2537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 117.9 [2538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 117.9 [2539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x32.c.o +#10 117.9 [2540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.0 [2541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.0 [2542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 118.0 [2543/6823] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/core/impl/InlineDeviceGuard_test.cpp.o +#10 118.0 [2544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 118.1 [2545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 118.1 [2546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 118.1 [2547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.1 [2548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 118.1 [2549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 118.1 [2550/6823] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/util/logging_test.cpp.o +#10 118.1 [2551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.2 [2552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 118.2 [2553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 118.2 [2554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 118.2 [2555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.2 [2556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.3 [2557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.3 [2558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 118.3 [2559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.3 [2560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 118.3 [2561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 118.3 [2562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 118.3 [2563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 118.3 [2564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.3 [2565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.4 [2566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 118.4 [2567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.4 [2568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 118.4 [2569/6823] Building CXX object c10/test/CMakeFiles/c10_bfloat16_test.dir/util/bfloat16_test.cpp.o +#10 118.4 [2570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 118.5 [2571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.5 [2572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 118.5 [2573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 118.5 [2574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 118.5 [2575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 118.5 [2576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 118.5 [2577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 118.5 [2578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul16-ld64-x8.c.o +#10 118.5 [2579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul16-ld64-x8.c.o +#10 118.5 [2580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul16-ld64-x16.c.o +#10 118.6 [2581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 118.6 [2582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul16-ld64-x16.c.o +#10 118.8 [2583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 118.8 [2584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-x8.c.o +#10 118.9 [2585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-x8.c.o +#10 118.9 [2586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 118.9 [2587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x32.c.o +#10 118.9 [2588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x16.c.o +#10 118.9 [2589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x8.c.o +#10 118.9 [2590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x8.c.o +#10 119.0 [2591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-x16.c.o +#10 119.0 [2592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-x16.c.o +#10 119.0 [2593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 119.0 [2594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 119.0 [2595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x32.c.o +#10 119.0 [2596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x16.c.o +#10 119.2 [2597/6823] Building CXX object c10/test/CMakeFiles/c10_string_view_test.dir/util/string_view_test.cpp.o +#10 119.3 [2598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x32.c.o +#10 119.3 [2599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x16.c.o +#10 119.3 [2600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x48.c.o +#10 119.3 [2601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-multi-switch-avx.c.o +#10 119.4 [2602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-multi-mov-avx.c.o +#10 119.4 [2603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-mov-avx.c.o +#10 119.4 [2604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-multi-avx.c.o +#10 119.5 [2605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x64.c.o +#10 119.5 [2606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-switch-avx.c.o +#10 119.5 [2607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o +#10 119.5 [2608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-mov-avx.c.o +#10 119.7 [2609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-switch-avx.c.o +#10 119.8 [2610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o +#10 119.8 [2611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-mov-avx.c.o +#10 119.8 [2612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-x8.c.o +#10 119.8 [2613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-switch-avx.c.o +#10 119.8 [2614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-x16.c.o +#10 119.8 [2615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o +#10 119.9 [2616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o +#10 119.9 [2617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c8.c.o +#10 119.9 [2618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c24.c.o +#10 120.0 [2619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c16.c.o +#10 120.1 [2620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c8.c.o +#10 120.1 [2621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c16.c.o +#10 120.2 [2622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c32.c.o +#10 120.2 [2623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-f16c-2x8.c.o +#10 120.2 [2624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c24.c.o +#10 120.2 [2625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c32.c.o +#10 120.2 [2626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-f16c-2x16.c.o +#10 120.2 [2627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rmax/f16-rmax-f16c.c.o +#10 120.2 [2628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o +#10 120.4 [2629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-f16c-x8.c.o +#10 120.4 [2630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-f16c-x16.c.o +#10 120.4 [2631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-f16c-x8.c.o +#10 120.5 [2632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-f16c-x8.c.o +#10 120.5 [2633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-f16c-x16.c.o +#10 120.5 [2634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-f16c-x16.c.o +#10 120.5 [2635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-f16c-x16.c.o +#10 120.6 [2636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-f16c-x8.c.o +#10 120.6 [2637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-f16c-x8.c.o +#10 120.6 [2638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-f16c-x16.c.o +#10 120.7 [2639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-x16.c.o +#10 120.7 [2640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-x8.c.o +#10 120.8 [2641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-f16c-x16.c.o +#10 120.8 [2642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-f16c-x8.c.o +#10 120.8 [2643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-f16c-x8.c.o +#10 120.9 [2644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-f16c-x16.c.o +#10 120.9 [2645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-f16c-x8.c.o +#10 121.0 [2646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-f16c-x16.c.o +#10 121.0 [2647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-f16c-x8.c.o +#10 121.0 [2648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-f16c-x16.c.o +#10 121.0 [2649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-f16c-x8.c.o +#10 121.0 [2650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-f16c-x16.c.o +#10 121.1 [2651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-f16c-x8.c.o +#10 121.1 [2652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-f16c-x16.c.o +#10 121.2 [2653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-x8.c.o +#10 121.2 [2654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-x8.c.o +#10 121.3 [2655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-x16.c.o +#10 121.3 [2656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-f16c-x16.c.o +#10 121.3 [2657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-x16.c.o +#10 121.4 [2658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-f16c-x8.c.o +#10 121.4 [2659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-f16c-x8.c.o +#10 121.4 [2660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-f16c-x16.c.o +#10 121.4 [2661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-f16c-x8.c.o +#10 121.5 [2662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-f16c-x16.c.o +#10 121.6 [2663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-f16c-x8.c.o +#10 121.6 [2664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-f16c-x16.c.o +#10 121.7 [2665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-x8.c.o +#10 121.7 [2666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-x16.c.o +#10 121.8 [2667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-f16c-x8.c.o +#10 121.8 [2668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-f16c-x16.c.o +#10 121.8 [2669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-f16c-x16.c.o +#10 121.8 [2670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-f16c-x8.c.o +#10 121.8 [2671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-f16c-x8.c.o +#10 121.9 [2672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-f16c-x16.c.o +#10 121.9 [2673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-f16c-x8.c.o +#10 122.0 [2674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-f16c-x16.c.o +#10 122.0 [2675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-sqrt-x8.c.o +#10 122.1 [2676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-f16c-x8.c.o +#10 122.1 [2677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-x16.c.o +#10 122.1 [2678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-x8.c.o +#10 122.2 [2679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-f16c.c.o +#10 122.2 [2680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-sqrt-x16.c.o +#10 122.2 [2681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-f16c-x16.c.o +#10 122.2 [2682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-f16c.c.o +#10 122.3 [2683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-xop-mul16-add16.c.o +#10 122.3 [2684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 122.3 [2685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-xop-mul16-add16.c.o +#10 122.5 [2686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-xop-mul16-add16.c.o +#10 122.6 [2687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 122.6 [2688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 122.7 [2689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-xop-mul32.c.o +#10 122.7 [2690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 122.7 [2691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 122.7 [2692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-xop-mul16-add16.c.o +#10 122.8 [2693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 122.8 [2694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 122.9 [2695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-xop-mul16-add16.c.o +#10 122.9 [2696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 123.0 [2697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-xop-mul32.c.o +#10 123.0 [2698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 123.1 [2699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 123.1 [2700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 123.1 [2701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 123.1 [2702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 123.2 [2703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 123.2 [2704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 123.3 [2705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 123.3 [2706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 123.4 [2707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 123.4 [2708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 123.5 [2709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 123.5 [2710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 123.6 [2711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 123.6 [2712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 123.6 [2713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 123.7 [2714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 123.7 [2715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 123.7 [2716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 123.7 [2717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 123.8 [2718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 123.8 [2719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 123.9 [2720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 124.0 [2721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 124.0 [2722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 124.1 [2723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 124.1 [2724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 124.1 [2725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 124.2 [2726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 124.2 [2727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 124.2 [2728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 124.2 [2729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 124.2 [2730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 124.3 [2731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 124.4 [2732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 124.4 [2733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 124.5 [2734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 124.5 [2735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 124.6 [2736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-xop-mul16-add16.c.o +#10 124.6 [2737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 124.7 [2738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 124.7 [2739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 124.8 [2740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-xop-mul16-add16.c.o +#10 124.8 [2741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 124.8 [2742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-xop-mul32.c.o +#10 125.0 [2743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-xop-mul16-add16.c.o +#10 125.0 [2744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 125.0 [2745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 125.0 [2746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 125.1 [2747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-xop-mul16-add16.c.o +#10 125.1 [2748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 125.1 [2749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-xop.c.o +#10 125.1 [2750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 125.2 [2751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 125.3 [2752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-xop-mul32.c.o +#10 125.3 [2753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 125.4 [2754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-xop.c.o +#10 125.4 [2755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-xop.c.o +#10 125.4 [2756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 125.5 [2757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 125.5 [2758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 125.5 [2759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 125.5 [2760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 125.6 [2761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-xop.c.o +#10 125.6 [2762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-xop.c.o +#10 125.7 [2763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 125.8 [2764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 125.8 [2765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 125.8 [2766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-xop.c.o +#10 125.8 [2767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 125.9 [2768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-xop.c.o +#10 126.0 [2769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 126.0 [2770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 126.1 [2771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 126.1 [2772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-xop.c.o +#10 126.1 [2773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-xop.c.o +#10 126.1 [2774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 126.2 [2775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 126.2 [2776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 126.2 [2777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 126.3 [2778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-xop.c.o +#10 126.3 [2779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-xop.c.o +#10 126.4 [2780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 126.5 [2781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 126.5 [2782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 126.5 [2783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 126.5 [2784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 126.6 [2785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 126.6 [2786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 126.7 [2787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 126.7 [2788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 126.7 [2789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 126.8 [2790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 126.8 [2791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 126.8 [2792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 126.9 [2793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 126.9 [2794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 126.9 [2795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 127.0 [2796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 127.0 [2797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 127.1 [2798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 127.2 [2799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 127.2 [2800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 127.2 [2801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x8.c.o +#10 127.2 [2802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x8.c.o +#10 127.3 [2803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 127.3 [2804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 127.3 [2805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x16.c.o +#10 127.3 [2806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x24.c.o +#10 127.4 [2807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x32.c.o +#10 127.4 [2808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x16.c.o +#10 127.4 [2809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x24.c.o +#10 127.5 [2810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x32.c.o +#10 127.7 [2811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 127.7 [2812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 127.7 [2813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 127.8 [2814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 127.8 [2815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 127.8 [2816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 127.8 [2817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 127.9 [2818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 127.9 [2819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 127.9 [2820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 127.9 [2821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 128.1 [2822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 128.1 [2823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 128.2 [2824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 128.2 [2825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 128.2 [2826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 128.2 [2827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 128.2 [2828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 128.3 [2829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 128.3 [2830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 128.4 [2831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 128.5 [2832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 128.5 [2833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 128.6 [2834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 128.6 [2835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 128.6 [2836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 128.7 [2837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 128.7 [2838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 128.7 [2839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 128.7 [2840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 128.8 [2841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 128.9 [2842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 128.9 [2843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 129.0 [2844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 129.0 [2845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 129.0 [2846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 129.0 [2847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 129.1 [2848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 129.1 [2849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 129.1 [2850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 129.1 [2851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 129.2 [2852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 129.2 [2853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 129.4 [2854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 129.4 [2855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 129.4 [2856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-xop-mul32-ld32-x8.c.o +#10 129.5 [2857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 129.5 [2858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-xop-mul32-ld32-x8.c.o +#10 129.5 [2859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 129.5 [2860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-xop-mul32-ld32-x16.c.o +#10 129.5 [2861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 129.6 [2862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-fma3-acc2.c.o +#10 129.6 [2863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-fma3.c.o +#10 129.6 [2864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-xop-mul32-ld32-x16.c.o +#10 129.6 [2865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3-acc2.c.o +#10 129.8 [2866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o +#10 129.9 [2867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-fma3-acc2.c.o +#10 129.9 [2868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-fma3.c.o +#10 129.9 [2869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-fma3.c.o +#10 129.9 [2870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o +#10 129.9 [2871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-fma3-acc2.c.o +#10 130.0 [2872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-fma3-acc2.c.o +#10 130.0 [2873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3-acc2.c.o +#10 130.0 [2874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-fma3-acc2.c.o +#10 130.0 [2875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-fma3.c.o +#10 130.2 [2876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-fma3.c.o +#10 130.2 [2877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3-acc2.c.o +#10 130.2 [2878/6823] Building CXX object c10/test/CMakeFiles/c10_either_test.dir/util/either_test.cpp.o +#10 130.3 [2879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o +#10 130.4 [2880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o +#10 130.4 [2881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3.c.o +#10 130.4 [2882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-fma3-acc2.c.o +#10 130.5 [2883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o +#10 130.5 [2884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-fma3-acc2.c.o +#10 130.5 [2885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-fma3.c.o +#10 130.5 [2886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o +#10 130.5 [2887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c16.c.o +#10 130.6 [2888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-fma3.c.o +#10 130.6 [2889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-fma3-2x.c.o +#10 130.6 [2890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-fma3-acc2.c.o +#10 130.7 [2891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-fma3.c.o +#10 130.8 [2892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-fma3-acc2.c.o +#10 130.8 [2893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-fma3.c.o +#10 130.9 [2894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-fma3-acc2.c.o +#10 130.9 [2895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-fma3.c.o +#10 130.9 [2896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-fma3-acc2.c.o +#10 130.9 [2897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3-acc2.c.o +#10 130.9 [2898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-fma3.c.o +#10 131.0 [2899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-fma3.c.o +#10 131.0 [2900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-fma3-acc2.c.o +#10 131.0 [2901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-fma3-acc2.c.o +#10 131.0 [2902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o +#10 131.1 [2903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-fma3.c.o +#10 131.2 [2904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3-acc2.c.o +#10 131.2 [2905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o +#10 131.3 [2906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-fma3-acc2.c.o +#10 131.3 [2907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3-acc2.c.o +#10 131.3 [2908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-fma3.c.o +#10 131.4 [2909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o +#10 131.4 [2910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-fma3-broadcast.c.o +#10 131.4 [2911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3-acc2.c.o +#10 131.4 [2912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3-acc2.c.o +#10 131.4 [2913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o +#10 131.5 [2914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o +#10 131.5 [2915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o +#10 131.5 [2916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3.c.o +#10 131.6 [2917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-fma3-broadcast.c.o +#10 131.6 [2918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-fma3-broadcast.c.o +#10 131.7 [2919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16s4-minmax-fma3-broadcast.c.o +#10 131.8 [2920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-fma3-broadcast.c.o +#10 131.8 [2921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o +#10 131.8 [2922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o +#10 131.8 [2923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-fma3-broadcast.c.o +#10 131.8 [2924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-fma3-broadcast.c.o +#10 131.9 [2925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16s4-minmax-fma3-broadcast.c.o +#10 132.0 [2926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8-minmax-fma3-broadcast.c.o +#10 132.0 [2927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-fma3-broadcast.c.o +#10 132.0 [2928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x8-minmax-fma3-broadcast.c.o +#10 132.0 [2929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-fma3-broadcast.c.o +#10 132.0 [2930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16-minmax-fma3-broadcast.c.o +#10 132.1 [2931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16s4-minmax-fma3-broadcast.c.o +#10 132.2 [2932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16s4-minmax-fma3-broadcast.c.o +#10 132.2 [2933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-fma3-broadcast.c.o +#10 132.2 [2934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-fma3-broadcast.c.o +#10 132.2 [2935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16s4-minmax-fma3-broadcast.c.o +#10 132.2 [2936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-fma3-broadcast.c.o +#10 132.3 [2937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-fma3-broadcast.c.o +#10 132.3 [2938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x8-minmax-fma3-broadcast.c.o +#10 132.4 [2939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-fma3-broadcast.c.o +#10 132.4 [2940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-8x8-minmax-fma3-broadcast.c.o +#10 132.4 [2941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o +#10 132.5 [2942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x8-minmax-fma3-broadcast.c.o +#10 132.5 [2943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16s4-minmax-fma3-broadcast.c.o +#10 132.5 [2944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o +#10 132.6 [2945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-fma3-broadcast.c.o +#10 132.6 [2946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16s4-minmax-fma3-broadcast.c.o +#10 132.6 [2947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-fma3-broadcast.c.o +#10 132.7 [2948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o +#10 132.7 [2949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-fma3-broadcast.c.o +#10 132.8 [2950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-fma3-broadcast.c.o +#10 132.8 [2951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast.c.o +#10 132.8 [2952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16s4-minmax-fma3-broadcast.c.o +#10 132.8 [2953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-fma3-x8.c.o +#10 132.8 [2954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x8-minmax-fma3-broadcast.c.o +#10 132.9 [2955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8-minmax-fma3-broadcast.c.o +#10 132.9 [2956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-fma3-broadcast.c.o +#10 133.0 [2957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-fma3-x16.c.o +#10 133.0 [2958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x8.c.o +#10 133.0 [2959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x24.c.o +#10 133.0 [2960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x16.c.o +#10 133.1 [2961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x32.c.o +#10 133.1 [2962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x40.c.o +#10 133.1 [2963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x48.c.o +#10 133.2 [2964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x56.c.o +#10 133.2 [2965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x64.c.o +#10 133.2 [2966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr1fma.c.o +#10 133.2 [2967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr1fma1adj.c.o +#10 133.3 [2968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr2fma.c.o +#10 133.4 [2969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-avx2-broadcast.c.o +#10 133.4 [2970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-3x16-minmax-avx2-broadcast.c.o +#10 133.4 [2971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-avx2-broadcast.c.o +#10 133.5 [2972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-avx2-broadcast.c.o +#10 133.5 [2973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-5x8-minmax-avx2-broadcast.c.o +#10 133.5 [2974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-avx2-broadcast.c.o +#10 133.6 [2975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-5x16-minmax-avx2-broadcast.c.o +#10 133.6 [2976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-avx2-broadcast.c.o +#10 133.6 [2977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-3x16-minmax-avx2-broadcast.c.o +#10 133.7 [2978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-avx2-broadcast.c.o +#10 133.7 [2979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-avx2-broadcast.c.o +#10 133.7 [2980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-7x8-minmax-avx2-broadcast.c.o +#10 133.7 [2981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-avx2-broadcast.c.o +#10 133.8 [2982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-avx2-broadcast.c.o +#10 133.8 [2983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-5x8-minmax-avx2-broadcast.c.o +#10 133.9 [2984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-avx2-broadcast.c.o +#10 133.9 [2985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-5x16-minmax-avx2-broadcast.c.o +#10 133.9 [2986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-7x8-minmax-avx2-broadcast.c.o +#10 134.0 [2987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o +#10 134.0 [2988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32-acc2.c.o +#10 134.1 [2989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o +#10 134.1 [2990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32-acc4.c.o +#10 134.1 [2991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40-acc2.c.o +#10 134.1 [2992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40-acc5.c.o +#10 134.1 [2993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32.c.o +#10 134.2 [2994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48-acc2.c.o +#10 134.2 [2995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40.c.o +#10 134.2 [2996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48-acc3.c.o +#10 134.3 [2997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64-acc4.c.o +#10 134.3 [2998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64-acc2.c.o +#10 134.3 [2999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48.c.o +#10 134.4 [3000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64.c.o +#10 134.5 [3001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x72.c.o +#10 134.5 [3002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc2.c.o +#10 134.6 [3003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80-acc2.c.o +#10 134.6 [3004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80.c.o +#10 134.6 [3005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc3.c.o +#10 134.6 [3006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80-acc5.c.o +#10 134.6 [3007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96.c.o +#10 134.6 [3008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x72-acc3.c.o +#10 134.7 [3009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-x8.c.o +#10 134.7 [3010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc6.c.o +#10 134.7 [3011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x8.c.o +#10 134.8 [3012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-x16.c.o +#10 134.9 [3013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x16.c.o +#10 135.0 [3014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x32.c.o +#10 135.0 [3015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x24.c.o +#10 135.0 [3016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x40.c.o +#10 135.0 [3017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x64.c.o +#10 135.0 [3018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x48.c.o +#10 135.0 [3019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x8.c.o +#10 135.0 [3020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x16.c.o +#10 135.1 [3021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x24.c.o +#10 135.1 [3022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x32.c.o +#10 135.1 [3023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x40.c.o +#10 135.1 [3024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x56.c.o +#10 135.2 [3025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x48.c.o +#10 135.3 [3026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x56.c.o +#10 135.3 [3027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x16.c.o +#10 135.3 [3028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x16.c.o +#10 135.3 [3029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x48.c.o +#10 135.4 [3030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x64.c.o +#10 135.4 [3031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x64.c.o +#10 135.4 [3032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x32.c.o +#10 135.4 [3033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x32.c.o +#10 135.5 [3034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64-acc4.c.o +#10 135.5 [3035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x64.c.o +#10 135.5 [3036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x48.c.o +#10 135.6 [3037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64-acc2.c.o +#10 135.7 [3038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64.c.o +#10 135.7 [3039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80-acc5.c.o +#10 135.8 [3040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80-acc2.c.o +#10 135.8 [3041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x72-acc3.c.o +#10 135.8 [3042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc2.c.o +#10 135.8 [3043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x72.c.o +#10 135.8 [3044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80.c.o +#10 135.9 [3045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc6.c.o +#10 135.9 [3046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc3.c.o +#10 135.9 [3047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96.c.o +#10 135.9 [3048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64-acc2.c.o +#10 136.0 [3049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64-acc4.c.o +#10 136.1 [3050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64.c.o +#10 136.1 [3051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x72-acc3.c.o +#10 136.2 [3052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x72.c.o +#10 136.2 [3053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80-acc5.c.o +#10 136.2 [3054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80.c.o +#10 136.2 [3055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80-acc2.c.o +#10 136.2 [3056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc2.c.o +#10 136.2 [3057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc3.c.o +#10 136.3 [3058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc6.c.o +#10 136.3 [3059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96.c.o +#10 136.4 [3060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64-acc2.c.o +#10 136.4 [3061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64-acc4.c.o +#10 136.5 [3062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64.c.o +#10 136.5 [3063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x72-acc3.c.o +#10 136.6 [3064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x72.c.o +#10 136.6 [3065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80-acc2.c.o +#10 136.6 [3066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80-acc5.c.o +#10 136.7 [3067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc2.c.o +#10 136.7 [3068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc3.c.o +#10 136.7 [3069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x8.c.o +#10 136.7 [3070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96.c.o +#10 136.7 [3071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x24.c.o +#10 136.7 [3072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80.c.o +#10 136.8 [3073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc6.c.o +#10 136.8 [3074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x16.c.o +#10 136.9 [3075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x32.c.o +#10 137.0 [3076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x40.c.o +#10 137.1 [3077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x64.c.o +#10 137.1 [3078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x8.c.o +#10 137.1 [3079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x56.c.o +#10 137.1 [3080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x24.c.o +#10 137.1 [3081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x80.c.o +#10 137.1 [3082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x32.c.o +#10 137.1 [3083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x72.c.o +#10 137.2 [3084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x48.c.o +#10 137.2 [3085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x40.c.o +#10 137.2 [3086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x16.c.o +#10 137.3 [3087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x48.c.o +#10 137.4 [3088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x56.c.o +#10 137.5 [3089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x64.c.o +#10 137.5 [3090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x16.c.o +#10 137.5 [3091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x8.c.o +#10 137.5 [3092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x80.c.o +#10 137.5 [3093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x72.c.o +#10 137.5 [3094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x32.c.o +#10 137.5 [3095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x24.c.o +#10 137.6 [3096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x40.c.o +#10 137.6 [3097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x48.c.o +#10 137.6 [3098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x56.c.o +#10 137.7 [3099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x64.c.o +#10 137.8 [3100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x72.c.o +#10 137.8 [3101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x24.c.o +#10 137.8 [3102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x16.c.o +#10 137.9 [3103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x8.c.o +#10 137.9 [3104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x32.c.o +#10 137.9 [3105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x80.c.o +#10 137.9 [3106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x40.c.o +#10 137.9 [3107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x48.c.o +#10 137.9 [3108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x56.c.o +#10 138.0 [3109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x64.c.o +#10 138.0 [3110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x72.c.o +#10 138.1 [3111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x8.c.o +#10 138.1 [3112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x16.c.o +#10 138.2 [3113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x80.c.o +#10 138.2 [3114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x32.c.o +#10 138.2 [3115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x40.c.o +#10 138.2 [3116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x24.c.o +#10 138.3 [3117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x48.c.o +#10 138.3 [3118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x64.c.o +#10 138.3 [3119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x56.c.o +#10 138.4 [3120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x72.c.o +#10 138.4 [3121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x80.c.o +#10 138.4 [3122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x96.c.o +#10 138.5 [3123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x8.c.o +#10 138.5 [3124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x88.c.o +#10 138.6 [3125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x24.c.o +#10 138.6 [3126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x16.c.o +#10 138.6 [3127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x32.c.o +#10 138.6 [3128/6823] Building CXX object c10/test/CMakeFiles/c10_intrusive_ptr_test.dir/util/intrusive_ptr_test.cpp.o +#10 138.6 In destructor ‘virtual {anonymous}::SomeClass0Parameters::~SomeClass0Parameters()’, +#10 138.6 inlined from ‘void c10::weak_intrusive_ptr::reset_() [with TTarget = {anonymous}::SomeClass0Parameters; NullType = c10::detail::intrusive_target_default_null_type<{anonymous}::SomeClass0Parameters>]’ at ../c10/util/intrusive_ptr.h:709:7, +#10 138.6 inlined from ‘c10::weak_intrusive_ptr::~weak_intrusive_ptr() [with TTarget = {anonymous}::SomeClass0Parameters; NullType = c10::detail::intrusive_target_default_null_type<{anonymous}::SomeClass0Parameters>]’ at ../c10/util/intrusive_ptr.h:755:11, +#10 138.6 inlined from ‘virtual void WeakIntrusivePtrTest_givenStackObject_whenReclaimed_thenCrashes_Test::TestBody()’ at ../c10/test/util/intrusive_ptr_test.cpp:3537:1: +#10 138.6 ../c10/test/util/intrusive_ptr_test.cpp:26:7: warning: ‘void operator delete(void*, std::size_t)’ called on unallocated object ‘obj’ [-Wfree-nonheap-object] +#10 138.6 26 | class SomeClass0Parameters : public intrusive_ptr_target {}; +#10 138.6 | ^~~~~~~~~~~~~~~~~~~~ +#10 138.6 ../c10/test/util/intrusive_ptr_test.cpp: In member function ‘virtual void WeakIntrusivePtrTest_givenStackObject_whenReclaimed_thenCrashes_Test::TestBody()’: +#10 138.6 ../c10/test/util/intrusive_ptr_test.cpp:3529:13: note: declared here +#10 138.6 3529 | SomeClass obj; +#10 138.6 | ^~~ +#10 138.6 [3129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x40.c.o +#10 138.7 [3130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x48.c.o +#10 138.7 [3131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x64.c.o +#10 138.7 [3132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x72.c.o +#10 138.8 [3133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x56.c.o +#10 138.8 [3134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x80.c.o +#10 138.8 [3135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x8.c.o +#10 138.9 [3136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x96.c.o +#10 138.9 [3137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x88.c.o +#10 138.9 [3138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x16.c.o +#10 139.0 [3139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x40.c.o +#10 139.0 [3140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x24.c.o +#10 139.0 [3141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x32.c.o +#10 139.0 [3142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x48.c.o +#10 139.1 [3143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x56.c.o +#10 139.1 [3144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x72.c.o +#10 139.1 [3145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x64.c.o +#10 139.1 [3146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x8.c.o +#10 139.2 [3147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x16.c.o +#10 139.2 [3148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x24.c.o +#10 139.2 [3149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x80.c.o +#10 139.3 [3150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x32.c.o +#10 139.3 [3151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x40.c.o +#10 139.3 [3152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x48.c.o +#10 139.4 [3153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x56.c.o +#10 139.4 [3154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x64.c.o +#10 139.5 [3155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x16.c.o +#10 139.5 [3156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x8.c.o +#10 139.5 [3157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x24.c.o +#10 139.5 [3158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x72.c.o +#10 139.5 [3159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x80.c.o +#10 139.6 [3160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x32.c.o +#10 139.6 [3161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x40.c.o +#10 139.7 [3162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x48.c.o +#10 139.7 [3163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x64.c.o +#10 139.8 [3164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut4-p4-perm.c.o +#10 139.8 [3165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x72.c.o +#10 139.8 [3166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-p5.c.o +#10 139.8 [3167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-lut8-p4-perm.c.o +#10 139.8 [3168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x56.c.o +#10 139.9 [3169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f16-avx2-rr1-p3.c.o +#10 139.9 [3170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-lut8-p3-perm.c.o +#10 139.9 [3171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x80.c.o +#10 139.9 [3172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-p6.c.o +#10 139.9 [3173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f16-avx2-rr1-p2.c.o +#10 139.9 [3174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut16-p3-gather.c.o +#10 140.1 [3175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut8-p4-perm.c.o +#10 140.1 [3176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-avx2-rr1-p5.c.o +#10 140.2 [3177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p2-div.c.o +#10 140.2 [3178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f16-avx2-rr1-p3.c.o +#10 140.2 [3179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-avx2-rr2-p5.c.o +#10 140.2 [3180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p3-div.c.o +#10 140.2 [3181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p3-rcp.c.o +#10 140.2 [3182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-div.c.o +#10 140.2 [3183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr2fma1adj.c.o +#10 140.3 [3184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p2-rcp.c.o +#10 140.3 [3185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/extexp-avx2-p5.c.o +#10 140.3 [3186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr2fma.c.o +#10 140.3 [3187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-div.c.o +#10 140.3 [3188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr1fma.c.o +#10 140.4 [3189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-nr1fma.c.o +#10 140.5 [3190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-nr2fma.c.o +#10 140.5 [3191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-div.c.o +#10 140.5 [3192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr1fma.c.o +#10 140.5 [3193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-nr1fma.c.o +#10 140.6 [3194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr2fma1adj.c.o +#10 140.6 [3195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-div.c.o +#10 140.6 [3196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr2fma.c.o +#10 140.7 [3197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-nr2fma.c.o +#10 140.7 [3198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o +#10 140.7 [3199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 140.7 [3200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 140.8 [3201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 140.8 [3202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 141.0 [3203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 141.0 [3204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 141.0 [3205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx2-mul32.c.o +#10 141.0 [3206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 141.1 [3207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 141.1 [3208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 141.1 [3209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 141.2 [3210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 141.3 [3211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 141.3 [3212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 141.3 [3213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 141.4 [3214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx2-mul32.c.o +#10 141.5 [3215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 141.5 [3216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 141.5 [3217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x8c8-xw-minmax-fp32-avx2.c.o +#10 141.5 [3218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 141.5 [3219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x8c8-xw-minmax-fp32-avx2.c.o +#10 141.6 [3220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 141.6 [3221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x8c8-xw-minmax-fp32-avx2.c.o +#10 141.7 [3222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 141.7 [3223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 141.7 [3224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 141.7 [3225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 141.8 [3226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 141.8 [3227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 141.9 [3228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 141.9 [3229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 141.9 [3230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 141.9 [3231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 142.0 [3232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 142.0 [3233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 142.0 [3234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx2-mul32.c.o +#10 142.1 [3235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 142.2 [3236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 142.2 [3237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 142.3 [3238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 142.3 [3239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 142.4 [3240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 142.4 [3241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 142.4 [3242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x8.c.o +#10 142.5 [3243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x16.c.o +#10 142.5 [3244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x24.c.o +#10 142.5 [3245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 142.6 [3246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx2-mul32.c.o +#10 142.6 [3247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 142.6 [3248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 142.7 [3249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 142.7 [3250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x32.c.o +#10 142.7 [3251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 142.8 [3252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x8c8-xw-minmax-fp32-avx2.c.o +#10 142.8 [3253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x8c8-xw-minmax-fp32-avx2.c.o +#10 142.8 [3254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 142.9 [3255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x8c8-xw-minmax-fp32-avx2.c.o +#10 142.9 [3256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 142.9 [3257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 142.9 [3258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 143.0 [3259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x8.c.o +#10 143.0 [3260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 143.0 [3261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x16.c.o +#10 143.0 [3262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 143.1 [3263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x8.c.o +#10 143.1 [3264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x24.c.o +#10 143.1 [3265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x32.c.o +#10 143.2 [3266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x16.c.o +#10 143.2 [3267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x24.c.o +#10 143.2 [3268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x16.c.o +#10 143.3 [3269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x32.c.o +#10 143.3 [3270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x32.c.o +#10 143.3 [3271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x16.c.o +#10 143.4 [3272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x64.c.o +#10 143.4 [3273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x32.c.o +#10 143.5 [3274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x64.c.o +#10 143.5 [3275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 143.5 [3276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 143.6 [3277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 143.6 [3278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x8.c.o +#10 143.7 [3279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x16.c.o +#10 143.7 [3280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 143.7 [3281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x32.c.o +#10 143.8 [3282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x24.c.o +#10 143.8 [3283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 143.8 [3284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 143.9 [3285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 143.9 [3286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 143.9 [3287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 144.0 [3288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 144.0 [3289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-x8.c.o +#10 144.0 [3290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 144.0 [3291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-x16.c.o +#10 144.0 [3292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 144.0 [3293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-x16.c.o +#10 144.1 [3294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-x8.c.o +#10 144.2 [3295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x16.c.o +#10 144.2 [3296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x32.c.o +#10 144.2 [3297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x64.c.o +#10 144.2 [3298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x16.c.o +#10 144.3 [3299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x64.c.o +#10 144.3 [3300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x32.c.o +#10 144.4 [3301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x96.c.o +#10 144.4 [3302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x32.c.o +#10 144.4 [3303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x64.c.o +#10 144.4 [3304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x128.c.o +#10 144.6 [3305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c16s4r-minmax-avx512f.c.o +#10 144.6 [3306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c16s4r-minmax-avx512f-acc2.c.o +#10 144.6 [3307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c16s4r-minmax-avx512f-acc2.c.o +#10 144.6 [3308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-mov-avx2.c.o +#10 144.7 [3309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l64c16s4r-minmax-avx512f.c.o +#10 144.7 [3310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c16s4r-minmax-avx512f.c.o +#10 144.7 [3311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o +#10 144.7 [3312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f-acc2.c.o +#10 144.8 [3313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p32c-minmax-avx512f-acc2.c.o +#10 144.8 [3314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l64c16s4r-minmax-avx512f-acc2.c.o +#10 144.9 [3315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p32c-minmax-avx512f.c.o +#10 144.9 [3316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o +#10 145.0 [3317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p32c-minmax-avx512f-acc2.c.o +#10 145.0 [3318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o +#10 145.0 [3319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-mov-avx2.c.o +#10 145.0 [3320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p32c-minmax-avx512f.c.o +#10 145.1 [3321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f-acc2.c.o +#10 145.1 [3322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o +#10 145.1 [3323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f-acc2.c.o +#10 145.1 [3324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p32c-minmax-avx512f-acc2.c.o +#10 145.2 [3325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o +#10 145.2 [3326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p32c-minmax-avx512f.c.o +#10 145.2 [3327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o +#10 145.3 [3328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f-acc2.c.o +#10 145.3 [3329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p32c-minmax-avx512f-acc2.c.o +#10 145.3 [3330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx512f-broadcast.c.o +#10 145.4 [3331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx512f-broadcast.c.o +#10 145.4 [3332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-avx512f-broadcast.c.o +#10 145.4 [3333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-avx512f-broadcast.c.o +#10 145.4 [3334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p32c-minmax-avx512f.c.o +#10 145.5 [3335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-avx512f-broadcast.c.o +#10 145.5 [3336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-avx512f-broadcast.c.o +#10 145.5 [3337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-avx512f-broadcast.c.o +#10 145.5 [3338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x16-minmax-avx512f-broadcast.c.o +#10 145.5 [3339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x16-minmax-avx512f-broadcast.c.o +#10 145.6 [3340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x16-minmax-avx512f-broadcast.c.o +#10 145.7 [3341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x16-minmax-avx512f-broadcast.c.o +#10 145.7 [3342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-8x16-minmax-avx512f-broadcast.c.o +#10 145.7 [3343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx512f-broadcast.c.o +#10 145.7 [3344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx512f-broadcast.c.o +#10 145.8 [3345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-avx512f-broadcast.c.o +#10 145.8 [3346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x16-minmax-avx512f-broadcast.c.o +#10 145.8 [3347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x16-minmax-avx512f-broadcast.c.o +#10 145.8 [3348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx512f-2x16.c.o +#10 145.8 [3349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-avx512f-broadcast.c.o +#10 145.8 [3350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128-acc2.c.o +#10 145.9 [3351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx512f-2x32.c.o +#10 145.9 [3352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128-acc4.c.o +#10 145.9 [3353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128.c.o +#10 146.0 [3354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x144-acc3.c.o +#10 146.0 [3355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x144.c.o +#10 146.0 [3356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160-acc2.c.o +#10 146.1 [3357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160-acc5.c.o +#10 146.1 [3358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160.c.o +#10 146.1 [3359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc6.c.o +#10 146.2 [3360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc3.c.o +#10 146.2 [3361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128-acc2.c.o +#10 146.2 [3362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128-acc4.c.o +#10 146.2 [3363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc2.c.o +#10 146.2 [3364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192.c.o +#10 146.3 [3365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128.c.o +#10 146.3 [3366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x144-acc3.c.o +#10 146.4 [3367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x144.c.o +#10 146.4 [3368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160.c.o +#10 146.4 [3369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160-acc2.c.o +#10 146.4 [3370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160-acc5.c.o +#10 146.5 [3371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc2.c.o +#10 146.5 [3372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128-acc2.c.o +#10 146.5 [3373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc3.c.o +#10 146.6 [3374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192.c.o +#10 146.6 [3375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc6.c.o +#10 146.6 [3376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x144-acc3.c.o +#10 146.6 [3377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128.c.o +#10 146.7 [3378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x144.c.o +#10 146.7 [3379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128-acc4.c.o +#10 146.7 [3380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160-acc5.c.o +#10 146.7 [3381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160-acc2.c.o +#10 146.8 [3382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160.c.o +#10 146.8 [3383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-avx512f.c.o +#10 146.8 [3384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc3.c.o +#10 146.9 [3385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc2.c.o +#10 146.9 [3386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192.c.o +#10 146.9 [3387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc6.c.o +#10 146.9 [3388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx512f-x16.c.o +#10 146.9 [3389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx512f-x32.c.o +#10 146.9 [3390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx512f-x16.c.o +#10 147.0 [3391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx512f-x32.c.o +#10 147.0 [3392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx512f-x16.c.o +#10 147.1 [3393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx512f-x16.c.o +#10 147.1 [3394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx512f-x32.c.o +#10 147.1 [3395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx512f-x32.c.o +#10 147.2 [3396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx512f-x16.c.o +#10 147.2 [3397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-x16.c.o +#10 147.2 [3398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx512f-x32.c.o +#10 147.2 [3399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx512f-x32.c.o +#10 147.3 [3400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx512f-x16.c.o +#10 147.3 [3401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx512f-x16.c.o +#10 147.3 [3402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-x32.c.o +#10 147.3 [3403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx512f-x32.c.o +#10 147.3 [3404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx512f-x16.c.o +#10 147.3 [3405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx512f-x32.c.o +#10 147.5 [3406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx512f-x32.c.o +#10 147.5 [3407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx512f-x16.c.o +#10 147.5 [3408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx512f-x16.c.o +#10 147.5 [3409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx512f-x32.c.o +#10 147.5 [3410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx512f-x32.c.o +#10 147.6 [3411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-x16.c.o +#10 147.6 [3412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx512f-x16.c.o +#10 147.6 [3413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-x16.c.o +#10 147.6 [3414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-x32.c.o +#10 147.6 [3415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-x32.c.o +#10 147.6 [3416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx512f-x16.c.o +#10 147.7 [3417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx512f-x16.c.o +#10 147.7 [3418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx512f-x32.c.o +#10 147.7 [3419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx512f-x32.c.o +#10 147.8 [3420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-x16.c.o +#10 147.8 [3421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-x32.c.o +#10 147.8 [3422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x16.c.o +#10 147.9 [3423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x32.c.o +#10 147.9 [3424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x48.c.o +#10 147.9 [3425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x64.c.o +#10 148.0 [3426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x96.c.o +#10 148.0 [3427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x112.c.o +#10 148.0 [3428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x80.c.o +#10 148.0 [3429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x16.c.o +#10 148.0 [3430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x128.c.o +#10 148.0 [3431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x32.c.o +#10 148.1 [3432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x48.c.o +#10 148.2 [3433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x64.c.o +#10 148.2 [3434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x112.c.o +#10 148.2 [3435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x96.c.o +#10 148.3 [3436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x80.c.o +#10 148.3 [3437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-x16.c.o +#10 148.3 [3438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x128.c.o +#10 148.3 [3439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-x32.c.o +#10 148.3 [3440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-x16.c.o +#10 148.4 [3441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-x32.c.o +#10 148.4 [3442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-x32.c.o +#10 148.4 [3443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx512f-x16.c.o +#10 148.4 [3444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-x16.c.o +#10 148.5 [3445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx512f-x32.c.o +#10 148.5 [3446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-x32.c.o +#10 148.6 [3447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-x16.c.o +#10 148.6 [3448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-x32.c.o +#10 148.6 [3449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-x32.c.o +#10 148.6 [3450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-x16.c.o +#10 148.6 [3451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x32.c.o +#10 148.6 [3452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x16.c.o +#10 148.7 [3453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-x16.c.o +#10 148.7 [3454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x48.c.o +#10 148.7 [3455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x64.c.o +#10 148.7 [3456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x80.c.o +#10 148.8 [3457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x96.c.o +#10 148.8 [3458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x112.c.o +#10 148.9 [3459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x128.c.o +#10 148.9 [3460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x144.c.o +#10 148.9 [3461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x160.c.o +#10 148.9 [3462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x192.c.o +#10 149.0 [3463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x176.c.o +#10 149.0 [3464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x16.c.o +#10 149.0 [3465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x48.c.o +#10 149.1 [3466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x64.c.o +#10 149.1 [3467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x32.c.o +#10 149.1 [3468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x80.c.o +#10 149.1 [3469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x96.c.o +#10 149.2 [3470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x112.c.o +#10 149.2 [3471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x144.c.o +#10 149.2 [3472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x128.c.o +#10 149.3 [3473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x176.c.o +#10 149.3 [3474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x160.c.o +#10 149.3 [3475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x16.c.o +#10 149.3 [3476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x192.c.o +#10 149.3 [3477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x48.c.o +#10 149.4 [3478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x64.c.o +#10 149.4 [3479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x32.c.o +#10 149.4 [3480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x80.c.o +#10 149.4 [3481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x112.c.o +#10 149.5 [3482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x128.c.o +#10 149.5 [3483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x96.c.o +#10 149.6 [3484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x32.c.o +#10 149.6 [3485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x16.c.o +#10 149.6 [3486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x48.c.o +#10 149.7 [3487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x64.c.o +#10 149.7 [3488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x96.c.o +#10 149.7 [3489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x80.c.o +#10 149.8 [3490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x32.c.o +#10 149.8 [3491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x128.c.o +#10 149.8 [3492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x112.c.o +#10 149.8 [3493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x16.c.o +#10 149.8 [3494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x80.c.o +#10 149.8 [3495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x48.c.o +#10 149.9 [3496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x64.c.o +#10 149.9 [3497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x96.c.o +#10 150.0 [3498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x112.c.o +#10 150.0 [3499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x128.c.o +#10 150.0 [3500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x16.c.o +#10 150.0 [3501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x32.c.o +#10 150.1 [3502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x48.c.o +#10 150.1 [3503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x64.c.o +#10 150.1 [3504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x80.c.o +#10 150.2 [3505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x112.c.o +#10 150.2 [3506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x96.c.o +#10 150.2 [3507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x128.c.o +#10 150.2 [3508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x16.c.o +#10 150.2 [3509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x32.c.o +#10 150.3 [3510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x48.c.o +#10 150.3 [3511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x64.c.o +#10 150.3 [3512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x80.c.o +#10 150.4 [3513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x96.c.o +#10 150.4 [3514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x16.c.o +#10 150.5 [3515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x112.c.o +#10 150.5 [3516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x128.c.o +#10 150.5 [3517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x32.c.o +#10 150.5 [3518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x48.c.o +#10 150.6 [3519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x80.c.o +#10 150.6 [3520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x96.c.o +#10 150.6 [3521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x64.c.o +#10 150.6 [3522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x112.c.o +#10 150.7 [3523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x16.c.o +#10 150.7 [3524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x128.c.o +#10 150.7 [3525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x48.c.o +#10 150.8 [3526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x80.c.o +#10 150.8 [3527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x64.c.o +#10 150.8 [3528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x32.c.o +#10 150.9 [3529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x112.c.o +#10 150.9 [3530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx512f-x32.c.o +#10 150.9 [3531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x128.c.o +#10 150.9 [3532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx512f-x16.c.o +#10 151.0 [3533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx512f-x32.c.o +#10 151.0 [3534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x96.c.o +#10 151.0 [3535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx512f-x16.c.o +#10 151.0 [3536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx512f-x32.c.o +#10 151.1 [3537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx512f-x16.c.o +#10 151.1 [3538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut32-p2-perm2-scalef.c.o +#10 151.1 [3539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut16-p3-perm-scalef.c.o +#10 151.1 [3540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut32-p2-perm2.c.o +#10 151.2 [3541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut16-p3-perm.c.o +#10 151.2 [3542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-p5-scalef.c.o +#10 151.2 [3543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx512f-rr1-p6.c.o +#10 151.2 [3544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-p5.c.o +#10 151.2 [3545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx512f-rr1-lut16-p3-perm.c.o +#10 151.3 [3546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/extexp-avx512f-p5.c.o +#10 151.3 [3547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-nr1fma1adj.c.o +#10 151.3 [3548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-div.c.o +#10 151.3 [3549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-nr1fma.c.o +#10 151.4 [3550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-div.c.o +#10 151.4 [3551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-nr1fma1adj.c.o +#10 151.4 [3552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-div.c.o +#10 151.4 [3553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma1adj.c.o +#10 151.5 [3554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma.c.o +#10 151.5 [3555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-div.c.o +#10 151.5 [3556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-nr1fma.c.o +#10 151.6 [3557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-nr1fma.c.o +#10 151.6 [3558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-div.c.o +#10 151.6 [3559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-nr1fma.c.o +#10 151.6 [3560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-nr1fma1adj.c.o +#10 151.6 [3561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-nr1fma1adj.c.o +#10 151.7 [3562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-nr1fma.c.o +#10 151.7 [3563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-div.c.o +#10 151.8 [3564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-div.c.o +#10 151.8 [3565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma.c.o +#10 151.8 [3566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-nr1fma1adj.c.o +#10 151.8 [3567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma1adj.c.o +#10 151.9 [3568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-nr1fma1adj.c.o +#10 151.9 [3569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr1fma.c.o +#10 151.9 [3570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-x16.c.o +#10 151.9 [3571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-div.c.o +#10 152.0 [3572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-x16.c.o +#10 152.0 [3573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr1fma1adj.c.o +#10 152.0 [3574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-x32.c.o +#10 152.0 [3575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr2fma.c.o +#10 152.0 [3576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x64.c.o +#10 152.0 [3577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-x32.c.o +#10 152.0 [3578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x32.c.o +#10 152.0 [3579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-nr1fma.c.o +#10 152.0 [3580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x128.c.o +#10 152.1 [3581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x96.c.o +#10 152.2 [3582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x32.c.o +#10 152.2 [3583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x64.c.o +#10 152.2 [3584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x128.c.o +#10 152.2 [3585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x96.c.o +#10 152.3 [3586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o +#10 152.3 [3587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 152.3 [3588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 152.4 [3589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 152.4 [3590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 152.4 [3591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 152.5 [3592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 152.5 [3593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 152.5 [3594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 152.5 [3595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 152.5 [3596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 152.6 [3597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 152.6 [3598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 152.6 [3599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x16.c.o +#10 152.7 [3600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x32.c.o +#10 152.7 [3601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 152.7 [3602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 152.7 [3603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x48.c.o +#10 152.7 [3604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 152.8 [3605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x64.c.o +#10 152.8 [3606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 152.8 [3607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 152.8 [3608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 152.8 [3609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 152.9 [3610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 152.9 [3611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 152.9 [3612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-x16.c.o +#10 153.0 [3613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 153.0 [3614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-x32.c.o +#10 153.0 [3615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 153.0 [3616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-x16.c.o +#10 153.1 [3617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-x32.c.o +#10 153.1 [3618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 153.1 [3619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 153.2 [3620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 153.2 [3621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x16.c.o +#10 153.2 [3622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x32.c.o +#10 153.2 [3623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x48.c.o +#10 153.2 [3624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 153.3 [3625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x64.c.o +#10 153.3 [3626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 153.3 [3627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 153.3 [3628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 153.4 [3629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 153.4 [3630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 153.4 [3631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 153.4 [3632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-x16.c.o +#10 153.5 [3633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 153.5 [3634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 153.5 [3635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-x32.c.o +#10 153.5 [3636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-2048.c.o +#10 153.5 [3637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-64.c.o +#10 153.5 [3638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-x16.c.o +#10 153.5 [3639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-4.c.o +#10 153.5 [3640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-8.c.o +#10 153.5 [3641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-16.c.o +#10 153.5 [3642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-64.c.o +#10 153.6 [3643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 153.6 [3644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-x32.c.o +#10 153.6 [3645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x128.c.o +#10 153.6 [3646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/vlog.c.o +#10 153.6 [3647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-2048.c.o +#10 153.6 [3648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x64.c.o +#10 153.7 [3649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x64.c.o +#10 153.7 [3650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x128.c.o +#10 153.7 [3651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x256.c.o +#10 153.7 [3652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x192.c.o +#10 153.7 [3653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x256.c.o +#10 153.8 [3654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x192.c.o +#10 153.8 [3655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/scalar.c.o +#10 153.8 [3656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o +#10 153.8 [3657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o +#10 153.9 [3658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o +#10 153.9 [3659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o +#10 153.9 [3660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o +#10 154.0 [3661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o +#10 154.1 [3662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o +#10 154.1 [3663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/ssse3.c.o +#10 154.2 [3664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o +#10 154.2 [3665/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/convolution-test-helpers.dir/test/convolution-test-helpers.cc.o +#10 154.3 [3666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o +#10 154.3 [3667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o +#10 154.3 [3668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o +#10 154.3 [3669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o +#10 154.4 [3670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512vbmi.c.o +#10 154.5 [3671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o +#10 154.6 [3672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/f16c.c.o +#10 154.6 [3673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o +#10 154.6 [3674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o +#10 154.7 [3675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o +#10 154.8 [3676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/fma3.c.o +#10 154.8 [3677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o +#10 154.8 [3678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512f.c.o +#10 154.9 [3679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o +#10 154.9 [3680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o +#10 155.0 [3681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o +#10 155.0 [3682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-ncw.c.o +#10 155.0 [3683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-nwc.c.o +#10 155.0 [3684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o +#10 155.0 [3685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/lut-elementwise-nc.c.o +#10 155.1 [3686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/prelu-nc.c.o +#10 155.1 [3687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o +#10 155.1 [3688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convert.c.o +#10 155.2 [3689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o +#10 155.2 [3690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o +#10 155.2 [3691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o +#10 155.2 [3692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o +#10 155.3 [3693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/divide.c.o +#10 155.3 [3694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o +#10 155.3 [3695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space.c.o +#10 155.3 [3696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/elu.c.o +#10 155.3 [3697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o +#10 155.4 [3698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o +#10 155.4 [3699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/floor.c.o +#10 155.4 [3700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o +#10 155.4 [3701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/global-average-pooling.c.o +#10 155.4 [3702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/hardswish.c.o +#10 155.5 [3703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o +#10 155.5 [3704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o +#10 155.5 [3705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/leaky-relu.c.o +#10 155.5 [3706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/minimum2.c.o +#10 155.5 [3707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/maximum2.c.o +#10 155.5 [3708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/negate.c.o +#10 155.6 [3709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/prelu.c.o +#10 155.6 [3710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/multiply2.c.o +#10 155.6 [3711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/sigmoid.c.o +#10 155.6 [3712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o +#10 155.7 [3713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o +#10 155.7 [3714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square-root.c.o +#10 155.7 [3715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square.c.o +#10 155.7 [3716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/xop.c.o +#10 155.7 [3717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/squared-difference.c.o +#10 155.7 [3718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o +#10 155.7 [3719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse.c.o +#10 155.8 [3720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o +#10 155.8 [3721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o +#10 155.8 [3722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reshape.c.o +#10 155.8 [3723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o +#10 155.8 [3724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o +#10 155.8 [3725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o +#10 155.8 [3726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/post-operation.dir/src/operators/post-operation.c.o +#10 155.9 [3727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/subtract.c.o +#10 155.9 [3728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o +#10 155.9 [3729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o +#10 155.9 [3730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o +#10 155.9 [3731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/transpose-config.c.o +#10 155.9 [3732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/x8-lut-config.c.o +#10 155.9 [3733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/binary-elementwise-config.c.o +#10 156.0 [3734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse41.c.o +#10 156.1 [3735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512skx.c.o +#10 156.3 [3736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o +#10 156.6 [3737/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o +#10 156.8 [3738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx2.c.o +#10 156.9 [3739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx.c.o +#10 156.9 [3740/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_name.cc.o +#10 157.1 [3741/6823] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +#10 157.1 [3742/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_api_internal.cc.o +#10 157.3 [3743/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o +#10 157.4 [3744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse2.c.o +#10 157.6 [3745/6823] Building CXX object third_party/googletest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +#10 157.9 [3746/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o +#10 158.1 [3747/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o +#10 158.1 [3748/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o +#10 158.4 [3749/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o +#10 158.6 [3750/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/perf_counters.cc.o +#10 158.8 [3751/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o +#10 159.0 [3752/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o +#10 159.1 [3753/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o +#10 159.2 [3754/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o +#10 159.3 [3755/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/TransposeUtils.cc.o +#10 159.5 [3756/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_runner.cc.o +#10 159.5 [3757/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o +#10 159.8 [3758/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o +#10 160.0 [3759/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o +#10 160.1 [3760/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o +#10 160.2 [3761/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o +#10 160.3 [3762/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o +#10 160.4 [3763/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/ExecuteKernel.cc.o +#10 160.5 [3764/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/spmmUtils.cc.o +#10 160.6 [3765/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/Utils.cc.o +#10 160.6 [3766/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o +#10 160.7 [3767/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o +#10 160.7 [3768/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o +#10 161.0 [3769/6823] Building CXX object third_party/googletest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +#10 161.2 [3770/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmBfloat16Convert.cc.o +#10 161.6 [3771/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFloat16Convert.cc.o +#10 162.4 [3772/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o +#10 163.0 [3773/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmSparseDense.cc.o +#10 163.1 [3774/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateI8Depthwise.cc.o +#10 163.2 [3775/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o +#10 163.3 [3776/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFP16.cc.o +#10 163.3 [3777/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmI8Spmdm.cc.o +#10 163.3 [3778/6823] Linking CXX static library lib/libbenchmark.a +#10 163.4 [3779/6823] Linking CXX static library lib/libbenchmark_main.a +#10 163.7 [3780/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFPCommon.cc.o +#10 165.5 [3781/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmConv.cc.o +#10 165.8 [3782/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernel.cc.o +#10 165.8 [3783/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/RefImplementations.cc.o +#10 166.0 [3784/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmI64.cc.o +#10 166.3 [3785/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512VNNI.cc.o +#10 166.7 [3786/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16.cc.o +#10 167.6 [3787/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512.cc.o +#10 167.6 [3788/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAMatrix.cc.o +#10 167.7 [3789/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelDirectConvU8S8S32ACC32.cc.o +#10 168.5 [3790/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithQuantRowOffset.cc.o +#10 168.9 [3791/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32.cc.o +#10 168.9 [3792/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithRowOffset.cc.o +#10 169.0 [3793/6823] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +#10 169.0 [3794/6823] Linking CXX static library lib/libgtest.a +#10 169.1 [3795/6823] Linking CXX static library lib/libgmock.a +#10 169.1 [3796/6823] Linking CXX static library lib/libgmock_main.a +#10 169.1 [3797/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithIm2Col.cc.o +#10 169.1 [3798/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackBMatrix.cc.o +#10 169.2 [3799/6823] Linking CXX static library lib/libgtest_main.a +#10 169.5 [3800/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32Avx512VNNI.cc.o +#10 169.7 [3801/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConvAcc32Avx2.cc.o +#10 169.9 [3802/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConvAcc32Avx512.cc.o +#10 170.0 [3803/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackMatrix.cc.o +#10 170.5 [3804/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/QuantUtils.cc.o +#10 171.0 [3805/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForConv.cc.o +#10 171.2 [3806/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o +#10 171.9 [3807/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o +#10 172.3 [3808/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightMatrixForGConv.cc.o +#10 172.7 [3809/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o +#10 173.2 [3810/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConv.cc.o +#10 173.2 [3811/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o +#10 173.3 [3812/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o +#10 173.3 [3813/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o +#10 173.8 [3814/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o +#10 173.9 [3815/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForDirectConv.cc.o +#10 174.2 [3816/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o +#10 174.4 [3817/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o +#10 174.5 [3818/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/SparseAdagrad.cc.o +#10 174.7 [3819/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o +#10 174.9 [3820/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o +#10 175.1 [3821/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o +#10 175.2 [3822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o +#10 175.4 [3823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o +#10 175.5 [3824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o +#10 175.7 [3825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o +#10 176.0 [3826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o +#10 176.3 [3827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o +#10 176.3 [3828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o +#10 176.4 [3829/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o +#10 176.6 [3830/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/Fbgemm.cc.o +#10 176.6 [3831/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o +#10 176.6 [3832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/abs.c.o +#10 176.7 [3833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o +#10 176.7 [3834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o +#10 176.8 [3835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/add2.c.o +#10 176.8 [3836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o +#10 176.8 [3837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o +#10 176.8 [3838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/bankers-rounding.c.o +#10 176.9 [3839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/ceiling.c.o +#10 176.9 [3840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/clamp.c.o +#10 177.1 [3841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o +#10 177.3 [3842/6823] Linking CXX static library lib/libXNNPACK.a +#10 177.5 [3843/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o +#10 177.6 [3844/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/archtraits.cpp.o +#10 177.7 [3845/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/assembler.cpp.o +#10 177.8 [3846/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/builder.cpp.o +#10 177.9 [3847/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codewriter.cpp.o +#10 178.0 [3848/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codeholder.cpp.o +#10 178.1 [3849/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/constpool.cpp.o +#10 178.4 [3850/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/compiler.cpp.o +#10 178.5 [3851/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/cpuinfo.cpp.o +#10 178.6 [3852/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emithelper.cpp.o +#10 178.7 [3853/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitter.cpp.o +#10 178.7 [3854/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/environment.cpp.o +#10 178.9 [3855/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/errorhandler.cpp.o +#10 178.9 [3856/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitterutils.cpp.o +#10 179.1 [3857/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/globals.cpp.o +#10 179.3 [3858/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/funcargscontext.cpp.o +#10 179.4 [3859/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/func.cpp.o +#10 179.4 [3860/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o +#10 179.5 [3861/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/inst.cpp.o +#10 179.6 [3862/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/formatter.cpp.o +#10 179.7 [3863/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitruntime.cpp.o +#10 179.8 [3864/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/RowWiseSparseAdagradFused.cc.o +#10 179.8 [3865/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/osutils.cpp.o +#10 179.8 [3866/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/logger.cpp.o +#10 179.8 [3867/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/operand.cpp.o +#10 179.9 [3868/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitallocator.cpp.o +#10 180.3 [3869/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/string.cpp.o +#10 180.3 [3870/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/support.cpp.o +#10 180.4 [3871/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/target.cpp.o +#10 180.5 [3872/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/type.cpp.o +#10 180.5 [3873/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rastack.cpp.o +#10 180.6 [3874/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/virtmem.cpp.o +#10 180.8 [3875/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/ralocal.cpp.o +#10 180.8 [3876/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonelist.cpp.o +#10 180.9 [3877/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonestack.cpp.o +#10 180.9 [3878/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonehash.cpp.o +#10 180.9 [3879/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonetree.cpp.o +#10 180.9 [3880/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zone.cpp.o +#10 181.1 [3881/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonevector.cpp.o +#10 181.5 [3882/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/armformatter.cpp.o +#10 181.8 [3883/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64builder.cpp.o +#10 181.8 [3884/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rapass.cpp.o +#10 181.9 [3885/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64func.cpp.o +#10 182.0 [3886/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64formatter.cpp.o +#10 182.0 [3887/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64compiler.cpp.o +#10 182.0 [3888/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64emithelper.cpp.o +#10 182.3 [3889/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64operand.cpp.o +#10 182.4 [3890/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instdb.cpp.o +#10 182.4 [3891/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instapi.cpp.o +#10 183.4 [3892/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86formatter.cpp.o +#10 183.8 [3893/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64rapass.cpp.o +#10 184.1 [3894/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64assembler.cpp.o +#10 184.2 [3895/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86builder.cpp.o +#10 184.2 [3896/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86compiler.cpp.o +#10 184.6 [3897/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86emithelper.cpp.o +#10 184.7 [3898/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/ExecuteKernelU8S8.cc.o +#10 184.7 [3899/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86operand.cpp.o +#10 184.7 [3900/6823] Building C object third_party/ittapi/CMakeFiles/ittnotify.dir/src/ittnotify/jitprofiling.c.o +#10 184.9 [3901/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86func.cpp.o +#10 184.9 [3902/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instapi.cpp.o +#10 185.1 [3903/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instdb.cpp.o +#10 185.1 [3904/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/error.cc.o +#10 185.4 [3905/6823] Building C object third_party/ittapi/CMakeFiles/ittnotify.dir/src/ittnotify/ittnotify_static.c.o +#10 185.5 [3906/6823] Linking C static library lib/libittnotify.a +#10 185.5 [3907/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/address.cc.o +#10 185.6 [3908/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/helpers.cc.o +#10 185.7 [3909/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/error.cc.o +#10 185.9 [3910/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/allocator.cc.o +#10 186.1 [3911/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/fd.cc.o +#10 186.3 [3912/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/error.cc.o +#10 186.4 [3913/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/socket.cc.o +#10 187.0 [3914/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/system.cc.o +#10 187.4 [3915/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/context.cc.o +#10 187.4 [3916/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86assembler.cpp.o +#10 187.5 [3917/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/error.cc.o +#10 187.8 [3918/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86rapass.cpp.o +#10 187.9 [3919/6823] Linking CXX static library lib/libasmjit.a +#10 188.0 [3920/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/listener.cc.o +#10 188.2 [3921/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDMNBit.cc.o +#10 188.7 [3922/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/pipe.cc.o +#10 190.2 [3923/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/channel_impl.cc.o +#10 190.5 [3924/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/context_impl.cc.o +#10 191.1 [3925/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/factory.cc.o +#10 191.1 [3926/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/context_impl.cc.o +#10 191.6 [3927/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/listener_impl.cc.o +#10 191.8 [3928/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/factory.cc.o +#10 192.2 [3929/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/context_impl.cc.o +#10 192.2 [3930/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/channel_impl.cc.o +#10 192.5 [3931/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/channel_impl.cc.o +#10 193.7 [3932/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/error.cc.o +#10 194.3 [3933/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/context_impl.cc.o +#10 194.4 [3934/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/factory.cc.o +#10 195.2 [3935/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/factory.cc.o +#10 195.3 [3936/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/context_impl.cc.o +#10 195.9 [3937/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/channel_impl.cc.o +#10 196.1 [3938/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/sockaddr.cc.o +#10 196.3 [3939/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/context_impl.cc.o +#10 196.3 [3940/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/connection_impl.cc.o +#10 196.5 [3941/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/loop.cc.o +#10 196.5 [3942/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o +#10 197.8 [3943/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/epoll_loop.cc.o +#10 197.9 [3944/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/factory.cc.o +#10 198.0 [3945/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/pipe_impl.cc.o +#10 198.1 [3946/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/utility.cc.o +#10 198.1 [3947/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/shm_segment.cc.o +#10 198.4 [3948/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/listener_impl.cc.o +#10 198.8 [3949/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/sockaddr.cc.o +#10 198.8 [3950/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/context_impl.cc.o +#10 199.1 [3951/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/error.cc.o +#10 199.9 [3952/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/ibv.cc.o +#10 200.4 [3953/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/listener_impl.cc.o +#10 200.7 [3954/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/random.c.o +#10 200.8 [3955/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/connection_impl.cc.o +#10 200.9 [3956/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/fs-poll.c.o +#10 201.0 [3957/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/sockaddr.cc.o +#10 201.1 [3958/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/idna.c.o +#10 201.2 [3959/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/strscpy.c.o +#10 201.2 [3960/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/reactor.cc.o +#10 201.2 [3961/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/inet.c.o +#10 201.3 [3962/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/factory.cc.o +#10 201.4 [3963/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/threadpool.c.o +#10 201.4 [3964/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/timer.c.o +#10 201.4 [3965/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/uv-data-getter-setters.c.o +#10 201.4 [3966/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/version.c.o +#10 201.6 [3967/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/async.c.o +#10 201.6 [3968/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/dl.c.o +#10 201.7 [3969/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/utility.cc.o +#10 201.7 [3970/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/uv-common.c.o +#10 201.8 [3971/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/getaddrinfo.c.o +#10 201.8 [3972/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/getnameinfo.c.o +#10 201.9 [3973/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/loop-watcher.c.o +#10 201.9 [3974/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/loop.c.o +#10 201.9 [3975/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/core.c.o +#10 202.0 [3976/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/pipe.c.o +#10 202.0 [3977/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/poll.c.o +#10 202.1 [3978/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-devurandom.c.o +#10 202.1 [3979/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/fs.c.o +#10 202.2 [3980/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/process.c.o +#10 202.3 [3981/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/tcp.c.o +#10 202.3 [3982/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/signal.c.o +#10 202.4 [3983/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/thread.c.o +#10 202.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c: In function ‘thread_stack_size’: +#10 202.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c:195:24: warning: comparison of integer expressions of different signedness: ‘rlim_t’ {aka ‘long unsigned int’} and ‘long int’ [-Wsign-compare] +#10 202.4 195 | if (lim.rlim_cur >= PTHREAD_STACK_MIN) +#10 202.4 | ^~ +#10 202.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c: In function ‘uv_thread_create_ex’: +#10 202.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c:243:20: warning: comparison of integer expressions of different signedness: ‘size_t’ {aka ‘long unsigned int’} and ‘long int’ [-Wsign-compare] +#10 202.4 243 | if (stack_size < PTHREAD_STACK_MIN) +#10 202.4 | ^ +#10 202.4 [3984/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/tty.c.o +#10 202.4 [3985/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/stream.c.o +#10 202.4 [3986/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/proctitle.c.o +#10 202.5 [3987/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/reactor.cc.o +#10 202.5 [3988/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-syscalls.c.o +#10 202.6 [3989/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/udp.c.o +#10 202.6 [3990/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/procfs-exepath.c.o +#10 202.6 [3991/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-inotify.c.o +#10 202.7 [3992/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-getrandom.c.o +#10 202.7 [3993/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-sysctl-linux.c.o +#10 202.8 [3994/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-core.c.o +#10 202.9 [3995/6823] Linking C static library lib/libtensorpipe_uv.a +#10 203.0 [3996/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/context_impl.cc.o +#10 203.2 [3997/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/connection_impl.cc.o +#10 203.2 [3998/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/listener_impl.cc.o +#10 203.3 [3999/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o +#10 203.7 [4000/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o +#10 203.8 [4001/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/alltoall.cc.o +#10 203.9 [4002/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/factory.cc.o +#10 203.9 [4003/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/barrier.cc.o +#10 204.0 [4004/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o +#10 204.1 [4005/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgatherv.cc.o +#10 204.1 [4006/6823] Linking CXX static library lib/libtensorpipe.a +#10 204.3 [4007/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o +#10 204.3 [4008/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o +#10 204.4 [4009/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/alltoallv.cc.o +#10 204.5 [4010/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o +#10 204.5 [4011/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o +#10 204.6 [4012/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o +#10 205.0 [4013/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gatherv.cc.o +#10 205.0 [4014/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o +#10 205.0 [4015/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o +#10 205.1 [4016/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o +#10 205.1 [4017/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o +#10 205.1 [4018/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o +#10 205.2 [4019/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o +#10 205.3 [4020/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o +#10 205.4 [4021/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o +#10 205.8 [4022/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o +#10 205.8 [4023/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o +#10 206.1 [4024/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o +#10 206.1 [4025/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o +#10 206.2 [4026/6823] Running gen_proto.py on onnx/onnx.in.proto +#10 206.2 Processing /pytorch/third_party/onnx/onnx/onnx.in.proto +#10 206.2 Writing /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 206.2 Writing /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 +#10 206.2 Writing /pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h +#10 206.2 generating /pytorch/build/third_party/onnx/onnx/onnx_pb.py +#10 206.2 [4027/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o +#10 206.2 [4028/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o +#10 206.4 [4029/6823] Building C object third_party/foxi/CMakeFiles/foxi_loader.dir/foxi/onnxifi_loader.c.o +#10 206.4 [4030/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o +#10 206.4 [4031/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o +#10 206.4 [4032/6823] Linking C static library lib/libfoxi_loader.a +#10 206.5 [4033/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 206.5 [4034/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o +#10 206.5 [4035/6823] Running gen_proto.py on onnx/onnx-data.in.proto +#10 206.5 Processing /pytorch/third_party/onnx/onnx/onnx-data.in.proto +#10 206.5 Writing /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 206.5 Writing /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 +#10 206.5 Writing /pytorch/build/third_party/onnx/onnx/onnx-data.pb.h +#10 206.5 generating /pytorch/build/third_party/onnx/onnx/onnx_data_pb.py +#10 206.6 [4036/6823] Running gen_proto.py on onnx/onnx-operators.in.proto +#10 206.6 Processing /pytorch/third_party/onnx/onnx/onnx-operators.in.proto +#10 206.6 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 206.6 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 +#10 206.6 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h +#10 206.6 generating /pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py +#10 206.6 [4037/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/bfloat16.cpp.o +#10 206.7 [4038/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 206.7 [4039/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 207.0 [4040/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/binary.cpp.o +#10 207.1 [4041/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/loop.cc.o +#10 207.1 [4042/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/batch_normalization.cpp.o +#10 207.3 [4043/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o +#10 207.4 [4044/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o +#10 207.6 [4045/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc.cpp.o +#10 207.6 [4046/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o +#10 207.9 [4047/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o +#10 208.2 [4048/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc_iface.cpp.o +#10 208.9 [4049/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_cache.cpp.o +#10 209.1 [4050/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o +#10 209.3 [4051/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o +#10 209.5 [4052/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o +#10 209.5 [4053/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o +#10 209.6 [4054/6823] Linking CXX static library lib/libgloo.a +#10 209.6 [4055/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o +#10 209.7 [4056/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o +#10 210.2 [4057/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/__/__/caffe2/onnx/torch_ops/defs.cc.o +#10 210.2 [4058/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/__/__/caffe2/onnx/torch_ops/schema.cc.o +#10 210.5 [4059/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o +#10 210.9 [4060/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o +#10 213.4 [4061/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o +#10 214.0 [4062/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o +#10 214.4 [4063/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o +#10 214.6 [4064/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o +#10 214.6 [4065/6823] Linking CXX static library lib/libonnx_proto.a +#10 217.4 [4066/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip.hip.o +#10 217.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 217.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 218.1 [4067/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o +#10 218.6 [4068/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_private.hip.o +#10 218.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 218.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 218.7 [4069/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o +#10 221.5 [4070/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o +#10 221.7 [4071/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_local.cc.o +#10 221.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 221.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 222.6 [4072/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o +#10 223.1 [4073/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o +#10 223.1 [4074/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o +#10 225.6 [4075/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o +#10 225.7 [4076/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o +#10 227.0 [4077/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_broadcast_one_to_all.cc.o +#10 227.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 227.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 227.7 [4078/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_ring.cc.o +#10 227.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 227.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 228.7 [4079/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o +#10 228.9 [4080/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o +#10 229.5 [4081/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o +#10 230.2 [4082/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o +#10 230.2 [4083/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_ring_chunked.cc.o +#10 230.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 230.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 231.4 [4084/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/nccl/gloo_hip_generated_nccl.hip.o +#10 231.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 231.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 231.6 [4085/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDM.cc.o +#10 231.6 [4086/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o +#10 231.8 [4087/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o +#10 232.3 [4088/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o +#10 232.4 [4089/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o +#10 232.7 [4090/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o +#10 233.5 [4091/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o +#10 233.8 [4092/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o +#10 233.9 [4093/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o +#10 234.7 [4094/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o +#10 234.9 [4095/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o +#10 235.1 [4096/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o +#10 236.0 [4097/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o +#10 236.2 [4098/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o +#10 236.3 [4099/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_bcube.cc.o +#10 236.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 236.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 236.3 [4100/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o +#10 237.1 [4101/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o +#10 237.6 [4102/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_halving_doubling.cc.o +#10 237.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 237.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 237.6 [4103/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o +#10 237.9 [4104/6823] Linking CXX static library lib/libgloo_hip.a +#10 238.2 [4105/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o +#10 238.8 [4106/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o +#10 238.9 [4107/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/eltwise.cpp.o +#10 239.0 [4108/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o +#10 239.4 [4109/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o +#10 239.7 [4110/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o +#10 239.9 [4111/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/deconvolution.cpp.o +#10 239.9 [4112/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/concat.cpp.o +#10 240.0 [4113/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_debug.cpp.o +#10 240.1 [4114/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_threadpool.cpp.o +#10 240.3 [4115/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_debug_autogenerated.cpp.o +#10 240.4 [4116/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/cache_blob_id.cpp.o +#10 240.6 [4117/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/prelu.cpp.o +#10 240.8 [4118/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_attr.cpp.o +#10 240.9 [4119/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o +#10 241.0 [4120/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/broadcast_strategy.cpp.o +#10 241.2 [4121/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/experimental.cpp.o +#10 241.3 [4122/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive.cpp.o +#10 241.3 [4123/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/convolution.cpp.o +#10 241.6 [4124/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/fpmath_mode.cpp.o +#10 241.8 [4125/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/convolution_pd.cpp.o +#10 241.9 [4126/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/engine.cpp.o +#10 242.0 [4127/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify.cpp.o +#10 242.1 [4128/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o +#10 242.2 [4129/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/inner_product.cpp.o +#10 242.3 [4130/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/layer_normalization.cpp.o +#10 242.4 [4131/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/lrn.cpp.o +#10 242.5 [4132/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/matmul.cpp.o +#10 242.8 [4133/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o +#10 243.0 [4134/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_debug.cpp.o +#10 243.2 [4135/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/gemm.cpp.o +#10 243.2 [4136/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/pooling.cpp.o +#10 243.3 [4137/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_storage.cpp.o +#10 243.6 [4138/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_tracking.cpp.o +#10 243.7 [4139/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o +#10 244.1 [4140/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o +#10 244.3 [4141/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/reduction.cpp.o +#10 244.5 [4142/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/query.cpp.o +#10 244.5 [4143/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory.cpp.o +#10 244.6 [4144/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_exec_types.cpp.o +#10 244.7 [4145/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc_iterator.cpp.o +#10 244.9 [4146/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/resampling.cpp.o +#10 245.2 [4147/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_iface.cpp.o +#10 245.3 [4148/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/reorder.cpp.o +#10 245.4 [4149/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/rnn.cpp.o +#10 245.5 [4150/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/rw_mutex.cpp.o +#10 245.6 [4151/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/shuffle.cpp.o +#10 245.8 [4152/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/scratchpad_debug.cpp.o +#10 245.8 [4153/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/serialization.cpp.o +#10 246.0 [4154/6823] Building C object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/jitprofiling.c.o +#10 246.0 [4155/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/softmax.cpp.o +#10 246.0 [4156/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/scratchpad.cpp.o +#10 246.1 [4157/6823] Building ASM object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/ittptmark64.S.o +#10 246.6 [4158/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/utils.cpp.o +#10 246.6 [4159/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/sum.cpp.o +#10 246.7 [4160/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_desc_wrapper.cpp.o +#10 246.9 [4161/6823] Building C object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/ittnotify_static.c.o +#10 247.0 [4162/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/stream.cpp.o +#10 247.2 [4163/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_hashing.cpp.o +#10 247.4 [4164/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/binary_injector_utils.cpp.o +#10 247.9 [4165/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_batch_normalization_utils.cpp.o +#10 249.2 [4166/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_engine.cpp.o +#10 249.3 [4167/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/verbose.cpp.o +#10 251.4 [4168/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/bfloat16.cpp.o +#10 251.5 [4169/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_binary_list.cpp.o +#10 252.7 [4170/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_concat.cpp.o +#10 255.2 [4171/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_layer_normalization_list.cpp.o +#10 255.7 [4172/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_lrn_list.cpp.o +#10 256.3 [4173/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_eltwise_list.cpp.o +#10 256.8 [4174/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_deconvolution_list.cpp.o +#10 257.0 [4175/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_prelu_list.cpp.o +#10 257.3 [4176/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_batch_normalization_list.cpp.o +#10 258.6 [4177/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o +#10 258.8 [4178/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_reduction_list.cpp.o +#10 258.9 [4179/6823] Linking CXX static library lib/libonnx.a +#10 260.6 [4180/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_shuffle_list.cpp.o +#10 261.7 [4181/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/float16.cpp.o +#10 261.9 [4182/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_resampling_list.cpp.o +#10 263.1 [4183/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_convolution.cpp.o +#10 263.2 [4184/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_inner_product_list.cpp.o +#10 263.6 [4185/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_pooling_list.cpp.o +#10 264.1 [4186/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_softmax_list.cpp.o +#10 265.1 [4187/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.o +#10 265.2 [4188/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_inner_product_utils.cpp.o +#10 265.5 [4189/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_inner_product.cpp.o +#10 265.6 [4190/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_sum.cpp.o +#10 266.0 [4191/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_zero_pad.cpp.o +#10 266.4 [4192/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_convolution_utils.cpp.o +#10 266.5 [4193/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_inner_product.cpp.o +#10 267.2 [4194/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_convolution.cpp.o +#10 267.7 [4195/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/primitive_attr_postops.cpp.o +#10 267.7 [4196/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/platform.cpp.o +#10 268.2 [4197/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_convolution_utils.cpp.o +#10 268.9 [4198/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_binary.cpp.o +#10 270.3 [4199/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ncsp_batch_normalization.cpp.o +#10 271.1 [4200/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nspc_batch_normalization.cpp.o +#10 271.1 [4201/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nchw_pooling.cpp.o +#10 271.7 [4202/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nhwc_pooling.cpp.o +#10 272.8 [4203/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_inner_product.cpp.o +#10 272.9 [4204/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_convolution_int8.cpp.o +#10 273.2 [4205/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_inner_product_int8.cpp.o +#10 273.3 [4206/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_deconvolution.cpp.o +#10 274.7 [4207/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_eltwise.cpp.o +#10 275.6 [4208/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_prelu.cpp.o +#10 276.1 [4209/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_layer_normalization.cpp.o +#10 276.3 [4210/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_resampling.cpp.o +#10 276.4 [4211/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_shuffle.cpp.o +#10 276.6 [4212/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_convolution.cpp.o +#10 278.0 [4213/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/zero_point_utils.cpp.o +#10 278.5 [4214/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_softmax.cpp.o +#10 278.8 [4215/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/f32/gemm_utils_f32.cpp.o +#10 279.2 [4216/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_reduction.cpp.o +#10 279.5 [4217/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/gemm_pack.cpp.o +#10 279.6 [4218/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_layer_normalization.cpp.o +#10 279.6 [4219/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_batch_normalization.cpp.o +#10 280.2 [4220/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_lrn.cpp.o +#10 280.9 [4221/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/s8x8s32/ref_gemm_s8x8s32.cpp.o +#10 281.0 [4222/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/gemm.cpp.o +#10 281.9 [4223/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_sum.cpp.o +#10 282.0 [4224/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/f32/ref_gemm_f32.cpp.o +#10 282.1 [4225/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/s8x8s32/simple_gemm_s8s8s32.cpp.o +#10 282.2 [4226/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_concat.cpp.o +#10 282.3 [4227/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_pooling.cpp.o +#10 284.1 [4228/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder.cpp.o +#10 284.3 [4229/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/ref_matmul_int8.cpp.o +#10 284.4 [4230/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/ref_matmul.cpp.o +#10 285.1 [4231/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_f32_matmul.cpp.o +#10 285.4 [4232/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_convolution_list.cpp.o +#10 286.1 [4233/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/cpu_matmul_list.cpp.o +#10 286.3 [4234/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_x8s8s32x_matmul.cpp.o +#10 286.4 [4235/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_bf16_matmul.cpp.o +#10 288.6 [4236/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_bf16_s8.cpp.o +#10 289.3 [4237/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_f16.cpp.o +#10 289.3 [4238/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_f32_s8.cpp.o +#10 289.4 [4239/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_bf16.cpp.o +#10 289.4 [4240/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f16.cpp.o +#10 289.6 [4241/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_bf16.cpp.o +#10 289.8 [4242/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_s32.cpp.o +#10 291.3 [4243/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_s8_s8.cpp.o +#10 291.6 [4244/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_f32.cpp.o +#10 293.3 [4245/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_s8.cpp.o +#10 293.5 [4246/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_u8.cpp.o +#10 294.8 [4247/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_s32.cpp.o +#10 295.3 [4248/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_gru.cpp.o +#10 295.3 [4249/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_u8.cpp.o +#10 295.5 [4250/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_common.cpp.o +#10 296.1 [4251/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_s8.cpp.o +#10 296.1 [4252/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/brgemm_cell_common.cpp.o +#10 296.2 [4253/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_gru_lbr.cpp.o +#10 296.9 [4254/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/jit_utils/linux_perf/linux_perf.cpp.o +#10 296.9 [4255/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/jit_utils/jit_utils.cpp.o +#10 296.9 [4256/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_gru.cpp.o +#10 296.9 [4257/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_gru_lbr.cpp.o +#10 298.0 [4258/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_lstm.cpp.o +#10 298.5 [4259/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_lstm_projection.cpp.o +#10 298.7 [4260/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_rnn.cpp.o +#10 298.9 [4261/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/rnn_utils.cpp.o +#10 299.5 [4262/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/brgemm_utils.cpp.o +#10 299.6 [4263/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/brgemm.cpp.o +#10 300.1 [4264/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_resampling.cpp.o +#10 300.7 [4265/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/amx_tile_configure.cpp.o +#10 301.4 [4266/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_isa_traits.cpp.o +#10 304.1 [4267/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_barrier.cpp.o +#10 304.5 [4268/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brdgmm_kernel.cpp.o +#10 305.2 [4269/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_reducer.cpp.o +#10 305.6 [4270/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/amx/jit_avx512_core_amx_gemm_kern.cpp.o +#10 305.6 [4271/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brgemm_amx_uker.cpp.o +#10 305.7 [4272/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_an_kern_autogen.cpp.o +#10 306.1 [4273/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/amx/jit_avx512_core_amx_copy_kern.cpp.o +#10 306.5 [4274/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_gemm_bf16bf16f32_kern.cpp.o +#10 309.0 [4275/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_gemv_bf16bf16f32_kern.cpp.o +#10 309.2 [4276/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_bt_kern_autogen.cpp.o +#10 309.7 [4277/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_bn_kern_autogen.cpp.o +#10 310.3 [4278/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_at_kern_autogen.cpp.o +#10 310.6 [4279/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_bn_kern_autogen.cpp.o +#10 310.8 [4280/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_an_kern_autogen.cpp.o +#10 311.1 [4281/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_bt_kern_autogen.cpp.o +#10 314.4 [4282/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_bn_kern_autogen.cpp.o +#10 315.3 [4283/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_bt_kern_autogen.cpp.o +#10 315.6 [4284/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_at_kern_autogen.cpp.o +#10 317.7 [4285/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_an_kern_autogen.cpp.o +#10 319.3 [4286/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_at_kern_autogen.cpp.o +#10 321.3 [4287/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_bn_kern_autogen.cpp.o +#10 321.8 [4288/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_common_gemm_f32.cpp.o +#10 322.5 [4289/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_bt_kern_autogen.cpp.o +#10 323.1 [4290/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_an_kern_autogen.cpp.o +#10 323.2 [4291/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_kernel_sgemm_kern.cpp.o +#10 324.1 [4292/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_rnn_list.cpp.o +#10 325.0 [4293/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_gemm_smalln_tn_f32_kern.cpp.o +#10 326.8 [4294/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brgemm_kernel.cpp.o +#10 327.2 [4295/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_at_kern_part1_autogen.cpp.o +#10 327.6 [4296/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_bn_kern_autogen.cpp.o +#10 328.3 [4297/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_an_kern_autogen.cpp.o +#10 328.5 [4298/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_bt_kern_autogen.cpp.o +#10 329.0 [4299/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_at_kern_autogen.cpp.o +#10 329.3 [4300/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_at_kern_part2_autogen.cpp.o +#10 330.1 [4301/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_gemv_t_f32_kern.cpp.o +#10 334.1 [4302/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_bn_kern_autogen.cpp.o +#10 334.3 [4303/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_at_kern_autogen.cpp.o +#10 334.4 [4304/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_an_kern_autogen.cpp.o +#10 335.1 [4305/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_gemm_f32.cpp.o +#10 335.3 [4306/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_bt_kern_autogen.cpp.o +#10 335.4 [4307/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_gemv_n_f32_kern.cpp.o +#10 335.6 [4308/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_gemv_t_f32_kern.cpp.o +#10 337.2 [4309/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_b0_sgemm_kern_part1_autogen.cpp.o +#10 338.5 [4310/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_sgemm_kern_part1_autogen.cpp.o +#10 338.7 [4311/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_pack.cpp.o +#10 338.9 [4312/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemv_driver.cpp.o +#10 340.9 [4313/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_b0_sgemm_kern_part2_autogen.cpp.o +#10 341.2 [4314/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_info.cpp.o +#10 342.4 [4315/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_an_kern_autogen.cpp.o +#10 342.6 [4316/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_gemm_s8u8s32_kern.cpp.o +#10 342.6 [4317/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_kernel_b0_sgemm_kern_autogen.cpp.o +#10 343.4 [4318/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_bn_kern_autogen.cpp.o +#10 343.5 [4319/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_driver.cpp.o +#10 343.6 [4320/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_at_kern_autogen.cpp.o +#10 343.8 [4321/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_bt_kern_autogen.cpp.o +#10 343.8 [4322/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_kernel_sgemm_kern_autogen.cpp.o +#10 346.5 [4323/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_an_kern_autogen.cpp.o +#10 346.9 [4324/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_at_kern_autogen.cpp.o +#10 347.1 [4325/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_bn_kern_autogen.cpp.o +#10 347.5 [4326/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_bt_kern_autogen.cpp.o +#10 348.1 [4327/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_an_kern_autogen.cpp.o +#10 348.5 [4328/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_bn_kern_autogen.cpp.o +#10 348.6 [4329/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_bt_kern_autogen.cpp.o +#10 349.2 [4330/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_an_kern_autogen.cpp.o +#10 350.2 [4331/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_sgemm_kern_part2_autogen.cpp.o +#10 350.6 [4332/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_gemv_s8x8s32.cpp.o +#10 350.9 [4333/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_at_kern_autogen.cpp.o +#10 351.1 [4334/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o +#10 351.2 [4335/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_bt_kern_autogen.cpp.o +#10 351.3 [4336/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_bn_kern_autogen.cpp.o +#10 351.7 [4337/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_at_kern_autogen.cpp.o +#10 353.4 [4338/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_an_kern_autogen.cpp.o +#10 353.5 [4339/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_bn_kern_autogen.cpp.o +#10 353.5 [4340/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_kernel_gemv_s8x8s32_kern.cpp.o +#10 355.0 [4341/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_gemm_s8u8s32_kern.cpp.o +#10 355.6 [4342/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_bn_kern_autogen.cpp.o +#10 355.6 [4343/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_bt_kern_autogen.cpp.o +#10 355.9 [4344/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_bt_kern_autogen.cpp.o +#10 356.5 [4345/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_an_kern_autogen.cpp.o +#10 359.0 [4346/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_at_kern_autogen.cpp.o +#10 360.2 [4347/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 360.3 [4348/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_an_kern_autogen.cpp.o +#10 360.8 [4349/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 361.2 [4350/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.o +#10 361.8 [4351/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_at_kern_autogen.cpp.o +#10 362.7 [4352/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_at_kern_autogen.cpp.o +#10 363.2 [4353/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 363.4 [4354/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_bn_kern_autogen.cpp.o +#10 364.4 [4355/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_gemm_s8u8s32_kern_autogen.cpp.o +#10 364.6 [4356/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_bt_kern_autogen.cpp.o +#10 364.9 [4357/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 365.2 [4358/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 365.2 [4359/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 365.5 [4360/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_bn_kern_autogen.cpp.o +#10 365.5 [4361/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_an_kern_autogen.cpp.o +#10 366.5 [4362/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_at_kern_autogen.cpp.o +#10 366.7 [4363/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_bt_kern_autogen.cpp.o +#10 370.2 [4364/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_an_kern_autogen.cpp.o +#10 370.3 [4365/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 370.7 [4366/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_at_kern_autogen.cpp.o +#10 370.7 [4367/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_bn_kern_autogen.cpp.o +#10 370.7 [4368/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.o +#10 370.9 [4369/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 371.5 [4370/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_bt_kern_autogen.cpp.o +#10 372.1 [4371/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 372.6 [4372/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_gemm_s8u8s32_kern_autogen.cpp.o +#10 373.3 [4373/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 373.4 [4374/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 374.5 [4375/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 374.8 [4376/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_an_kern_autogen.cpp.o +#10 374.9 [4377/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/injector_utils.cpp.o +#10 375.1 [4378/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_bn_kern_autogen.cpp.o +#10 375.2 [4379/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_bt_kern_autogen.cpp.o +#10 376.7 [4380/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/ip_convolution.cpp.o +#10 376.9 [4381/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_rnn.cpp.o +#10 377.2 [4382/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_at_kern_autogen.cpp.o +#10 379.1 [4383/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm_bf16_inner_product.cpp.o +#10 379.9 [4384/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_convolution.cpp.o +#10 381.1 [4385/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_postops_injector.cpp.o +#10 382.0 [4386/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm_bf16_convolution.cpp.o +#10 383.2 [4387/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_1x1_conv_kernel.cpp.o +#10 383.7 [4388/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_1x1_conv_kernel_f32.cpp.o +#10 384.4 [4389/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_1x1_convolution.cpp.o +#10 384.6 [4390/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_1x1_convolution.cpp.o +#10 385.6 [4391/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_conv_kernel_f32.cpp.o +#10 385.9 [4392/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_convolution.cpp.o +#10 386.9 [4393/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_deconvolution.cpp.o +#10 387.2 [4394/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_resampling.cpp.o +#10 387.7 [4395/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_1x1_convolution.cpp.o +#10 387.9 [4396/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_1x1_conv_kernel.cpp.o +#10 391.3 [4397/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16cvt.cpp.o +#10 393.0 [4398/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_binary_injector.cpp.o +#10 393.2 [4399/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_convolution.cpp.o +#10 394.2 [4400/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_conv_kernel.cpp.o +#10 394.5 [4401/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_convolution.cpp.o +#10 395.4 [4402/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_1x1_conv_kernel.cpp.o +#10 395.5 [4403/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_dw_conv_kernel.cpp.o +#10 396.0 [4404/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_2x3.cpp.o +#10 396.3 [4405/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_4x3.cpp.o +#10 396.9 [4406/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_sum.cpp.o +#10 397.2 [4407/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_fp16cvt.cpp.o +#10 399.2 [4408/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_conv_kernel.cpp.o +#10 399.5 [4409/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_1x1_convolution.cpp.o +#10 400.0 [4410/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_convolution.cpp.o +#10 400.3 [4411/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_1x1_convolution.cpp.o +#10 401.0 [4412/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brdgmm_dw_conv.cpp.o +#10 401.7 [4413/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_eltwise_injector.cpp.o +#10 402.0 [4414/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_4x3_kernel.cpp.o +#10 403.1 [4415/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o +#10 405.1 [4416/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_conv_kernel.cpp.o +#10 405.6 [4417/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_comp_pad_kernel.cpp.o +#10 405.8 [4418/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_1x1_conv_kernel.cpp.o +#10 406.8 [4419/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_trans_kernel.cpp.o +#10 407.7 [4420/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_utils.cpp.o +#10 407.7 [4421/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_1x1_conv.cpp.o +#10 407.7 [4422/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_conv_kernel.cpp.o +#10 407.9 [4423/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_inner_product_utils.cpp.o +#10 408.3 [4424/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_bwd.cpp.o +#10 408.6 [4425/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_bwd_w.cpp.o +#10 409.3 [4426/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_deconvolution.cpp.o +#10 410.1 [4427/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.o +#10 410.6 [4428/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_convolution.cpp.o +#10 411.4 [4429/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_1x1_convolution.cpp.o +#10 412.7 [4430/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_transpose_utils.cpp.o +#10 414.0 [4431/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o +#10 414.1 [4432/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_x8s8s32x_convolution_utils.cpp.o +#10 414.4 [4433/6823] Linking CXX static library lib/libfbgemm.a +#10 415.0 [4434/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_transpose_utils.cpp.o +#10 415.0 [4435/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_conv_kernel_f32.cpp.o +#10 416.8 [4436/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_1x1_conv_kernel_f32.cpp.o +#10 417.0 [4437/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_deconv_zp_pad_str_kernel.cpp.o +#10 417.6 [4438/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_inner_product_utils.cpp.o +#10 417.9 [4439/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_batch_normalization_s8.cpp.o +#10 419.5 [4440/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_binary.cpp.o +#10 419.7 [4441/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_inner_product.cpp.o +#10 421.9 [4442/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_conv_kernel_utils.cpp.o +#10 424.1 [4443/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reduction.cpp.o +#10 425.6 [4444/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_eltwise_int.cpp.o +#10 426.9 [4445/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_eltwise.cpp.o +#10 426.9 [4446/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reorder_utils.cpp.o +#10 427.2 [4447/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_conv_kernel_f32.cpp.o +#10 427.6 [4448/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv.cpp.o +#10 428.4 [4449/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_batch_normalization.cpp.o +#10 428.6 [4450/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_layer_normalization.cpp.o +#10 429.7 [4451/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_i8i8_pooling.cpp.o +#10 430.4 [4452/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_binary_kernel.cpp.o +#10 430.6 [4453/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_convolution.cpp.o +#10 430.7 [4454/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_resampling.cpp.o +#10 431.8 [4455/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reduction_kernel.cpp.o +#10 434.5 [4456/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_pooling.cpp.o +#10 434.5 [4457/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reorder.cpp.o +#10 435.0 [4458/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_base.cpp.o +#10 435.2 [4459/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_pool_kernel.cpp.o +#10 436.2 [4460/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_blocked.cpp.o +#10 436.9 [4461/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_convolution.cpp.o +#10 438.6 [4462/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_1x1_conv_kernel.cpp.o +#10 438.6 [4463/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn.cpp.o +#10 438.7 [4464/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_softmax.cpp.o +#10 439.3 [4465/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_resampling_kernel.cpp.o +#10 439.5 [4466/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_base.cpp.o +#10 439.5 [4467/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_blocked.cpp.o +#10 439.6 [4468/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_nhwc.cpp.o +#10 440.1 [4469/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_nhwc.cpp.o +#10 441.0 [4470/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_1x1_convolution.cpp.o +#10 442.8 [4471/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul_utils.cpp.o +#10 443.0 [4472/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_conv_kernel.cpp.o +#10 443.7 [4473/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_utils.cpp.o +#10 444.0 [4474/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_forward.cpp.o +#10 444.1 [4475/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_uni_lrn.cpp.o +#10 444.4 [4476/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_backward.cpp.o +#10 444.5 [4477/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_base_kernel.cpp.o +#10 444.7 [4478/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_utils.cpp.o +#10 445.2 [4479/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_reduction_kernel.cpp.o +#10 446.0 [4480/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_tbb_batch_normalization.cpp.o +#10 446.0 [4481/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_uni_prelu_backward_kernel.cpp.o +#10 446.1 [4482/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_deconvolution.cpp.o +#10 446.8 [4483/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul_copy_utils.cpp.o +#10 446.9 [4484/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_reorders.cpp.o +#10 447.3 [4485/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_bwd.cpp.o +#10 447.6 [4486/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_uni_prelu_forward_kernel.cpp.o +#10 449.3 [4487/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/constant_cache.cpp.o +#10 449.9 [4488/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_fwd.cpp.o +#10 449.9 [4489/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_gates_reduction.cpp.o +#10 449.9 [4490/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/rnn_brgemm_utils.cpp.o +#10 449.9 [4491/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_diff_weights_peephole.cpp.o +#10 450.4 [4492/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul.cpp.o +#10 450.4 [4493/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_brgemm_transpose_single_row.cpp.o +#10 450.5 [4494/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/dnnl_shape_infer.cpp.o +#10 451.5 [4495/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_uni_lrn_kernel.cpp.o +#10 451.7 [4496/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/common.cpp.o +#10 451.7 [4497/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/shuffle/jit_uni_shuffle.cpp.o +#10 452.0 [4498/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/fusion_info.cpp.o +#10 452.9 [4499/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/utils/jit_io_helper.cpp.o +#10 453.3 [4500/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/shuffle/jit_uni_shuffle_kernel.cpp.o +#10 453.7 [4501/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/layout_propagation.cpp.o +#10 453.8 [4502/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/compile_ops.cpp.o +#10 454.2 [4503/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/constant_propagation.cpp.o +#10 455.1 [4504/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/subgraph.cpp.o +#10 456.1 [4505/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/layout_propagator.cpp.o +#10 456.3 [4506/6823] Linking CXX static library lib/libdnnl.a +#10 456.4 [4507/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/insert_ops.cpp.o +#10 458.0 [4508/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/lower.cpp.o +#10 458.8 [4509/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/memory_planning.cpp.o +#10 459.2 [4510/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/op_executable.cpp.o +#10 460.1 [4511/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/utils.cpp.o +#10 461.4 [4512/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/binary_fusion.cpp.o +#10 461.8 [4513/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/concat_fusion.cpp.o +#10 462.5 [4514/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/bn_fusion.cpp.o +#10 464.9 [4515/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/transform.cpp.o +#10 465.0 [4516/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/interpolate_fusion.cpp.o +#10 466.7 [4517/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/layernorm_fusion.cpp.o +#10 467.0 [4518/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/convtranspose_fusion.cpp.o +#10 467.9 [4519/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/eltwise_fusion.cpp.o +#10 468.2 [4520/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/quantize_fusion.cpp.o +#10 468.3 [4521/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/conv_post_ops_fusion.cpp.o +#10 468.4 [4522/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/id.cpp.o +#10 468.5 [4523/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/debug.cpp.o +#10 468.8 [4524/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/conv_block_fusion.cpp.o +#10 468.9 [4525/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/dnnl_backend.cpp.o +#10 469.5 [4526/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/rw_mutex.cpp.o +#10 470.1 [4527/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/reduction_fusion.cpp.o +#10 470.5 [4528/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/utils.cpp.o +#10 470.6 [4529/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/pool_fusion.cpp.o +#10 470.8 [4530/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/shuffle_fusion.cpp.o +#10 471.3 [4531/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/reorder_fusion.cpp.o +#10 471.8 [4532/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/allocator.cpp.o +#10 472.0 [4533/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/engine.cpp.o +#10 472.4 [4534/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/verbose.cpp.o +#10 472.6 [4535/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/backend.cpp.o +#10 472.7 [4536/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/pbuilder.cpp.o +#10 472.8 [4537/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/nested_matcher.cpp.o +#10 473.0 [4538/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/pass_manager.cpp.o +#10 473.0 [4539/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/fake/CMakeFiles/dnnl_graph_backend_fake.dir/fake_backend.cpp.o +#10 473.8 [4540/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/logical_tensor.cpp.o +#10 473.9 [4541/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/matmul_fusion.cpp.o +#10 474.0 [4542/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/softmax_fusion.cpp.o +#10 474.5 [4543/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/op.cpp.o +#10 475.0 [4544/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/sum_fusion.cpp.o +#10 475.1 [4545/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/tensor.cpp.o +#10 475.2 [4546/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_impl.cpp.o +#10 475.4 [4547/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_cache.cpp.o +#10 475.5 [4548/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/stream.cpp.o +#10 475.5 [4549/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/type_constraint.cpp.o +#10 475.8 [4550/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/value.cpp.o +#10 476.0 [4551/6823] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o +#10 476.4 [4552/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_hashing.cpp.o +#10 476.5 [4553/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/graph.cpp.o +#10 476.6 [4554/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition.cpp.o +#10 477.1 [4555/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o +#10 477.4 [4556/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/shape_infer.cpp.o +#10 478.0 [4557/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/RoctracerLogger.cpp.o +#10 478.0 In file included from ../third_party/kineto/libkineto/src/RoctracerLogger.h:22, +#10 478.0 from ../third_party/kineto/libkineto/src/RoctracerLogger.cpp:9: +#10 478.0 /opt/rocm/include/roctracer/roctracer_hcc.h:22:96: note: ‘#pragma message: This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.’ +#10 478.0 22 | "This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.") +#10 478.0 | ^ +#10 479.2 [4558/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o +#10 479.6 [4559/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o +#10 479.7 [4560/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o +#10 479.7 [4561/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o +#10 479.7 In file included from ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:12, +#10 479.7 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.h:21, +#10 479.7 from ../third_party/kineto/libkineto/src/DaemonConfigLoader.cpp:16: +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryPeekMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:155:33: required from here +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:174:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 479.7 174 | throw std::runtime_error(std::strerror(errno)); +#10 479.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘const char* dynolog::ipcfabric::EndPoint::getName(const TCtxt&) const [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:170:43: required from here +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:185:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 479.7 185 | throw std::invalid_argument( +#10 479.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 186 | "Unexpected socket name: " + std::string(ctxt.msg_name.sun_path) + +#10 479.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 187 | ". Expected to start with " + std::string(socket_dir)); +#10 479.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:192:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 479.7 192 | throw std::invalid_argument( +#10 479.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 193 | "Expected abstract socket, got " + +#10 479.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 194 | std::string(ctxt.msg_name.sun_path)); +#10 479.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryRcvMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:178:34: required from here +#10 479.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:160:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 479.7 160 | throw std::runtime_error(std::strerror(errno)); +#10 479.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 479.7 [4562/6823] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o +#10 479.8 [4563/6823] Linking CXX static library lib/libfmt.a +#10 480.2 [4564/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o +#10 481.1 [4565/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o +#10 481.2 [4566/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o +#10 481.7 [4567/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o +#10 482.0 [4568/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o +#10 482.0 In file included from ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:12, +#10 482.0 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.h:21, +#10 482.0 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.cpp:11: +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryPeekMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:155:33: required from here +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:174:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 482.0 174 | throw std::runtime_error(std::strerror(errno)); +#10 482.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘const char* dynolog::ipcfabric::EndPoint::getName(const TCtxt&) const [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:170:43: required from here +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:185:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 482.0 185 | throw std::invalid_argument( +#10 482.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 186 | "Unexpected socket name: " + std::string(ctxt.msg_name.sun_path) + +#10 482.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 187 | ". Expected to start with " + std::string(socket_dir)); +#10 482.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:192:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 482.0 192 | throw std::invalid_argument( +#10 482.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 193 | "Expected abstract socket, got " + +#10 482.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 194 | std::string(ctxt.msg_name.sun_path)); +#10 482.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryRcvMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:178:34: required from here +#10 482.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:160:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 482.0 160 | throw std::runtime_error(std::strerror(errno)); +#10 482.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 482.1 [4569/6823] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o +#10 482.5 [4570/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o +#10 482.8 [4571/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o +#10 483.6 [4572/6823] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o +#10 484.0 [4573/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/RoctracerActivityApi.cpp.o +#10 484.0 In file included from ../third_party/kineto/libkineto/src/RoctracerLogger.h:22, +#10 484.0 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:15: +#10 484.0 /opt/rocm/include/roctracer/roctracer_hcc.h:22:96: note: ‘#pragma message: This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.’ +#10 484.0 22 | "This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.") +#10 484.0 | ^ +#10 484.0 In file included from ../third_party/fmt/include/fmt/format.h:48, +#10 484.0 from ../third_party/kineto/libkineto/include/GenericTraceActivity.h:11, +#10 484.0 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.h:22, +#10 484.0 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:14: +#10 484.0 ../third_party/fmt/include/fmt/core.h: In substitution of ‘template using mapped_type_constant = fmt::v9::detail::type_constant().map(declval())), typename Context::char_type> [with T = hipMemcpyKind; Context = fmt::v9::basic_format_context]’: +#10 484.0 ../third_party/fmt/include/fmt/core.h:1729:68: required from ‘constexpr long long unsigned int fmt::v9::detail::encode_types() [with Context = fmt::v9::basic_format_context; Arg = hipMemcpyKind; Args = {}]’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1730:41: required from ‘constexpr long long unsigned int fmt::v9::detail::encode_types() [with Context = fmt::v9::basic_format_context; Arg = std::__cxx11::basic_string; Args = {hipMemcpyKind}]’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1886:58: required from ‘constexpr const long long unsigned int fmt::v9::format_arg_store, std::__cxx11::basic_string, std::allocator >, hipMemcpyKind>::desc’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1999:63: required from ‘constexpr fmt::v9::basic_format_args::basic_format_args(const fmt::v9::format_arg_store&) [with Args = {std::__cxx11::basic_string, std::allocator >, hipMemcpyKind}; Context = fmt::v9::basic_format_context]’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:3206:17: required from ‘std::string fmt::v9::format(fmt::v9::format_string, T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; std::string = std::__cxx11::basic_string; fmt::v9::format_string = fmt::v9::basic_format_string, std::allocator >&, const hipMemcpyKind&>]’ +#10 484.0 ../third_party/kineto/libkineto/include/GenericTraceActivity.h:95:36: required from ‘void libkineto::GenericTraceActivity::addMetadata(const string&, const ValType&) [with ValType = hipMemcpyKind; std::string = std::__cxx11::basic_string]’ +#10 484.0 ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:167:18: required from here +#10 484.0 ../third_party/fmt/include/fmt/core.h:1530:53: warning: ‘constexpr decltype (declval >().map(static_cast >(val))) fmt::v9::detail::arg_mapper::map(const T&) [with T = hipMemcpyKind; typename std::enable_if<((((std::is_enum::value && std::is_convertible::value) && (! fmt::v9::detail::has_format_as::value)) && (! std::is_constructible >::value)) && (! fmt::v9::detail::has_fallback_formatter::value)), int>::type = 0; Context = fmt::v9::basic_format_context; decltype (declval >().map(static_cast >(val))) = unsigned int; fmt::v9::detail::arg_mapper = fmt::v9::detail::arg_mapper >; fmt::v9::underlying_t = unsigned int]’ is deprecated [-Wdeprecated-declarations] +#10 484.0 1530 | type_constant().map(std::declval())), +#10 484.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1470:48: note: declared here +#10 484.0 1470 | FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) +#10 484.0 | ^~~ +#10 484.0 ../third_party/fmt/include/fmt/core.h: In instantiation of ‘constexpr fmt::v9::detail::value fmt::v9::detail::make_value(T&&) [with Context = fmt::v9::basic_format_context; T = const hipMemcpyKind&]’: +#10 484.0 ../third_party/fmt/include/fmt/core.h:1777:29: required from ‘constexpr fmt::v9::detail::value fmt::v9::detail::make_arg(T&&) [with bool IS_PACKED = true; Context = fmt::v9::basic_format_context; fmt::v9::detail::type = fmt::v9::detail::type::uint_type; T = const hipMemcpyKind&; typename std::enable_if::type = 0]’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1901:77: required from ‘constexpr fmt::v9::format_arg_store::format_arg_store(T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; Context = fmt::v9::basic_format_context; Args = {std::__cxx11::basic_string, std::allocator >, hipMemcpyKind}]’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1918:31: required from ‘constexpr fmt::v9::format_arg_store::type>::type ...> fmt::v9::make_format_args(Args&& ...) [with Context = fmt::v9::basic_format_context; Args = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}]’ +#10 484.0 ../third_party/fmt/include/fmt/core.h:3206:44: required from ‘std::string fmt::v9::format(fmt::v9::format_string, T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; std::string = std::__cxx11::basic_string; fmt::v9::format_string = fmt::v9::basic_format_string, std::allocator >&, const hipMemcpyKind&>]’ +#10 484.0 ../third_party/kineto/libkineto/include/GenericTraceActivity.h:95:36: required from ‘void libkineto::GenericTraceActivity::addMetadata(const string&, const ValType&) [with ValType = hipMemcpyKind; std::string = std::__cxx11::basic_string]’ +#10 484.0 ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:167:18: required from here +#10 484.0 ../third_party/fmt/include/fmt/core.h:1735:46: warning: ‘constexpr decltype (declval >().map(static_cast >(val))) fmt::v9::detail::arg_mapper::map(const T&) [with T = hipMemcpyKind; typename std::enable_if<((((std::is_enum::value && std::is_convertible::value) && (! fmt::v9::detail::has_format_as::value)) && (! std::is_constructible >::value)) && (! fmt::v9::detail::has_fallback_formatter::value)), int>::type = 0; Context = fmt::v9::basic_format_context; decltype (declval >().map(static_cast >(val))) = unsigned int; fmt::v9::detail::arg_mapper = fmt::v9::detail::arg_mapper >; fmt::v9::underlying_t = unsigned int]’ is deprecated [-Wdeprecated-declarations] +#10 484.0 1735 | const auto& arg = arg_mapper().map(FMT_FORWARD(val)); +#10 484.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +#10 484.0 ../third_party/fmt/include/fmt/core.h:1470:48: note: declared here +#10 484.0 1470 | FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) +#10 484.0 | ^~~ +#10 484.1 [4574/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o +#10 484.1 [4575/6823] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o +#10 484.1 [4576/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o +#10 484.7 [4577/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o +#10 484.8 [4578/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o +#10 484.8 [4579/6823] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o +#10 484.8 [4580/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o +#10 485.1 [4581/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o +#10 485.3 [4582/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/op_schema.cpp.o +#10 485.5 [4583/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o +#10 485.6 [4584/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o +#10 485.6 [4585/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o +#10 485.8 [4586/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o +#10 485.8 [4587/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o +#10 485.8 [4588/6823] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o +#10 485.9 [4589/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o +#10 486.3 [4590/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o +#10 486.4 [4591/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o +#10 486.4 [4592/6823] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o +#10 486.5 [4593/6823] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o +#10 486.6 [4594/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o +#10 486.6 [4595/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o +#10 486.7 [4596/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o +#10 486.8 [4597/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o +#10 486.9 [4598/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o +#10 486.9 [4599/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o +#10 487.1 [4600/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o +#10 487.2 [4601/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o +#10 487.6 [4602/6823] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o +#10 487.7 [4603/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o +#10 487.7 [4604/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o +#10 487.7 [4605/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o +#10 487.8 [4606/6823] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o +#10 487.9 [4607/6823] Linking CXX static library lib/libkineto.a +#10 487.9 [4608/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o +#10 488.0 [4609/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o +#10 488.0 [4610/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o +#10 488.3 [4611/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o +#10 488.6 [4612/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o +#10 488.7 [4613/6823] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o +#10 488.7 [4614/6823] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o +#10 488.8 [4615/6823] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o +#10 489.0 [4616/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o +#10 489.2 [4617/6823] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o +#10 489.2 [4618/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o +#10 489.3 [4619/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o +#10 489.3 [4620/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o +#10 489.4 [4621/6823] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o +#10 489.5 [4622/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o +#10 489.5 [4623/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o +#10 489.6 [4624/6823] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o +#10 489.6 [4625/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/single_op_pattern.cpp.o +#10 489.8 [4626/6823] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o +#10 489.8 [4627/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o +#10 489.9 [4628/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o +#10 490.0 [4629/6823] Linking CXX static library lib/libdnnl_graph.a +#10 490.1 [4630/6823] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o +#10 490.1 [4631/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o +#10 490.1 [4632/6823] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o +#10 490.2 [4633/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o +#10 490.2 [4634/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o +#10 490.2 [4635/6823] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o +#10 490.3 [4636/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o +#10 490.3 [4637/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o +#10 490.4 [4638/6823] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o +#10 490.5 [4639/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o +#10 490.5 [4640/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o +#10 490.6 [4641/6823] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o +#10 490.6 [4642/6823] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o +#10 490.7 [4643/6823] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o +#10 490.8 [4644/6823] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o +#10 491.0 [4645/6823] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o +#10 491.1 [4646/6823] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o +#10 491.2 [4647/6823] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o +#10 491.3 [4648/6823] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o +#10 491.9 [4649/6823] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o +#10 492.5 [4650/6823] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/core/StreamGuard_test.cpp.o +#10 492.6 [4651/6823] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o +#10 492.8 [4652/6823] Building CXX object c10/test/CMakeFiles/c10_SymInt_test.dir/core/SymInt_test.cpp.o +#10 492.9 [4653/6823] Building CXX object c10/test/CMakeFiles/c10_Bitset_test.dir/util/Bitset_test.cpp.o +#10 493.0 [4654/6823] Building CXX object c10/test/CMakeFiles/c10_CompileTimeFunctionPointer_test.dir/core/CompileTimeFunctionPointer_test.cpp.o +#10 493.2 [4655/6823] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/util/registry_test.cpp.o +#10 493.4 [4656/6823] Building CXX object c10/test/CMakeFiles/c10_tempfile_test.dir/util/tempfile_test.cpp.o +#10 494.2 [4657/6823] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/core/impl/InlineStreamGuard_test.cpp.o +#10 494.3 [4658/6823] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o +#10 494.4 [4659/6823] Building CXX object c10/test/CMakeFiles/c10_complex_math_test.dir/util/complex_math_test.cpp.o +#10 494.7 [4660/6823] Building CXX object c10/test/CMakeFiles/c10_complex_test.dir/util/complex_test.cpp.o +#10 494.7 In file included from ../c10/test/util/complex_test.cpp:1: +#10 494.7 ../c10/test/util/complex_test_common.h: In member function ‘virtual void memory::TestMemory_ReinterpretCast_Test::TestBody()’: +#10 494.7 ../c10/test/util/complex_test_common.h:38:25: warning: ‘z’ is used uninitialized [-Wuninitialized] +#10 494.7 38 | c10::complex zz = *reinterpret_cast*>(&z); +#10 494.7 | ^~ +#10 494.7 ../c10/test/util/complex_test_common.h:37:25: note: ‘z’ declared here +#10 494.7 37 | std::complex z(1, 2); +#10 494.7 | ^ +#10 495.3 [4661/6823] Building CXX object c10/test/CMakeFiles/c10_ThreadLocal_test.dir/util/ThreadLocal_test.cpp.o +#10 495.4 [4662/6823] Building CXX object c10/test/CMakeFiles/c10_Device_test.dir/core/Device_test.cpp.o +#10 495.7 [4663/6823] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/core/DeviceGuard_test.cpp.o +#10 495.8 [4664/6823] Building CXX object c10/test/CMakeFiles/c10_SizesAndStrides_test.dir/core/impl/SizesAndStrides_test.cpp.o +#10 496.0 [4665/6823] Building CXX object c10/test/CMakeFiles/c10_C++17_test.dir/util/C++17_test.cpp.o +#10 496.0 [4666/6823] Building CXX object c10/test/CMakeFiles/c10_DeadlockDetection_test.dir/util/DeadlockDetection_test.cpp.o +#10 496.0 [4667/6823] Building CXX object c10/test/CMakeFiles/c10_ConstexprCrc_test.dir/util/ConstexprCrc_test.cpp.o +#10 496.4 [4668/6823] Building CXX object c10/test/CMakeFiles/c10_Half_test.dir/util/Half_test.cpp.o +#10 496.8 [4669/6823] Building CXX object c10/test/CMakeFiles/c10_DispatchKeySet_test.dir/core/DispatchKeySet_test.cpp.o +#10 496.9 [4670/6823] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o +#10 497.1 [4671/6823] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o +#10 497.2 [4672/6823] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o +#10 497.3 [4673/6823] Building CXX object c10/benchmark/CMakeFiles/c10_intrusive_ptr_benchmark.dir/intrusive_ptr_benchmark.cpp.o +#10 497.4 [4674/6823] Linking CXX shared library lib/libc10.so +#10 497.6 [4675/6823] Building CXX object c10/test/CMakeFiles/c10_Synchronized_test.dir/util/Synchronized_test.cpp.o +#10 497.9 [4676/6823] Linking CXX executable bin/c10_intrusive_ptr_test +#10 497.9 [4677/6823] Building CXX object c10/test/CMakeFiles/c10_LeftRight_test.dir/util/LeftRight_test.cpp.o +#10 498.0 [4678/6823] Building CXX object c10/test/CMakeFiles/c10_TypeIndex_test.dir/util/TypeIndex_test.cpp.o +#10 498.0 [4679/6823] Linking CXX executable bin/c10_flags_test +#10 498.0 [4680/6823] Building CXX object c10/test/CMakeFiles/c10_ordered_preserving_dict_test.dir/util/ordered_preserving_dict_test.cpp.o +#10 498.0 [4681/6823] Linking CXX executable bin/c10_exception_test +#10 498.1 [4682/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPException.cpp.o +#10 498.1 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 498.1 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 498.1 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 498.1 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 498.1 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 498.1 [4683/6823] Linking CXX executable bin/c10_logging_test +#10 498.2 [4684/6823] Linking CXX executable bin/c10_bfloat16_test +#10 498.2 [4685/6823] Linking CXX executable bin/c10_irange_test +#10 498.2 [4686/6823] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o +#10 498.2 [4687/6823] Linking CXX executable bin/c10_string_view_test +#10 498.3 [4688/6823] Linking CXX executable bin/c10_accumulate_test +#10 498.3 [4689/6823] Linking CXX executable bin/c10_registry_test +#10 498.3 [4690/6823] Linking CXX executable bin/c10_either_test +#10 498.4 [4691/6823] Linking CXX executable bin/c10_InlineDeviceGuard_test +#10 498.4 [4692/6823] Linking CXX executable bin/c10_complex_math_test +#10 498.5 [4693/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPDeviceAssertionHost.cpp.o +#10 498.5 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 498.5 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 498.5 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 498.5 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 498.5 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 498.5 [4694/6823] Linking CXX executable bin/c10_InlineStreamGuard_test +#10 498.5 [4695/6823] Linking CXX executable bin/c10_Bitset_test +#10 498.5 [4696/6823] Linking CXX executable bin/c10_SymInt_test +#10 498.5 [4697/6823] Linking CXX executable bin/c10_complex_test +#10 498.6 [4698/6823] Linking CXX executable bin/c10_tempfile_test +#10 498.6 [4699/6823] Linking CXX executable bin/c10_StreamGuard_test +#10 498.6 [4700/6823] Linking CXX executable bin/c10_CompileTimeFunctionPointer_test +#10 498.7 [4701/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPFunctions.cpp.o +#10 498.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 498.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 498.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 498.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 498.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 498.7 [4702/6823] Linking CXX executable bin/c10_ordered_preserving_dict_test +#10 498.7 [4703/6823] Linking CXX executable bin/c10_typeid_test +#10 498.7 [4704/6823] Linking CXX executable bin/c10_DispatchKeySet_test +#10 498.7 [4705/6823] Linking CXX executable bin/c10_SizesAndStrides_test +#10 498.7 [4706/6823] Linking CXX executable bin/c10_ThreadLocal_test +#10 498.8 [4707/6823] Linking CXX executable bin/c10_TypeTraits_test +#10 498.8 [4708/6823] Linking CXX executable bin/c10_DeadlockDetection_test +#10 498.8 [4709/6823] Linking CXX executable bin/c10_DeviceGuard_test +#10 498.9 [4710/6823] Linking CXX executable bin/c10_Half_test +#10 498.9 [4711/6823] Linking CXX executable bin/c10_Device_test +#10 498.9 [4712/6823] Linking CXX executable bin/c10_C++17_test +#10 498.9 [4713/6823] Linking CXX executable bin/c10_LeftRight_test +#10 498.9 [4714/6823] Linking CXX executable bin/c10_Array_test +#10 498.9 [4715/6823] Linking CXX executable bin/c10_ConstexprCrc_test +#10 499.0 [4716/6823] Linking CXX executable bin/c10_Synchronized_test +#10 499.0 [4717/6823] Linking CXX executable bin/c10_TypeList_test +#10 499.0 [4718/6823] Linking CXX executable bin/c10_TypeIndex_test +#10 499.0 [4719/6823] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o +#10 499.0 [4720/6823] Linking CXX executable bin/c10_intrusive_ptr_benchmark +#10 499.1 [4721/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPMallocAsyncAllocator.cpp.o +#10 499.1 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 499.1 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 499.1 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 499.1 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 499.1 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 499.1 [4722/6823] Linking C shared library lib/libtorch_global_deps.so +#10 499.2 [4723/6823] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o +#10 499.2 [4724/6823] Linking C executable sleef/bin/mkalias +#10 499.3 [4725/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPMiscFunctions.cpp.o +#10 499.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 499.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 499.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 499.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 499.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 499.3 [4726/6823] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o +#10 499.3 [4727/6823] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o +#10 499.4 [4728/6823] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o +#10 499.4 [4729/6823] Linking C executable sleef/bin/mkdisp +#10 499.4 [4730/6823] Generating dispsse.c +#10 499.4 [4731/6823] Linking C executable sleef/bin/mkrename_gnuabi +#10 499.4 [4732/6823] Generating alias_avx512f.h +#10 499.4 [4733/6823] Linking C executable sleef/bin/mkrename +#10 499.4 [4734/6823] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o +#10 499.4 [4735/6823] Generating include/renameavx512f.h +#10 499.4 Generating renameavx512f.h: mkrename finz_ 8 16 avx512f +#10 499.4 [4736/6823] Generating dispavx.c +#10 499.4 [4737/6823] Generating include/renameavx512fnofma.h +#10 499.4 Generating renameavx512fnofma.h: mkrename cinz_ 8 16 avx512fnofma +#10 499.5 [4738/6823] Linking C executable sleef/bin/mkmasked_gnuabi +#10 499.5 [4739/6823] Generating include/renameavx.h +#10 499.5 Generating renameavx.h: mkrename cinz_ 4 8 avx +#10 499.5 [4740/6823] Generating include/renameavx2128.h +#10 499.5 Generating renameavx2128.h: mkrename finz_ 2 4 avx2128 +#10 499.5 [4741/6823] Generating include/renamefma4.h +#10 499.5 Generating renamefma4.h: mkrename finz_ 4 8 fma4 +#10 499.5 [4742/6823] Generating include/renameavx2.h +#10 499.5 Generating renameavx2.h: mkrename finz_ 4 8 avx2 +#10 499.6 [4743/6823] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o +#10 499.9 [4744/6823] Building CXX object caffe2/CMakeFiles/caffe2_nvrtc.dir/__/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp.o +#10 499.9 In file included from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 499.9 111 | _(hipCtxGetCurrent) \ +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:119:39: note: in definition of macro ‘CREATE_MEMBER’ +#10 499.9 119 | #define CREATE_MEMBER(name) decltype(&name) name; +#10 499.9 | ^~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:120:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 499.9 120 | AT_FORALL_NVRTC(CREATE_MEMBER) +#10 499.9 | ^~~~~~~~~~~~~~~ +#10 499.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 499.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 499.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 499.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 In file included from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 499.9 111 | _(hipCtxGetCurrent) \ +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:119:39: note: in definition of macro ‘CREATE_MEMBER’ +#10 499.9 119 | #define CREATE_MEMBER(name) decltype(&name) name; +#10 499.9 | ^~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:120:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 499.9 120 | AT_FORALL_NVRTC(CREATE_MEMBER) +#10 499.9 | ^~~~~~~~~~~~~~~ +#10 499.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 499.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 499.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 499.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp: In function ‘at::cuda::NVRTC* at::cuda::load_nvrtc()’: +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 499.9 111 | _(hipCtxGetCurrent) \ +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:9:42: note: in definition of macro ‘CREATE_ASSIGN’ +#10 499.9 9 | #define CREATE_ASSIGN(name) self->name = name; +#10 499.9 | ^~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:10:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 499.9 10 | AT_FORALL_NVRTC(CREATE_ASSIGN) +#10 499.9 | ^~~~~~~~~~~~~~~ +#10 499.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 499.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 499.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 499.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 499.9 111 | _(hipCtxGetCurrent) \ +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:9:42: note: in definition of macro ‘CREATE_ASSIGN’ +#10 499.9 9 | #define CREATE_ASSIGN(name) self->name = name; +#10 499.9 | ^~~~ +#10 499.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:10:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 499.9 10 | AT_FORALL_NVRTC(CREATE_ASSIGN) +#10 499.9 | ^~~~~~~~~~~~~~~ +#10 499.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 499.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 499.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 499.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 499.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 499.9 | ^~~~~~~~~~~~~~~~ +#10 500.1 [4745/6823] Linking CXX shared library lib/libcaffe2_nvrtc.so +#10 500.2 [4746/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/impl/HIPTest.cpp.o +#10 500.2 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 500.2 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 500.2 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 500.2 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 500.2 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 500.2 [4747/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512fnofma.dir/sleefsimdsp.c.o +#10 500.4 [4748/6823] Building CXX object c10/hip/test/CMakeFiles/c10_hip_HIPTest.dir/impl/HIPTest.cpp.o +#10 500.6 [4749/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/impl/HIPGuardImpl.cpp.o +#10 500.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 500.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 500.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 500.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 500.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 500.6 [4750/6823] Generating include/renamesse4.h +#10 500.6 Generating renamesse4.h: mkrename cinz_ 2 4 sse4 +#10 500.7 [4751/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512fnofma.dir/sleefsimddp.c.o +#10 501.0 [4752/6823] Building CXX object c10/test/CMakeFiles/c10_optional_test.dir/util/optional_test.cpp.o +#10 501.0 [4753/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2.dir/sleefsimdsp.c.o +#10 501.1 [4754/6823] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o +#10 501.2 [4755/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPStream.cpp.o +#10 501.2 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 501.2 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 501.2 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 501.2 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 501.2 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 501.2 [4756/6823] Linking CXX executable bin/c10_optional_test +#10 501.2 [4757/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512fnofma.dir/sleefsimdsp.c.o +#10 501.3 [4758/6823] Generating include/renamecuda.h +#10 501.3 Generating renamecuda.h: mkrename finz_ 1 1 cuda +#10 501.3 [4759/6823] Generating include/renamepurec_scalar.h +#10 501.3 Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec +#10 501.4 [4760/6823] Generating include/renamepurecfma_scalar.h +#10 501.4 Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma +#10 501.4 [4761/6823] Linking CXX executable bin/c10_Metaprogramming_test +#10 501.4 [4762/6823] Generating include/renamesse2.h +#10 501.4 Generating renamesse2.h: mkrename cinz_ 2 4 sse2 +#10 501.5 [4763/6823] Generating ../../../include/sleef.h +#10 501.5 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ +#10 501.5 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ sse2 +#10 501.5 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ sse4 +#10 501.5 Generating sleef.h: mkrename cinz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ +#10 501.5 Generating sleef.h: mkrename cinz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ avx +#10 501.5 Generating sleef.h: mkrename finz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ fma4 +#10 501.5 Generating sleef.h: mkrename finz_ 4 8 __m256d __m256 __m128i __m256i __AVX__ avx2 +#10 501.5 Generating sleef.h: mkrename finz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ avx2128 +#10 501.5 Generating sleef.h: mkrename finz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ +#10 501.5 Generating sleef.h: mkrename finz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ avx512f +#10 501.5 Generating sleef.h: mkrename cinz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ avx512fnofma +#10 501.5 Generating sleef.h: mkrename cinz_ 1 1 double float int32_t int32_t __STDC__ purec +#10 501.5 Generating sleef.h: mkrename finz_ 1 1 double float int32_t int32_t FP_FAST_FMA purecfma +#10 501.5 [4764/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2.dir/sleefsimddp.c.o +#10 501.5 [4765/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse4.dir/sleefsimdsp.c.o +#10 501.5 [4766/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o +#10 501.6 [4767/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512fnofma.dir/sleefsimddp.c.o +#10 501.8 [4768/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse4.dir/sleefsimddp.c.o +#10 501.9 [4769/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o +#10 502.1 [4770/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o +#10 502.2 [4771/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o +#10 502.3 [4772/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o +#10 502.4 [4773/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o +#10 502.6 [4774/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2128.dir/sleefsimdsp.c.o +#10 502.9 [4775/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o +#10 502.9 [4776/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o +#10 503.0 [4777/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o +#10 503.0 [4778/6823] Generating renamedsp128.h +#10 503.1 [4779/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2128.dir/sleefsimddp.c.o +#10 503.2 [4780/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o +#10 503.5 [4781/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o +#10 503.6 [4782/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx.dir/sleefsimdsp.c.o +#10 503.7 [4783/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o +#10 503.7 [4784/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o +#10 503.7 [4785/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o +#10 504.0 [4786/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx.dir/sleefsimddp.c.o +#10 504.3 [4787/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetfma4.dir/sleefsimdsp.c.o +#10 504.4 [4788/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetfma4.dir/sleefsimddp.c.o +#10 504.7 [4789/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimdsp.c.o +#10 504.9 [4790/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o +#10 505.0 [4791/6823] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o +#10 505.0 [4792/6823] Generating renamedsp256.h +#10 505.2 [4793/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512f.dir/sleefsimdsp.c.o +#10 505.3 [4794/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512f.dir/sleefsimddp.c.o +#10 505.3 [4795/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimddp.c.o +#10 505.3 [4796/6823] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o +#10 505.5 [4797/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o +#10 505.5 [4798/6823] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o +#10 505.6 [4799/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o +#10 505.7 [4800/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o +#10 505.9 [4801/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o +#10 506.0 [4802/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o +#10 506.0 [4803/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o +#10 506.0 [4804/6823] Linking C executable sleef/bin/addSuffix +#10 506.1 [4805/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512f.dir/sleefsimdsp.c.o +#10 506.2 [4806/6823] Running C++/Python protocol buffer compiler on /pytorch/caffe2/proto/torch.proto +#10 506.2 [4807/6823] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o +#10 506.2 [4808/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_AVX2.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 506.3 [4809/6823] Running C++/Python protocol buffer compiler on /pytorch/caffe2/proto/caffe2.proto +#10 506.3 [4810/6823] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o +#10 506.5 [4811/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_DEFAULT.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 506.5 [4812/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512f.dir/sleefsimddp.c.o +#10 506.6 [4813/6823] Generating ../../../torch/utils/data/datapipes/datapipe.pyi +#10 506.7 [4814/6823] Stringify NVFUSER runtime source file +#10 506.8 [4815/6823] Stringify NVFUSER runtime source file +#10 506.9 [4816/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o +#10 506.9 [4817/6823] Generating ../../../torch/version.py +#10 506.9 [4818/6823] Stringify NVFUSER runtime source file +#10 506.9 [4819/6823] Stringify NVFUSER runtime source file +#10 507.0 [4820/6823] Stringify NVFUSER runtime source file +#10 507.0 [4821/6823] Stringify NVFUSER runtime source file +#10 507.1 [4822/6823] Stringify NVFUSER runtime source file +#10 507.1 [4823/6823] Stringify NVFUSER runtime source file +#10 507.1 [4824/6823] Stringify NVFUSER runtime source file +#10 507.1 [4825/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o +#10 507.1 [4826/6823] Stringify NVFUSER runtime source file +#10 507.1 [4827/6823] Stringify NVFUSER runtime source file +#10 507.2 [4828/6823] Stringify NVFUSER runtime source file +#10 507.2 [4829/6823] Stringify NVFUSER runtime source file +#10 507.2 [4830/6823] Stringify NVFUSER runtime source file +#10 507.2 [4831/6823] Stringify NVFUSER runtime source file +#10 507.2 [4832/6823] Stringify NVFUSER runtime source file +#10 507.2 [4833/6823] Stringify NVFUSER runtime source file +#10 507.3 [4834/6823] Stringify NVFUSER runtime source file +#10 507.3 [4835/6823] Stringify NVFUSER runtime source file +#10 507.3 [4836/6823] Stringify NVFUSER runtime source file +#10 507.3 [4837/6823] Stringify NVFUSER runtime source file +#10 507.3 [4838/6823] Stringify NVFUSER runtime source file +#10 507.3 [4839/6823] Stringify NVFUSER runtime source file +#10 507.3 [4840/6823] Stringify NVFUSER runtime source file +#10 507.4 [4841/6823] Stringify NVFUSER runtime source file +#10 507.4 [4842/6823] Stringify NVFUSER runtime source file +#10 507.4 [4843/6823] Stringify NVFUSER runtime source file +#10 507.4 [4844/6823] Stringify NVFUSER runtime source file +#10 507.4 [4845/6823] Stringify NVFUSER runtime source file +#10 507.4 [4846/6823] Stringify NVFUSER runtime source file +#10 507.8 [4847/6823] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o +#10 507.8 [4848/6823] Linking C static library sleef/lib/libsleef.a +#10 508.1 [4849/6823] Generating sources +#10 508.8 [4850/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPCachingAllocator.cpp.o +#10 508.8 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 508.8 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 508.8 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 508.8 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 508.8 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 508.9 [4851/6823] Linking CXX shared library lib/libc10_hip.so +#10 509.0 [4852/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_catches_thread_and_block_and_device +#10 509.0 [4853/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_from_2_processes +#10 509.0 [4854/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_catches_stream +#10 509.0 [4855/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_same_block +#10 509.0 [4856/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_blocks_and_threads +#10 509.1 [4857/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_1_var_test +#10 509.1 [4858/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_multiple_blocks +#10 509.2 [4859/6823] Linking CXX executable bin/c10_hip_HIPTest +#10 509.3 [4860/6823] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o +#10 509.9 [4861/6823] Generating ../../torch/csrc/autograd/generated/Functions.cpp, ../../torch/csrc/autograd/generated/VariableType_0.cpp, ../../torch/csrc/autograd/generated/VariableType_1.cpp, ../../torch/csrc/autograd/generated/VariableType_2.cpp, ../../torch/csrc/autograd/generated/VariableType_3.cpp, ../../torch/csrc/autograd/generated/VariableType_4.cpp, ../../torch/csrc/autograd/generated/TraceType_0.cpp, ../../torch/csrc/autograd/generated/TraceType_1.cpp, ../../torch/csrc/autograd/generated/TraceType_2.cpp, ../../torch/csrc/autograd/generated/TraceType_3.cpp, ../../torch/csrc/autograd/generated/TraceType_4.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, ../../torch/csrc/lazy/generated/LazyNativeFunctions.cpp, ../../torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, ../../torch/csrc/lazy/generated/RegisterLazy.cpp, ../../torch/csrc/autograd/generated/Functions.h, ../../torch/csrc/autograd/generated/variable_factories.h, ../../torch/csrc/autograd/generated/VariableType.h, ../../torch/csrc/lazy/generated/LazyIr.h, ../../torch/csrc/lazy/generated/LazyNonNativeIr.h, ../../torch/csrc/lazy/generated/LazyNativeFunctions.h, ../../torch/csrc/autograd/generated/python_functions_0.cpp, ../../torch/csrc/autograd/generated/python_functions_1.cpp, ../../torch/csrc/autograd/generated/python_functions_2.cpp, ../../torch/csrc/autograd/generated/python_functions_3.cpp, ../../torch/csrc/autograd/generated/python_functions_4.cpp, ../../torch/csrc/autograd/generated/python_variable_methods.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_0.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_1.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_2.cpp, ../../torch/csrc/autograd/generated/python_nn_functions.cpp, ../../torch/csrc/autograd/generated/python_fft_functions.cpp, ../../torch/csrc/autograd/generated/python_linalg_functions.cpp, ../../torch/csrc/autograd/generated/python_nested_functions.cpp, ../../torch/csrc/autograd/generated/python_sparse_functions.cpp, ../../torch/csrc/autograd/generated/python_special_functions.cpp, ../../torch/csrc/autograd/generated/python_return_types.cpp, ../../torch/csrc/autograd/generated/python_enum_tag.cpp, ../../torch/csrc/autograd/generated/python_functions.h, ../../torch/testing/_internal/generated/annotated_fn_args.py +#10 510.1 [4862/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o +#10 510.9 [4863/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o +#10 512.2 [4864/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o +#10 512.3 [4865/6823] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o +#10 513.0 [4866/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o +#10 513.2 [4867/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o +#10 513.3 [4868/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o +#10 513.9 [4869/6823] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi +#10 514.6 [4870/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o +#10 516.2 [4871/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o +#10 516.2 [4872/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o +#10 517.2 [4873/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o +#10 517.4 [4874/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o +#10 518.0 [4875/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o +#10 518.4 [4876/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o +#10 519.1 [4877/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o +#10 519.2 [4878/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNativeTBB.cpp.o +#10 520.0 [4879/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o +#10 520.1 [4880/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o +#10 520.9 [4881/6823] Building CXX object c10/test/CMakeFiles/c10_SmallVectorTest.dir/util/SmallVectorTest.cpp.o +#10 521.0 [4882/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o +#10 521.1 [4883/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o +#10 521.2 [4884/6823] Linking CXX executable bin/c10_SmallVectorTest +#10 521.2 [4885/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o +#10 521.3 [4886/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o +#10 521.8 [4887/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o +#10 522.0 [4888/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o +#10 522.9 [4889/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o +#10 523.2 [4890/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o +#10 524.0 [4891/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o +#10 525.9 [4892/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o +#10 526.4 [4893/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o +#10 526.4 [4894/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o +#10 526.7 [4895/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o +#10 526.7 In file included from ../c10/core/ScalarType.h:3, +#10 526.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 526.7 from ../aten/src/ATen/Dispatch.h:3, +#10 526.7 from ../aten/src/ATen/ScalarOps.cpp:2: +#10 526.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 526.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 526.7 37 | res = *tempRes; +#10 526.7 | ~~~~^~~~~~~~~~ +#10 526.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 526.7 28 | uint32_t tmp = src; +#10 526.7 | ^~~ +#10 527.0 [4896/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o +#10 528.1 [4897/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o +#10 528.2 [4898/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o +#10 529.4 [4899/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o +#10 530.1 [4900/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o +#10 531.6 [4901/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o +#10 531.7 [4902/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o +#10 531.7 [4903/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorUtils.cpp.o +#10 531.9 [4904/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o +#10 531.9 [4905/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o +#10 532.5 [4906/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o +#10 532.6 [4907/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o +#10 532.8 [4908/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o +#10 532.8 [4909/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o +#10 532.9 [4910/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o +#10 533.7 [4911/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o +#10 534.0 [4912/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o +#10 534.0 [4913/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o +#10 534.3 [4914/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o +#10 534.3 [4915/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/ORTHooksInterface.cpp.o +#10 534.8 [4916/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o +#10 538.3 [4917/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o +#10 538.3 In file included from ../c10/core/ScalarType.h:3, +#10 538.3 from ../c10/core/StorageImpl.h:4, +#10 538.3 from ../c10/core/Storage.h:3, +#10 538.3 from ../c10/core/TensorImpl.h:8, +#10 538.3 from ../c10/core/GeneratorImpl.h:8, +#10 538.3 from ../aten/src/ATen/core/Generator.h:22, +#10 538.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 538.3 from ../aten/src/ATen/Context.h:3, +#10 538.3 from ../aten/src/ATen/Utils.cpp:1: +#10 538.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 538.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 538.3 37 | res = *tempRes; +#10 538.3 | ~~~~^~~~~~~~~~ +#10 538.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 538.3 28 | uint32_t tmp = src; +#10 538.3 | ^~~ +#10 538.8 [4918/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o +#10 539.1 [4919/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o +#10 540.8 [4920/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o +#10 547.3 [4921/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o +#10 547.7 [4922/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o +#10 548.4 [4923/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o +#10 550.1 [4924/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o +#10 550.2 [4925/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o +#10 551.6 [4926/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o +#10 552.1 [4927/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o +#10 553.3 [4928/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o +#10 553.3 [4929/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o +#10 555.2 [4930/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o +#10 556.9 [4931/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o +#10 557.6 [4932/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o +#10 557.7 [4933/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o +#10 559.2 [4934/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o +#10 561.7 [4935/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o +#10 563.8 [4936/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o +#10 563.8 [4937/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o +#10 565.0 [4938/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o +#10 565.6 [4939/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o +#10 565.9 [4940/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o +#10 566.0 [4941/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o +#10 566.2 [4942/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o +#10 566.3 [4943/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o +#10 568.5 [4944/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o +#10 569.1 [4945/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o +#10 569.1 [4946/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o +#10 569.4 [4947/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o +#10 569.9 [4948/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o +#10 570.0 [4949/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o +#10 570.3 [4950/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o +#10 570.9 [4951/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o +#10 570.9 [4952/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o +#10 572.7 [4953/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o +#10 573.1 [4954/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o +#10 573.6 [4955/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o +#10 573.7 [4956/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o +#10 573.9 [4957/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o +#10 574.0 [4958/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o +#10 574.3 [4959/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o +#10 575.0 [4960/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o +#10 575.5 [4961/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o +#10 576.3 [4962/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o +#10 576.8 [4963/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o +#10 576.8 [4964/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o +#10 576.9 [4965/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o +#10 577.3 [4966/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o +#10 577.8 [4967/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o +#10 577.8 [4968/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o +#10 578.4 [4969/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o +#10 578.6 [4970/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o +#10 578.8 [4971/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o +#10 578.9 [4972/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o +#10 579.4 [4973/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o +#10 579.5 [4974/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o +#10 580.8 [4975/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o +#10 581.7 [4976/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o +#10 582.3 [4977/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_AVX2.dir/__/aten/src/ATen/test/vec_test_all_types.cpp.o +#10 582.6 [4978/6823] Linking CXX executable bin/vec_test_all_types_AVX2 +#10 583.0 [4979/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o +#10 583.4 [4980/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_DEFAULT.dir/__/aten/src/ATen/test/vec_test_all_types.cpp.o +#10 583.6 [4981/6823] Linking CXX executable bin/vec_test_all_types_DEFAULT +#10 583.8 [4982/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o +#10 584.3 [4983/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o +#10 585.5 [4984/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o +#10 586.2 [4985/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o +#10 586.2 [4986/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o +#10 586.5 [4987/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o +#10 587.1 [4988/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o +#10 587.2 [4989/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o +#10 587.3 [4990/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o +#10 587.5 [4991/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o +#10 587.7 [4992/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o +#10 588.2 [4993/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o +#10 588.6 [4994/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o +#10 588.9 [4995/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o +#10 589.1 [4996/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o +#10 589.5 [4997/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o +#10 591.0 [4998/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o +#10 592.0 [4999/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o +#10 592.0 [5000/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o +#10 592.1 [5001/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o +#10 594.0 [5002/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o +#10 594.1 [5003/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o +#10 594.2 [5004/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o +#10 594.4 [5005/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o +#10 594.8 [5006/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o +#10 595.1 [5007/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o +#10 595.4 [5008/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o +#10 595.6 [5009/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o +#10 596.1 [5010/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o +#10 596.1 In file included from ../c10/core/ScalarType.h:3, +#10 596.1 from ../aten/src/ATen/native/BlasKernel.cpp:6: +#10 596.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 596.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 596.1 37 | res = *tempRes; +#10 596.1 | ~~~~^~~~~~~~~~ +#10 596.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 596.1 28 | uint32_t tmp = src; +#10 596.1 | ^~~ +#10 596.2 [5011/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o +#10 598.1 [5012/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o +#10 598.6 [5013/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o +#10 598.6 In file included from ../c10/core/ScalarType.h:3, +#10 598.6 from ../c10/core/Scalar.h:11, +#10 598.6 from aten/src/ATen/core/TensorBody.h:16, +#10 598.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 598.6 from ../aten/src/ATen/native/Activation.cpp:4: +#10 598.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 598.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 598.6 37 | res = *tempRes; +#10 598.6 | ~~~~^~~~~~~~~~ +#10 598.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 598.6 28 | uint32_t tmp = src; +#10 598.6 | ^~~ +#10 599.0 [5014/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o +#10 599.0 In file included from ../c10/core/ScalarType.h:3, +#10 599.0 from ../c10/core/Scalar.h:11, +#10 599.0 from aten/src/ATen/core/TensorBody.h:16, +#10 599.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 599.0 from ../aten/src/ATen/native/Blas.cpp:2: +#10 599.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 599.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 599.0 37 | res = *tempRes; +#10 599.0 | ~~~~^~~~~~~~~~ +#10 599.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 599.0 28 | uint32_t tmp = src; +#10 599.0 | ^~~ +#10 599.6 [5015/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o +#10 600.6 [5016/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o +#10 601.1 [5017/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o +#10 601.2 [5018/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o +#10 601.2 In file included from ../c10/core/ScalarType.h:3, +#10 601.2 from ../c10/core/Scalar.h:11, +#10 601.2 from aten/src/ATen/core/TensorBody.h:16, +#10 601.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 601.2 from ../aten/src/ATen/native/Bucketization.cpp:2: +#10 601.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 601.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 601.2 37 | res = *tempRes; +#10 601.2 | ~~~~^~~~~~~~~~ +#10 601.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 601.2 28 | uint32_t tmp = src; +#10 601.2 | ^~~ +#10 601.7 [5019/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o +#10 601.7 In file included from ../c10/core/ScalarType.h:3, +#10 601.7 from ../aten/src/ATen/OpMathType.h:3, +#10 601.7 from ../aten/src/ATen/native/CPUBlas.h:3, +#10 601.7 from ../aten/src/ATen/native/CPUBlas.cpp:2: +#10 601.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 601.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 601.7 37 | res = *tempRes; +#10 601.7 | ~~~~^~~~~~~~~~ +#10 601.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 601.7 28 | uint32_t tmp = src; +#10 601.7 | ^~~ +#10 602.5 [5020/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o +#10 602.5 In file included from ../c10/core/ScalarType.h:3, +#10 602.5 from ../c10/core/Scalar.h:11, +#10 602.5 from aten/src/ATen/core/TensorBody.h:16, +#10 602.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 602.5 from ../aten/src/ATen/native/Col2Im.cpp:2: +#10 602.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 602.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 602.5 37 | res = *tempRes; +#10 602.5 | ~~~~^~~~~~~~~~ +#10 602.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 602.5 28 | uint32_t tmp = src; +#10 602.5 | ^~~ +#10 602.8 [5021/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o +#10 603.8 [5022/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o +#10 603.8 In file included from ../c10/core/ScalarType.h:3, +#10 603.8 from ../c10/core/Scalar.h:11, +#10 603.8 from aten/src/ATen/core/TensorBody.h:16, +#10 603.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 603.8 from ../aten/src/ATen/native/ConvolutionMM2d.cpp:2: +#10 603.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 603.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 603.8 37 | res = *tempRes; +#10 603.8 | ~~~~^~~~~~~~~~ +#10 603.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 603.8 28 | uint32_t tmp = src; +#10 603.8 | ^~~ +#10 604.0 [5023/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o +#10 604.1 [5024/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o +#10 604.3 [5025/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o +#10 604.3 [5026/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o +#10 604.3 [5027/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o +#10 605.0 [5028/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o +#10 606.0 [5029/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o +#10 607.0 [5030/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o +#10 607.0 [5031/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o +#10 607.9 [5032/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o +#10 608.3 [5033/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o +#10 608.5 [5034/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o +#10 609.7 [5035/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o +#10 609.7 [5036/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o +#10 610.8 [5037/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o +#10 610.8 [5038/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o +#10 611.2 [5039/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o +#10 611.3 [5040/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o +#10 612.0 [5041/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o +#10 612.1 [5042/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o +#10 612.1 In file included from ../c10/core/ScalarType.h:3, +#10 612.1 from ../c10/core/Scalar.h:11, +#10 612.1 from aten/src/ATen/core/TensorBody.h:16, +#10 612.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 612.1 from ../aten/src/ATen/native/ForeachOpsKernels.cpp:2: +#10 612.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 612.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 612.1 37 | res = *tempRes; +#10 612.1 | ~~~~^~~~~~~~~~ +#10 612.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 612.1 28 | uint32_t tmp = src; +#10 612.1 | ^~~ +#10 614.1 [5043/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o +#10 614.2 [5044/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o +#10 614.2 In file included from ../c10/core/ScalarType.h:3, +#10 614.2 from ../c10/core/Scalar.h:11, +#10 614.2 from aten/src/ATen/core/TensorBody.h:16, +#10 614.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 614.2 from ../aten/src/ATen/native/Distributions.cpp:2: +#10 614.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 614.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 614.2 37 | res = *tempRes; +#10 614.2 | ~~~~^~~~~~~~~~ +#10 614.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 614.2 28 | uint32_t tmp = src; +#10 614.2 | ^~~ +#10 614.5 [5045/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o +#10 614.8 [5046/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o +#10 614.8 [5047/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o +#10 614.9 [5048/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o +#10 615.1 [5049/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o +#10 615.7 [5050/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o +#10 616.3 [5051/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o +#10 617.6 [5052/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o +#10 617.6 In file included from ../c10/core/ScalarType.h:3, +#10 617.6 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 617.6 from ../aten/src/ATen/Dispatch.h:3, +#10 617.6 from ../aten/src/ATen/native/EmbeddingBag.cpp:2: +#10 617.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 617.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 617.6 37 | res = *tempRes; +#10 617.6 | ~~~~^~~~~~~~~~ +#10 617.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 617.6 28 | uint32_t tmp = src; +#10 617.6 | ^~~ +#10 619.6 [5053/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o +#10 619.6 [5054/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o +#10 619.8 [5055/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o +#10 620.2 [5056/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o +#10 620.2 [5057/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o +#10 620.3 [5058/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o +#10 620.3 [5059/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o +#10 620.4 [5060/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o +#10 620.7 [5061/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o +#10 621.6 [5062/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o +#10 623.9 [5063/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o +#10 624.0 [5064/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o +#10 624.0 In file included from ../c10/core/ScalarType.h:3, +#10 624.0 from ../c10/core/Scalar.h:11, +#10 624.0 from aten/src/ATen/core/TensorBody.h:16, +#10 624.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 624.0 from ../aten/src/ATen/native/LossNLL2d.cpp:2: +#10 624.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 624.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 624.0 37 | res = *tempRes; +#10 624.0 | ~~~~^~~~~~~~~~ +#10 624.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 624.0 28 | uint32_t tmp = src; +#10 624.0 | ^~~ +#10 625.5 [5065/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o +#10 625.7 [5066/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o +#10 625.7 In file included from ../c10/core/ScalarType.h:3, +#10 625.7 from ../c10/core/Scalar.h:11, +#10 625.7 from aten/src/ATen/core/TensorBody.h:16, +#10 625.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 625.7 from ../aten/src/ATen/native/LossNLL.cpp:2: +#10 625.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 625.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 625.7 37 | res = *tempRes; +#10 625.7 | ~~~~^~~~~~~~~~ +#10 625.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 625.7 28 | uint32_t tmp = src; +#10 625.7 | ^~~ +#10 625.9 [5067/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o +#10 625.9 In file included from ../c10/core/ScalarType.h:3, +#10 625.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 625.9 from ../aten/src/ATen/Dispatch.h:3, +#10 625.9 from ../aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp:2: +#10 625.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 625.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 625.9 37 | res = *tempRes; +#10 625.9 | ~~~~^~~~~~~~~~ +#10 625.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 625.9 28 | uint32_t tmp = src; +#10 625.9 | ^~~ +#10 626.4 [5068/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o +#10 626.8 [5069/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o +#10 627.1 [5070/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o +#10 627.1 In file included from ../c10/core/ScalarType.h:3, +#10 627.1 from ../c10/core/Scalar.h:11, +#10 627.1 from aten/src/ATen/core/TensorBody.h:16, +#10 627.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 627.1 from ../aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp:2: +#10 627.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 627.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 627.1 37 | res = *tempRes; +#10 627.1 | ~~~~^~~~~~~~~~ +#10 627.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 627.1 28 | uint32_t tmp = src; +#10 627.1 | ^~~ +#10 627.3 [5071/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o +#10 627.4 [5072/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o +#10 627.6 [5073/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o +#10 627.6 In file included from ../c10/core/ScalarType.h:3, +#10 627.6 from ../c10/core/Scalar.h:11, +#10 627.6 from aten/src/ATen/core/TensorBody.h:16, +#10 627.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 627.6 from ../aten/src/ATen/native/LinearAlgebra.cpp:2: +#10 627.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 627.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 627.6 37 | res = *tempRes; +#10 627.6 | ~~~~^~~~~~~~~~ +#10 627.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 627.6 28 | uint32_t tmp = src; +#10 627.6 | ^~~ +#10 629.0 [5074/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o +#10 629.1 [5075/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o +#10 630.0 [5076/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o +#10 630.0 In file included from ../c10/core/ScalarType.h:3, +#10 630.0 from ../c10/core/Scalar.h:11, +#10 630.0 from aten/src/ATen/core/TensorBody.h:16, +#10 630.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 630.0 from ../aten/src/ATen/native/NaiveDilatedConvolution.cpp:2: +#10 630.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 630.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 630.0 37 | res = *tempRes; +#10 630.0 | ~~~~^~~~~~~~~~ +#10 630.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 630.0 28 | uint32_t tmp = src; +#10 630.0 | ^~~ +#10 630.2 [5077/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o +#10 631.1 [5078/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o +#10 631.7 [5079/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o +#10 632.6 [5080/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o +#10 632.9 [5081/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o +#10 632.9 In file included from ../c10/core/ScalarType.h:3, +#10 632.9 from ../c10/core/Scalar.h:11, +#10 632.9 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 632.9 from ../aten/src/ATen/native/RangeFactories.cpp:2: +#10 632.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 632.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 632.9 37 | res = *tempRes; +#10 632.9 | ~~~~^~~~~~~~~~ +#10 632.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 632.9 28 | uint32_t tmp = src; +#10 632.9 | ^~~ +#10 632.9 [5082/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o +#10 634.3 [5083/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o +#10 635.0 [5084/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o +#10 635.0 In file included from ../c10/core/ScalarType.h:3, +#10 635.0 from ../c10/core/Scalar.h:11, +#10 635.0 from aten/src/ATen/core/TensorBody.h:16, +#10 635.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 635.0 from ../aten/src/ATen/native/Scalar.cpp:2: +#10 635.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 635.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 635.0 37 | res = *tempRes; +#10 635.0 | ~~~~^~~~~~~~~~ +#10 635.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 635.0 28 | uint32_t tmp = src; +#10 635.0 | ^~~ +#10 635.7 [5085/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o +#10 636.1 [5086/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o +#10 636.4 [5087/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o +#10 636.4 In file included from ../c10/core/ScalarType.h:3, +#10 636.4 from ../c10/core/Scalar.h:11, +#10 636.4 from aten/src/ATen/core/TensorBody.h:16, +#10 636.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 636.4 from ../aten/src/ATen/native/Normalization.cpp:2: +#10 636.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 636.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 636.4 37 | res = *tempRes; +#10 636.4 | ~~~~^~~~~~~~~~ +#10 636.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 636.4 28 | uint32_t tmp = src; +#10 636.4 | ^~~ +#10 636.5 [5088/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o +#10 637.8 [5089/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o +#10 638.5 [5090/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o +#10 638.5 In file included from ../c10/core/ScalarType.h:3, +#10 638.5 from ../c10/core/Scalar.h:11, +#10 638.5 from aten/src/ATen/core/TensorBody.h:16, +#10 638.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 638.5 from ../aten/src/ATen/native/ReduceOps.cpp:4: +#10 638.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 638.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 638.5 37 | res = *tempRes; +#10 638.5 | ~~~~^~~~~~~~~~ +#10 638.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 638.5 28 | uint32_t tmp = src; +#10 638.5 | ^~~ +#10 638.6 [5091/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o +#10 638.6 In file included from ../c10/core/ScalarType.h:3, +#10 638.6 from ../c10/core/Scalar.h:11, +#10 638.6 from aten/src/ATen/core/TensorBody.h:16, +#10 638.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 638.6 from ../aten/src/ATen/native/ReflectionPad.cpp:2: +#10 638.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 638.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 638.6 37 | res = *tempRes; +#10 638.6 | ~~~~^~~~~~~~~~ +#10 638.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 638.6 28 | uint32_t tmp = src; +#10 638.6 | ^~~ +#10 638.9 [5092/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o +#10 639.9 [5093/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o +#10 639.9 In file included from ../c10/core/ScalarType.h:3, +#10 639.9 from ../c10/core/Scalar.h:11, +#10 639.9 from aten/src/ATen/core/TensorBody.h:16, +#10 639.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 639.9 from ../aten/src/ATen/native/SoftMax.cpp:2: +#10 639.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 639.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 639.9 37 | res = *tempRes; +#10 639.9 | ~~~~^~~~~~~~~~ +#10 639.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 639.9 28 | uint32_t tmp = src; +#10 639.9 | ^~~ +#10 641.2 [5094/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o +#10 641.2 In file included from ../c10/core/ScalarType.h:3, +#10 641.2 from ../c10/core/Scalar.h:11, +#10 641.2 from ../aten/src/ATen/native/ReductionType.h:3, +#10 641.2 from ../aten/src/ATen/native/SegmentReduce.h:4, +#10 641.2 from ../aten/src/ATen/native/SegmentReduce.cpp:2: +#10 641.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 641.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 641.2 37 | res = *tempRes; +#10 641.2 | ~~~~^~~~~~~~~~ +#10 641.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 641.2 28 | uint32_t tmp = src; +#10 641.2 | ^~~ +#10 641.6 [5095/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o +#10 643.0 [5096/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o +#10 643.3 [5097/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o +#10 643.5 [5098/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o +#10 643.8 [5099/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o +#10 643.8 In file included from ../c10/core/ScalarType.h:3, +#10 643.8 from ../c10/core/Scalar.h:11, +#10 643.8 from aten/src/ATen/core/TensorBody.h:16, +#10 643.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 643.8 from ../aten/src/ATen/native/TensorCompare.cpp:2: +#10 643.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 643.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 643.8 37 | res = *tempRes; +#10 643.8 | ~~~~^~~~~~~~~~ +#10 643.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 643.8 28 | uint32_t tmp = src; +#10 643.8 | ^~~ +#10 644.6 [5100/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o +#10 644.6 In file included from ../c10/core/ScalarType.h:3, +#10 644.6 from ../c10/core/Scalar.h:11, +#10 644.6 from aten/src/ATen/core/TensorBody.h:16, +#10 644.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 644.6 from ../aten/src/ATen/native/Sorting.cpp:2: +#10 644.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 644.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 644.6 37 | res = *tempRes; +#10 644.6 | ~~~~^~~~~~~~~~ +#10 644.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 644.6 28 | uint32_t tmp = src; +#10 644.6 | ^~~ +#10 645.0 [5101/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o +#10 645.1 [5102/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o +#10 646.1 [5103/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o +#10 646.9 [5104/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o +#10 646.9 [5105/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o +#10 647.0 [5106/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o +#10 648.1 [5107/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o +#10 648.1 [5108/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o +#10 648.6 [5109/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o +#10 648.6 In file included from ../c10/core/ScalarType.h:3, +#10 648.6 from ../c10/core/Scalar.h:11, +#10 648.6 from aten/src/ATen/core/TensorBody.h:16, +#10 648.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 648.6 from ../aten/src/ATen/native/Unfold3d.cpp:2: +#10 648.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 648.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 648.6 37 | res = *tempRes; +#10 648.6 | ~~~~^~~~~~~~~~ +#10 648.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 648.6 28 | uint32_t tmp = src; +#10 648.6 | ^~~ +#10 651.1 [5110/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o +#10 651.3 [5111/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o +#10 651.7 [5112/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o +#10 651.9 [5113/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o +#10 651.9 In file included from ../c10/core/ScalarType.h:3, +#10 651.9 from ../c10/core/Scalar.h:11, +#10 651.9 from aten/src/ATen/core/TensorBody.h:16, +#10 651.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 651.9 from ../aten/src/ATen/native/UpSampleBicubic2d.cpp:2: +#10 651.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 651.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 651.9 37 | res = *tempRes; +#10 651.9 | ~~~~^~~~~~~~~~ +#10 651.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 651.9 28 | uint32_t tmp = src; +#10 651.9 | ^~~ +#10 652.6 [5114/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o +#10 652.8 [5115/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o +#10 652.9 [5116/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o +#10 653.9 [5117/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o +#10 654.5 [5118/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o +#10 654.5 [5119/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o +#10 654.9 [5120/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o +#10 655.0 [5121/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o +#10 655.1 [5122/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o +#10 656.8 [5123/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o +#10 657.0 [5124/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o +#10 657.9 [5125/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o +#10 658.9 [5126/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o +#10 658.9 In file included from ../c10/core/ScalarType.h:3, +#10 658.9 from ../c10/core/StorageImpl.h:4, +#10 658.9 from ../c10/core/Storage.h:3, +#10 658.9 from ../c10/core/TensorImpl.h:8, +#10 658.9 from ../c10/core/GeneratorImpl.h:8, +#10 658.9 from ../aten/src/ATen/core/Generator.h:22, +#10 658.9 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 658.9 from ../aten/src/ATen/Context.h:3, +#10 658.9 from ../aten/src/ATen/ATen.h:7, +#10 658.9 from ../aten/src/ATen/native/TensorAdvancedIndexing.cpp:51: +#10 658.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 658.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 658.9 37 | res = *tempRes; +#10 658.9 | ~~~~^~~~~~~~~~ +#10 658.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 658.9 28 | uint32_t tmp = src; +#10 658.9 | ^~~ +#10 659.0 [5127/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o +#10 659.0 [5128/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o +#10 659.0 In file included from ../c10/core/ScalarType.h:3, +#10 659.0 from ../c10/core/Scalar.h:11, +#10 659.0 from aten/src/ATen/core/TensorBody.h:16, +#10 659.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 659.0 from ../aten/src/ATen/native/Unique.cpp:4: +#10 659.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 659.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 659.0 37 | res = *tempRes; +#10 659.0 | ~~~~^~~~~~~~~~ +#10 659.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 659.0 28 | uint32_t tmp = src; +#10 659.0 | ^~~ +#10 661.0 [5129/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o +#10 661.4 [5130/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o +#10 662.0 [5131/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o +#10 662.9 [5132/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o +#10 663.0 [5133/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o +#10 663.0 [5134/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o +#10 663.3 [5135/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o +#10 664.1 [5136/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o +#10 665.2 [5137/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o +#10 665.3 [5138/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o +#10 665.5 [5139/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o +#10 665.7 [5140/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o +#10 667.4 [5141/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o +#10 667.4 In file included from ../c10/core/ScalarType.h:3, +#10 667.4 from ../c10/core/Scalar.h:11, +#10 667.4 from aten/src/ATen/core/TensorBody.h:16, +#10 667.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 667.4 from ../aten/src/ATen/native/sparse/SparseTensor.cpp:4: +#10 667.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 667.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 667.4 37 | res = *tempRes; +#10 667.4 | ~~~~^~~~~~~~~~ +#10 667.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 667.4 28 | uint32_t tmp = src; +#10 667.4 | ^~~ +#10 669.0 [5142/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o +#10 670.5 [5143/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o +#10 671.0 [5144/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o +#10 671.9 [5145/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o +#10 672.6 [5146/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o +#10 674.1 [5147/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 675.6 [5148/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o +#10 675.8 [5149/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o +#10 676.4 [5150/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o +#10 676.5 [5151/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o +#10 676.6 [5152/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o +#10 677.1 [5153/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o +#10 677.9 [5154/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o +#10 677.9 In file included from ../c10/core/ScalarType.h:3, +#10 677.9 from ../c10/core/Scalar.h:11, +#10 677.9 from aten/src/ATen/core/TensorBody.h:16, +#10 677.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 677.9 from ../aten/src/ATen/Tensor.h:3, +#10 677.9 from ../aten/src/ATen/NestedTensorImpl.h:3, +#10 677.9 from ../aten/src/ATen/native/nested/NestedTensorMath.h:4, +#10 677.9 from ../aten/src/ATen/native/nested/NestedTensorMath.cpp:1: +#10 677.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 677.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 677.9 37 | res = *tempRes; +#10 677.9 | ~~~~^~~~~~~~~~ +#10 677.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 677.9 28 | uint32_t tmp = src; +#10 677.9 | ^~~ +#10 678.2 [5155/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o +#10 678.8 [5156/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o +#10 678.9 [5157/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o +#10 679.3 [5158/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o +#10 679.3 In file included from ../c10/core/ScalarType.h:3, +#10 679.3 from ../c10/core/StorageImpl.h:4, +#10 679.3 from ../c10/core/Storage.h:3, +#10 679.3 from ../c10/core/TensorImpl.h:8, +#10 679.3 from ../c10/core/GeneratorImpl.h:8, +#10 679.3 from ../aten/src/ATen/core/Generator.h:22, +#10 679.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 679.3 from ../aten/src/ATen/Context.h:3, +#10 679.3 from aten/src/ATen/ops/view.h:5, +#10 679.3 from ../aten/src/ATen/ExpandUtils.h:6, +#10 679.3 from ../aten/src/ATen/TensorIndexing.h:3, +#10 679.3 from ../aten/src/ATen/native/sparse/SparseTensorMath.cpp:2: +#10 679.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 679.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 679.3 37 | res = *tempRes; +#10 679.3 | ~~~~^~~~~~~~~~ +#10 679.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 679.3 28 | uint32_t tmp = src; +#10 679.3 | ^~~ +#10 681.0 [5159/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o +#10 681.0 In file included from ../c10/core/ScalarType.h:3, +#10 681.0 from ../c10/core/Scalar.h:11, +#10 681.0 from aten/src/ATen/core/TensorBody.h:16, +#10 681.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 681.0 from ../aten/src/ATen/Tensor.h:3, +#10 681.0 from ../aten/src/ATen/native/sparse/SparseBinaryOpIntersectionCommon.h:3, +#10 681.0 from ../aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp:3: +#10 681.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 681.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 681.0 37 | res = *tempRes; +#10 681.0 | ~~~~^~~~~~~~~~ +#10 681.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 681.0 28 | uint32_t tmp = src; +#10 681.0 | ^~~ +#10 683.0 [5160/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o +#10 683.9 [5161/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o +#10 684.1 [5162/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o +#10 684.1 In file included from ../c10/core/ScalarType.h:3, +#10 684.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 684.1 from ../aten/src/ATen/Dispatch.h:3, +#10 684.1 from ../aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp:2: +#10 684.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 684.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 684.1 37 | res = *tempRes; +#10 684.1 | ~~~~^~~~~~~~~~ +#10 684.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 684.1 28 | uint32_t tmp = src; +#10 684.1 | ^~~ +#10 684.4 [5163/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o +#10 684.8 [5164/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o +#10 685.0 [5165/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o +#10 685.5 [5166/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o +#10 685.5 [5167/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o +#10 685.6 [5168/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o +#10 686.3 [5169/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o +#10 686.7 [5170/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o +#10 686.8 [5171/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o +#10 688.4 [5172/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o +#10 688.6 [5173/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o +#10 688.6 [5174/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o +#10 689.6 [5175/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o +#10 690.0 [5176/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o +#10 690.7 [5177/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o +#10 692.0 [5178/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o +#10 692.0 [5179/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o +#10 692.4 [5180/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o +#10 693.4 [5181/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o +#10 693.4 [5182/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o +#10 694.5 [5183/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o +#10 694.6 [5184/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o +#10 695.4 [5185/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o +#10 696.6 [5186/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o +#10 696.9 [5187/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o +#10 697.7 [5188/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o +#10 698.8 [5189/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o +#10 700.8 [5190/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o +#10 701.0 [5191/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o +#10 701.9 [5192/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o +#10 703.5 [5193/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o +#10 704.3 [5194/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o +#10 704.7 [5195/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o +#10 705.4 [5196/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o +#10 705.6 [5197/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o +#10 705.9 [5198/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o +#10 709.7 [5199/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o +#10 710.1 [5200/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o +#10 711.1 [5201/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o +#10 711.3 [5202/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o +#10 711.9 [5203/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o +#10 711.9 [5204/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o +#10 712.1 [5205/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o +#10 713.2 [5206/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o +#10 713.4 [5207/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o +#10 713.7 [5208/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o +#10 714.2 [5209/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o +#10 714.6 [5210/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o +#10 715.5 [5211/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o +#10 715.8 [5212/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o +#10 716.1 [5213/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o +#10 716.3 [5214/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o +#10 716.9 [5215/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o +#10 717.1 [5216/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o +#10 718.1 [5217/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o +#10 719.7 [5218/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o +#10 722.0 [5219/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o +#10 722.4 [5220/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o +#10 723.4 [5221/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o +#10 723.5 [5222/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o +#10 725.1 [5223/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o +#10 725.7 [5224/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o +#10 726.6 [5225/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o +#10 728.9 [5226/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o +#10 729.9 [5227/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o +#10 730.0 [5228/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o +#10 730.5 [5229/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o +#10 730.7 [5230/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o +#10 731.1 [5231/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o +#10 732.0 [5232/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o +#10 732.0 [5233/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o +#10 733.8 [5234/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o +#10 735.6 [5235/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o +#10 735.7 [5236/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o +#10 735.9 [5237/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o +#10 736.7 [5238/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o +#10 736.7 [5239/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o +#10 737.1 [5240/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o +#10 737.1 [5241/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o +#10 737.3 [5242/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o +#10 737.4 [5243/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o +#10 738.4 [5244/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o +#10 738.7 [5245/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o +#10 739.0 [5246/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o +#10 739.1 [5247/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o +#10 739.9 [5248/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o +#10 740.4 [5249/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o +#10 741.1 [5250/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o +#10 742.7 [5251/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o +#10 743.1 [5252/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o +#10 743.5 [5253/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o +#10 743.5 In file included from ../c10/core/ScalarType.h:3, +#10 743.5 from ../c10/core/StorageImpl.h:4, +#10 743.5 from ../c10/core/Storage.h:3, +#10 743.5 from ../c10/core/TensorImpl.h:8, +#10 743.5 from ../c10/core/GeneratorImpl.h:8, +#10 743.5 from ../aten/src/ATen/core/Generator.h:22, +#10 743.5 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 743.5 from ../aten/src/ATen/Context.h:3, +#10 743.5 from ../aten/src/ATen/ATen.h:7, +#10 743.5 from ../aten/src/ATen/native/transformers/attention.cpp:3: +#10 743.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 743.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 743.5 37 | res = *tempRes; +#10 743.5 | ~~~~^~~~~~~~~~ +#10 743.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 743.5 28 | uint32_t tmp = src; +#10 743.5 | ^~~ +#10 743.9 [5254/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o +#10 747.3 [5255/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o +#10 749.8 [5256/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o +#10 750.8 [5257/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o +#10 752.4 [5258/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor.cpp.o +#10 756.2 [5259/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o +#10 758.8 [5260/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o +#10 799.6 [5261/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd.cpp.o +#10 800.6 [5262/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o +#10 801.0 [5263/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o +#10 801.4 [5264/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional.cpp.o +#10 802.0 [5265/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd.cpp.o +#10 803.8 [5266/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o +#10 807.4 [5267/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta.cpp.o +#10 809.4 [5268/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta.cpp.o +#10 809.4 [5269/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o +#10 810.0 [5270/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU.cpp.o +#10 810.8 [5271/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o +#10 813.0 [5272/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o +#10 814.6 [5273/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU.cpp.o +#10 816.1 [5274/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU.cpp.o +#10 817.5 [5275/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor.cpp.o +#10 818.8 [5276/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o +#10 818.8 In file included from ../c10/core/ScalarType.h:3, +#10 818.8 from ../c10/core/Scalar.h:11, +#10 818.8 from aten/src/ATen/core/TensorMethods.cpp:1: +#10 818.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 818.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 818.8 37 | res = *tempRes; +#10 818.8 | ~~~~^~~~~~~~~~ +#10 818.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 818.8 28 | uint32_t tmp = src; +#10 818.8 | ^~~ +#10 819.0 [5277/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta.cpp.o +#10 819.8 [5278/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o +#10 820.1 [5279/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o +#10 820.5 [5280/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o +#10 821.3 [5281/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o +#10 821.4 [5282/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o +#10 821.7 [5283/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o +#10 821.8 [5284/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU.cpp.o +#10 824.8 [5285/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o +#10 824.9 [5286/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU.cpp.o +#10 825.1 [5287/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o +#10 825.2 [5288/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o +#10 825.3 [5289/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o +#10 828.2 [5290/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o +#10 828.5 [5291/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o +#10 828.9 [5292/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o +#10 828.9 [5293/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o +#10 828.9 In file included from ../c10/core/ScalarType.h:3, +#10 828.9 from ../aten/src/ATen/AccumulateType.h:3, +#10 828.9 from ../aten/src/ATen/native/Math.h:3, +#10 828.9 from ../aten/src/ATen/cpu/vec/vec_base.h:25, +#10 828.9 from ../aten/src/ATen/cpu/vec/vec256/vec256.h:8, +#10 828.9 from ../aten/src/ATen/cpu/vec/vec.h:6, +#10 828.9 from ../aten/src/ATen/cpu/vec/functional_base.h:6, +#10 828.9 from ../aten/src/ATen/cpu/vec/functional.h:3, +#10 828.9 from ../aten/src/ATen/native/ufunc/add.h:6, +#10 828.9 from /pytorch/build/aten/src/ATen/UfuncCPUKernel_add.cpp:3, +#10 828.9 from aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp:1: +#10 828.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 828.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 828.9 37 | res = *tempRes; +#10 828.9 | ~~~~^~~~~~~~~~ +#10 828.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 828.9 28 | uint32_t tmp = src; +#10 828.9 | ^~~ +#10 832.0 [5294/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o +#10 832.1 [5295/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o +#10 832.1 In file included from ../c10/core/ScalarType.h:3, +#10 832.1 from ../aten/src/ATen/core/TensorBase.h:6, +#10 832.1 from /pytorch/aten/src/ATen/native/cpu/WeightNormKernel.cpp:2, +#10 832.1 from aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp:1: +#10 832.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 832.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 832.1 37 | res = *tempRes; +#10 832.1 | ~~~~^~~~~~~~~~ +#10 832.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 832.1 28 | uint32_t tmp = src; +#10 832.1 | ^~~ +#10 833.5 [5296/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o +#10 833.8 [5297/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta.cpp.o +#10 836.2 [5298/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o +#10 836.2 In file included from ../c10/core/ScalarType.h:3, +#10 836.2 from ../c10/core/Scalar.h:11, +#10 836.2 from aten/src/ATen/core/TensorBody.h:16, +#10 836.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 836.2 from /pytorch/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp:2, +#10 836.2 from aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp:1: +#10 836.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 836.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 836.2 37 | res = *tempRes; +#10 836.2 | ~~~~^~~~~~~~~~ +#10 836.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 836.2 28 | uint32_t tmp = src; +#10 836.2 | ^~~ +#10 836.6 [5299/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o +#10 836.6 In file included from ../c10/core/ScalarType.h:3, +#10 836.6 from ../c10/core/Scalar.h:11, +#10 836.6 from aten/src/ATen/core/TensorBody.h:16, +#10 836.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 836.6 from ../aten/src/ATen/native/batch_norm.h:3, +#10 836.6 from /pytorch/aten/src/ATen/native/cpu/batch_norm_kernel.cpp:2, +#10 836.6 from aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp:1: +#10 836.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 836.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 836.6 37 | res = *tempRes; +#10 836.6 | ~~~~^~~~~~~~~~ +#10 836.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 836.6 28 | uint32_t tmp = src; +#10 836.6 | ^~~ +#10 837.8 [5300/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o +#10 837.8 In file included from ../c10/core/ScalarType.h:3, +#10 837.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 837.8 from ../aten/src/ATen/Dispatch.h:3, +#10 837.8 from /pytorch/aten/src/ATen/native/cpu/Unfold2d.cpp:2, +#10 837.8 from aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp:1: +#10 837.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 837.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 837.8 37 | res = *tempRes; +#10 837.8 | ~~~~^~~~~~~~~~ +#10 837.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 837.8 28 | uint32_t tmp = src; +#10 837.8 | ^~~ +#10 838.4 [5301/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU.cpp.o +#10 838.4 [5302/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o +#10 838.4 In file included from ../c10/core/ScalarType.h:3, +#10 838.4 from ../c10/core/Scalar.h:11, +#10 838.4 from aten/src/ATen/core/TensorBody.h:16, +#10 838.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 838.4 from /pytorch/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp:4, +#10 838.4 from aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp:1: +#10 838.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 838.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 838.4 37 | res = *tempRes; +#10 838.4 | ~~~~^~~~~~~~~~ +#10 838.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 838.4 28 | uint32_t tmp = src; +#10 838.4 | ^~~ +#10 838.6 [5303/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o +#10 839.4 [5304/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o +#10 839.4 In file included from ../c10/core/ScalarType.h:3, +#10 839.4 from ../c10/core/Scalar.h:11, +#10 839.4 from aten/src/ATen/core/TensorBody.h:16, +#10 839.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 839.4 from ../aten/src/ATen/native/layer_norm.h:3, +#10 839.4 from /pytorch/aten/src/ATen/native/cpu/layer_norm_kernel.cpp:2, +#10 839.4 from aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp:1: +#10 839.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 839.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 839.4 37 | res = *tempRes; +#10 839.4 | ~~~~^~~~~~~~~~ +#10 839.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 839.4 28 | uint32_t tmp = src; +#10 839.4 | ^~~ +#10 841.2 [5305/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o +#10 842.7 [5306/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o +#10 843.4 [5307/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o +#10 843.4 In file included from ../c10/core/ScalarType.h:3, +#10 843.4 from ../c10/core/Scalar.h:11, +#10 843.4 from aten/src/ATen/core/TensorBody.h:16, +#10 843.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 843.4 from /pytorch/aten/src/ATen/native/cpu/MaxPooling.cpp:2, +#10 843.4 from aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp:1: +#10 843.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 843.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 843.4 37 | res = *tempRes; +#10 843.4 | ~~~~^~~~~~~~~~ +#10 843.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 843.4 28 | uint32_t tmp = src; +#10 843.4 | ^~~ +#10 845.3 [5308/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o +#10 845.3 In file included from ../c10/core/ScalarType.h:3, +#10 845.3 from ../c10/core/Scalar.h:11, +#10 845.3 from aten/src/ATen/core/TensorBody.h:16, +#10 845.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 845.3 from /pytorch/aten/src/ATen/native/cpu/UpSampleKernel.cpp:2, +#10 845.3 from aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp:1: +#10 845.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 845.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 845.3 37 | res = *tempRes; +#10 845.3 | ~~~~^~~~~~~~~~ +#10 845.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 845.3 28 | uint32_t tmp = src; +#10 845.3 | ^~~ +#10 847.0 [5309/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o +#10 847.0 In file included from ../c10/core/ScalarType.h:3, +#10 847.0 from ../c10/core/Scalar.h:11, +#10 847.0 from aten/src/ATen/core/TensorBody.h:16, +#10 847.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 847.0 from /pytorch/aten/src/ATen/native/cpu/group_norm_kernel.cpp:8, +#10 847.0 from aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp:1: +#10 847.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 847.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 847.0 37 | res = *tempRes; +#10 847.0 | ~~~~^~~~~~~~~~ +#10 847.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 847.0 28 | uint32_t tmp = src; +#10 847.0 | ^~~ +#10 848.7 [5310/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o +#10 848.8 [5311/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o +#10 848.8 In file included from ../c10/core/ScalarType.h:3, +#10 848.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 848.8 from ../aten/src/ATen/Dispatch.h:3, +#10 848.8 from /pytorch/aten/src/ATen/native/cpu/SoftMaxKernel.cpp:8, +#10 848.8 from aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp:1: +#10 848.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 848.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 848.8 37 | res = *tempRes; +#10 848.8 | ~~~~^~~~~~~~~~ +#10 848.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 848.8 28 | uint32_t tmp = src; +#10 848.8 | ^~~ +#10 849.0 [5312/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o +#10 849.0 In file included from ../c10/core/ScalarType.h:3, +#10 849.0 from ../aten/src/ATen/AccumulateType.h:3, +#10 849.0 from /pytorch/aten/src/ATen/native/cpu/SumKernel.cpp:2, +#10 849.0 from aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp:1: +#10 849.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 849.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 849.0 37 | res = *tempRes; +#10 849.0 | ~~~~^~~~~~~~~~ +#10 849.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 849.0 28 | uint32_t tmp = src; +#10 849.0 | ^~~ +#10 850.4 [5313/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o +#10 850.4 In file included from ../c10/core/ScalarType.h:3, +#10 850.4 from ../c10/core/Scalar.h:11, +#10 850.4 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 850.4 from /pytorch/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp:2, +#10 850.4 from aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp:1: +#10 850.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 850.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 850.4 37 | res = *tempRes; +#10 850.4 | ~~~~^~~~~~~~~~ +#10 850.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 850.4 28 | uint32_t tmp = src; +#10 850.4 | ^~~ +#10 854.0 [5314/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o +#10 855.5 [5315/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o +#10 855.5 In file included from ../c10/core/ScalarType.h:3, +#10 855.5 from ../aten/src/ATen/core/TensorBase.h:6, +#10 855.5 from /pytorch/aten/src/ATen/native/cpu/SortingKernel.cpp:3, +#10 855.5 from aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp:1: +#10 855.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 855.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 855.5 37 | res = *tempRes; +#10 855.5 | ~~~~^~~~~~~~~~ +#10 855.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 855.5 28 | uint32_t tmp = src; +#10 855.5 | ^~~ +#10 855.7 [5316/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o +#10 855.7 In file included from ../c10/core/ScalarType.h:3, +#10 855.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 855.7 from ../aten/src/ATen/Dispatch.h:3, +#10 855.7 from /pytorch/aten/src/ATen/native/cpu/PowKernel.cpp:3, +#10 855.7 from aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp:1: +#10 855.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 855.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 855.7 37 | res = *tempRes; +#10 855.7 | ~~~~^~~~~~~~~~ +#10 855.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 855.7 28 | uint32_t tmp = src; +#10 855.7 | ^~~ +#10 855.7 [5317/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o +#10 855.7 In file included from ../c10/core/ScalarType.h:3, +#10 855.7 from ../c10/core/Scalar.h:11, +#10 855.7 from aten/src/ATen/core/TensorBody.h:16, +#10 855.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 855.7 from /pytorch/aten/src/ATen/native/cpu/MultinomialKernel.cpp:2, +#10 855.7 from aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp:1: +#10 855.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 855.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 855.7 37 | res = *tempRes; +#10 855.7 | ~~~~^~~~~~~~~~ +#10 855.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 855.7 28 | uint32_t tmp = src; +#10 855.7 | ^~~ +#10 856.9 [5318/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o +#10 856.9 In file included from ../c10/core/ScalarType.h:3, +#10 856.9 from ../c10/core/Scalar.h:11, +#10 856.9 from aten/src/ATen/core/TensorBody.h:16, +#10 856.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 856.9 from /pytorch/aten/src/ATen/native/cpu/TensorCompareKernel.cpp:2, +#10 856.9 from aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp:1: +#10 856.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 856.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 856.9 37 | res = *tempRes; +#10 856.9 | ~~~~^~~~~~~~~~ +#10 856.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 856.9 28 | uint32_t tmp = src; +#10 856.9 | ^~~ +#10 857.1 [5319/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o +#10 857.1 In file included from ../c10/core/ScalarType.h:3, +#10 857.1 from ../c10/core/Scalar.h:11, +#10 857.1 from aten/src/ATen/core/TensorBody.h:16, +#10 857.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 857.1 from /pytorch/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp:2, +#10 857.1 from aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp:1: +#10 857.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 857.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 857.1 37 | res = *tempRes; +#10 857.1 | ~~~~^~~~~~~~~~ +#10 857.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 857.1 28 | uint32_t tmp = src; +#10 857.1 | ^~~ +#10 858.5 [5320/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o +#10 860.2 [5321/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o +#10 861.8 [5322/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o +#10 861.8 In file included from ../c10/core/ScalarType.h:3, +#10 861.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 861.8 from ../aten/src/ATen/Dispatch.h:3, +#10 861.8 from /pytorch/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp:4, +#10 861.8 from aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp:1: +#10 861.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 861.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 861.8 37 | res = *tempRes; +#10 861.8 | ~~~~^~~~~~~~~~ +#10 861.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 861.8 28 | uint32_t tmp = src; +#10 861.8 | ^~~ +#10 861.8 [5323/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o +#10 861.8 In file included from ../c10/core/ScalarType.h:3, +#10 861.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 861.8 from ../aten/src/ATen/Dispatch.h:3, +#10 861.8 from /pytorch/aten/src/ATen/native/cpu/FillKernel.cpp:2, +#10 861.8 from aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp:1: +#10 861.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 861.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 861.8 37 | res = *tempRes; +#10 861.8 | ~~~~^~~~~~~~~~ +#10 861.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 861.8 28 | uint32_t tmp = src; +#10 861.8 | ^~~ +#10 862.1 [5324/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o +#10 862.1 In file included from ../c10/core/ScalarType.h:3, +#10 862.1 from ../c10/core/Scalar.h:11, +#10 862.1 from aten/src/ATen/core/TensorBody.h:16, +#10 862.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 862.1 from ../aten/src/ATen/native/AdaptivePooling.h:3, +#10 862.1 from /pytorch/aten/src/ATen/native/cpu/MaxPoolKernel.cpp:2, +#10 862.1 from aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp:1: +#10 862.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 862.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 862.1 37 | res = *tempRes; +#10 862.1 | ~~~~^~~~~~~~~~ +#10 862.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 862.1 28 | uint32_t tmp = src; +#10 862.1 | ^~~ +#10 862.8 [5325/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o +#10 862.8 In file included from ../c10/core/ScalarType.h:3, +#10 862.8 from ../aten/src/ATen/OpMathType.h:3, +#10 862.8 from ../aten/src/ATen/native/Lerp.h:4, +#10 862.8 from /pytorch/aten/src/ATen/native/cpu/LerpKernel.cpp:2, +#10 862.8 from aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp:1: +#10 862.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 862.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 862.8 37 | res = *tempRes; +#10 862.8 | ~~~~^~~~~~~~~~ +#10 862.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 862.8 28 | uint32_t tmp = src; +#10 862.8 | ^~~ +#10 863.4 [5326/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o +#10 863.4 In file included from ../c10/core/ScalarType.h:3, +#10 863.4 from ../c10/core/Scalar.h:11, +#10 863.4 from aten/src/ATen/core/TensorBody.h:16, +#10 863.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 863.4 from /pytorch/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp:3, +#10 863.4 from aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp:1: +#10 863.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 863.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 863.4 37 | res = *tempRes; +#10 863.4 | ~~~~^~~~~~~~~~ +#10 863.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 863.4 28 | uint32_t tmp = src; +#10 863.4 | ^~~ +#10 864.1 [5327/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o +#10 864.1 In file included from ../c10/core/ScalarType.h:3, +#10 864.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 864.1 from ../aten/src/ATen/Dispatch.h:3, +#10 864.1 from /pytorch/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp:3, +#10 864.1 from aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp:1: +#10 864.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 864.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 864.1 37 | res = *tempRes; +#10 864.1 | ~~~~^~~~~~~~~~ +#10 864.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 864.1 28 | uint32_t tmp = src; +#10 864.1 | ^~~ +#10 865.5 [5328/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o +#10 865.5 In file included from ../c10/core/ScalarType.h:3, +#10 865.5 from ../aten/src/ATen/core/TensorBase.h:6, +#10 865.5 from ../aten/src/ATen/native/NonEmptyUtils.h:1, +#10 865.5 from /pytorch/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp:2, +#10 865.5 from aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp:1: +#10 865.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 865.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 865.5 37 | res = *tempRes; +#10 865.5 | ~~~~^~~~~~~~~~ +#10 865.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 865.5 28 | uint32_t tmp = src; +#10 865.5 | ^~~ +#10 866.1 [5329/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o +#10 866.1 In file included from ../c10/core/ScalarType.h:3, +#10 866.1 from ../c10/core/Scalar.h:11, +#10 866.1 from aten/src/ATen/core/TensorBody.h:16, +#10 866.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 866.1 from ../aten/src/ATen/native/Histogram.h:3, +#10 866.1 from /pytorch/aten/src/ATen/native/cpu/HistogramKernel.cpp:2, +#10 866.1 from aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp:1: +#10 866.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 866.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 866.1 37 | res = *tempRes; +#10 866.1 | ~~~~^~~~~~~~~~ +#10 866.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 866.1 28 | uint32_t tmp = src; +#10 866.1 | ^~~ +#10 866.8 [5330/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o +#10 866.8 In file included from ../c10/core/ScalarType.h:3, +#10 866.8 from ../c10/core/Scalar.h:11, +#10 866.8 from aten/src/ATen/core/TensorBody.h:16, +#10 866.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 866.8 from /pytorch/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp:2, +#10 866.8 from aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp:1: +#10 866.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 866.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 866.8 37 | res = *tempRes; +#10 866.8 | ~~~~^~~~~~~~~~ +#10 866.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 866.8 28 | uint32_t tmp = src; +#10 866.8 | ^~~ +#10 867.3 [5331/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o +#10 869.5 [5332/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o +#10 869.5 In file included from ../c10/core/ScalarType.h:3, +#10 869.5 from ../c10/core/Scalar.h:11, +#10 869.5 from aten/src/ATen/core/TensorBody.h:16, +#10 869.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 869.5 from /pytorch/aten/src/ATen/native/cpu/CrossKernel.cpp:9, +#10 869.5 from aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp:1: +#10 869.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 869.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 869.5 37 | res = *tempRes; +#10 869.5 | ~~~~^~~~~~~~~~ +#10 869.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 869.5 28 | uint32_t tmp = src; +#10 869.5 | ^~~ +#10 869.8 [5333/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o +#10 870.6 [5334/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o +#10 872.6 [5335/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o +#10 873.1 [5336/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o +#10 873.1 [5337/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o +#10 873.1 In file included from ../c10/core/ScalarType.h:3, +#10 873.1 from ../c10/core/Scalar.h:11, +#10 873.1 from aten/src/ATen/core/TensorBody.h:16, +#10 873.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 873.1 from /pytorch/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp:4, +#10 873.1 from aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp:1: +#10 873.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 873.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 873.1 37 | res = *tempRes; +#10 873.1 | ~~~~^~~~~~~~~~ +#10 873.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 873.1 28 | uint32_t tmp = src; +#10 873.1 | ^~~ +#10 873.5 [5338/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o +#10 873.5 In file included from ../c10/core/ScalarType.h:3, +#10 873.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 873.5 from ../aten/src/ATen/Dispatch.h:3, +#10 873.5 from /pytorch/aten/src/ATen/native/cpu/BlasKernel.cpp:2, +#10 873.5 from aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp:1: +#10 873.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 873.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 873.5 37 | res = *tempRes; +#10 873.5 | ~~~~^~~~~~~~~~ +#10 873.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 873.5 28 | uint32_t tmp = src; +#10 873.5 | ^~~ +#10 875.7 [5339/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o +#10 875.7 In file included from ../c10/core/ScalarType.h:3, +#10 875.7 from ../c10/core/StorageImpl.h:4, +#10 875.7 from ../c10/core/Storage.h:3, +#10 875.7 from ../c10/core/TensorImpl.h:8, +#10 875.7 from ../c10/core/GeneratorImpl.h:8, +#10 875.7 from ../aten/src/ATen/core/Generator.h:22, +#10 875.7 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 875.7 from /pytorch/aten/src/ATen/native/cpu/DistributionKernels.cpp:2, +#10 875.7 from aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp:1: +#10 875.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 875.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 875.7 37 | res = *tempRes; +#10 875.7 | ~~~~^~~~~~~~~~ +#10 875.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 875.7 28 | uint32_t tmp = src; +#10 875.7 | ^~~ +#10 877.0 [5340/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o +#10 877.4 [5341/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o +#10 878.5 [5342/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o +#10 878.8 [5343/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o +#10 879.3 [5344/6823] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-2.1.0/miniz.c.o +#10 879.3 ../third_party/miniz-2.1.0/miniz.c:3157:9: note: ‘#pragma message: Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.’ +#10 879.3 3157 | #pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.") +#10 879.3 | ^~~~~~~ +#10 879.4 [5345/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o +#10 879.9 [5346/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o +#10 879.9 In file included from ../c10/core/ScalarType.h:3, +#10 879.9 from ../c10/core/Scalar.h:11, +#10 879.9 from aten/src/ATen/core/TensorBody.h:16, +#10 879.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 879.9 from /pytorch/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp:2, +#10 879.9 from aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp:1: +#10 879.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 879.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 879.9 37 | res = *tempRes; +#10 879.9 | ~~~~^~~~~~~~~~ +#10 879.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 879.9 28 | uint32_t tmp = src; +#10 879.9 | ^~~ +#10 880.0 [5347/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o +#10 880.0 In file included from ../c10/core/ScalarType.h:3, +#10 880.0 from ../c10/core/Scalar.h:11, +#10 880.0 from aten/src/ATen/core/TensorBody.h:16, +#10 880.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 880.0 from /pytorch/aten/src/ATen/native/cpu/AvgPoolKernel.cpp:2, +#10 880.0 from aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp:1: +#10 880.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 880.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 880.0 37 | res = *tempRes; +#10 880.0 | ~~~~^~~~~~~~~~ +#10 880.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 880.0 28 | uint32_t tmp = src; +#10 880.0 | ^~~ +#10 880.1 [5348/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o +#10 880.1 [5349/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o +#10 880.6 [5350/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o +#10 880.7 [5351/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o +#10 881.2 [5352/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o +#10 881.2 [5353/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o +#10 881.2 [5354/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o +#10 881.5 [5355/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o +#10 881.5 [5356/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o +#10 881.5 In file included from ../c10/core/ScalarType.h:3, +#10 881.5 from ../c10/core/StorageImpl.h:4, +#10 881.5 from ../c10/core/Storage.h:3, +#10 881.5 from ../c10/core/TensorImpl.h:8, +#10 881.5 from ../c10/core/GeneratorImpl.h:8, +#10 881.5 from ../aten/src/ATen/core/Generator.h:22, +#10 881.5 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 881.5 from ../aten/src/ATen/Context.h:3, +#10 881.5 from /pytorch/aten/src/ATen/native/cpu/IndexKernel.cpp:7, +#10 881.5 from aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp:1: +#10 881.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 881.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 881.5 37 | res = *tempRes; +#10 881.5 | ~~~~^~~~~~~~~~ +#10 881.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 881.5 28 | uint32_t tmp = src; +#10 881.5 | ^~~ +#10 881.6 [5357/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o +#10 881.6 In file included from ../c10/core/ScalarType.h:3, +#10 881.6 from ../c10/core/Scalar.h:11, +#10 881.6 from aten/src/ATen/core/TensorBody.h:16, +#10 881.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 881.6 from /pytorch/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp:2, +#10 881.6 from aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp:1: +#10 881.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 881.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 881.6 37 | res = *tempRes; +#10 881.6 | ~~~~^~~~~~~~~~ +#10 881.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 881.6 28 | uint32_t tmp = src; +#10 881.6 | ^~~ +#10 883.1 [5358/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o +#10 884.7 [5359/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o +#10 884.7 In file included from ../c10/core/ScalarType.h:3, +#10 884.7 from ../c10/core/StorageImpl.h:4, +#10 884.7 from ../c10/core/Storage.h:3, +#10 884.7 from ../c10/core/TensorImpl.h:8, +#10 884.7 from ../c10/core/GeneratorImpl.h:8, +#10 884.7 from ../aten/src/ATen/core/Generator.h:22, +#10 884.7 from ../aten/src/ATen/Generator.h:2, +#10 884.7 from ../aten/src/ATen/native/UnaryOps.h:4, +#10 884.7 from /pytorch/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp:2, +#10 884.7 from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp:1: +#10 884.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 884.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 884.7 37 | res = *tempRes; +#10 884.7 | ~~~~^~~~~~~~~~ +#10 884.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 884.7 28 | uint32_t tmp = src; +#10 884.7 | ^~~ +#10 885.0 [5360/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o +#10 891.6 [5361/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o +#10 891.6 In file included from ../c10/core/ScalarType.h:3, +#10 891.6 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 891.6 from ../aten/src/ATen/Dispatch.h:3, +#10 891.6 from /pytorch/aten/src/ATen/native/cpu/CopyKernel.cpp:2, +#10 891.6 from aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp:1: +#10 891.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 891.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 891.6 37 | res = *tempRes; +#10 891.6 | ~~~~^~~~~~~~~~ +#10 891.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 891.6 28 | uint32_t tmp = src; +#10 891.6 | ^~~ +#10 891.6 [5362/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/defer_size_check.cpp.o +#10 892.0 [5363/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/register_interface.cpp.o +#10 893.6 [5364/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp.o +#10 894.3 [5365/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp.o +#10 894.6 [5366/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_fuser.cpp.o +#10 895.0 [5367/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/decompose_silu.cpp.o +#10 897.1 [5368/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/interface.cpp.o +#10 897.1 ../torch/csrc/jit/codegen/onednn/interface.cpp: In function ‘torch::jit::Operation torch::jit::createLlgaKernel(const torch::jit::Node*)’: +#10 897.1 ../torch/csrc/jit/codegen/onednn/interface.cpp:106:3: warning: ‘torch::jit::Operation::Operation(F&&) [with F = torch::jit::createLlgaKernel(const torch::jit::Node*)::; typename std::enable_if*)>, F&&>::value, int>::type = 0]’ is deprecated: Please use void(Stack&) to register operator instead. [-Wdeprecated-declarations] +#10 897.1 106 | }; +#10 897.1 | ^ +#10 897.1 In file included from ../aten/src/ATen/core/boxing/KernelFunction.h:5, +#10 897.1 from ../aten/src/ATen/core/dispatch/Dispatcher.h:4, +#10 897.1 from ../torch/csrc/jit/runtime/operator.h:6, +#10 897.1 from ../torch/csrc/jit/ir/ir.h:7, +#10 897.1 from ../torch/csrc/jit/codegen/onednn/decompose_silu.h:3, +#10 897.1 from ../torch/csrc/jit/codegen/onednn/interface.cpp:2: +#10 897.1 ../aten/src/ATen/core/stack.h:25:3: note: declared here +#10 897.1 25 | Operation(F&& raw): op_([raw = std::forward(raw)](Stack& stack) { +#10 897.1 | ^~~~~~~~~ +#10 897.1 ../torch/csrc/jit/codegen/onednn/interface.cpp: In function ‘torch::jit::Operation torch::jit::createLlgaGuardKernel(const torch::jit::Node*)’: +#10 897.1 ../torch/csrc/jit/codegen/onednn/interface.cpp:171:3: warning: ‘torch::jit::Operation::Operation(F&&) [with F = torch::jit::createLlgaGuardKernel(const torch::jit::Node*)::; typename std::enable_if*)>, F&&>::value, int>::type = 0]’ is deprecated: Please use void(Stack&) to register operator instead. [-Wdeprecated-declarations] +#10 897.1 171 | }; +#10 897.1 | ^ +#10 897.1 In file included from ../aten/src/ATen/core/boxing/KernelFunction.h:5, +#10 897.1 from ../aten/src/ATen/core/dispatch/Dispatcher.h:4, +#10 897.1 from ../torch/csrc/jit/runtime/operator.h:6, +#10 897.1 from ../torch/csrc/jit/ir/ir.h:7, +#10 897.1 from ../torch/csrc/jit/codegen/onednn/decompose_silu.h:3, +#10 897.1 from ../torch/csrc/jit/codegen/onednn/interface.cpp:2: +#10 897.1 ../aten/src/ATen/core/stack.h:25:3: note: declared here +#10 897.1 25 | Operation(F&& raw): op_([raw = std::forward(raw)](Stack& stack) { +#10 897.1 | ^~~~~~~~~ +#10 897.5 [5369/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/layout_propagation.cpp.o +#10 897.9 [5370/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_helper.cpp.o +#10 899.9 [5371/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/guard_shape.cpp.o +#10 900.3 [5372/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/kernel.cpp.o +#10 900.4 [5373/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/prepare_binary.cpp.o +#10 901.8 [5374/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o +#10 901.8 In file included from ../c10/core/ScalarType.h:3, +#10 901.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 901.8 from ../aten/src/ATen/Dispatch.h:3, +#10 901.8 from /pytorch/aten/src/ATen/native/cpu/Activation.cpp:12, +#10 901.8 from aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp:1: +#10 901.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 901.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 901.8 37 | res = *tempRes; +#10 901.8 | ~~~~^~~~~~~~~~ +#10 901.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 901.8 28 | uint32_t tmp = src; +#10 901.8 | ^~~ +#10 906.0 [5375/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o +#10 932.2 [5376/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o +#10 945.9 [5377/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o +#10 945.9 In file included from ../c10/core/ScalarType.h:3, +#10 945.9 from ../aten/src/ATen/core/TensorBase.h:6, +#10 945.9 from ../aten/src/ATen/native/BinaryOps.h:3, +#10 945.9 from /pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp:2, +#10 945.9 from aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp:1: +#10 945.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 945.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 945.9 37 | res = *tempRes; +#10 945.9 | ~~~~^~~~~~~~~~ +#10 945.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 945.9 28 | uint32_t tmp = src; +#10 945.9 | ^~~ +#10 949.3 [5378/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o +#10 951.8 [5379/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o +#10 954.7 [5380/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o +#10 957.1 [5381/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o +#10 957.3 [5382/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o +#10 959.8 [5383/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o +#10 962.9 [5384/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o +#10 963.0 [5385/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o +#10 963.9 [5386/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o +#10 964.5 [5387/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o +#10 964.8 [5388/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o +#10 967.4 [5389/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o +#10 967.4 [5390/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o +#10 967.7 [5391/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o +#10 968.2 [5392/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o +#10 968.5 [5393/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o +#10 969.1 [5394/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o +#10 969.5 [5395/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o +#10 970.2 [5396/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o +#10 970.4 [5397/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o +#10 971.6 [5398/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o +#10 973.2 [5399/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o +#10 973.7 [5400/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o +#10 974.6 [5401/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o +#10 975.6 [5402/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o +#10 975.7 [5403/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o +#10 976.0 [5404/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o +#10 978.4 [5405/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o +#10 978.8 [5406/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o +#10 979.2 [5407/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o +#10 980.3 [5408/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o +#10 981.9 [5409/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o +#10 982.1 [5410/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o +#10 984.2 [5411/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o +#10 984.9 [5412/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o +#10 985.2 [5413/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o +#10 985.8 [5414/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o +#10 986.1 [5415/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o +#10 987.2 [5416/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o +#10 989.3 [5417/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o +#10 989.4 [5418/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o +#10 990.3 [5419/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o +#10 992.0 [5420/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o +#10 992.3 [5421/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o +#10 993.4 [5422/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o +#10 994.8 [5423/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o +#10 994.9 [5424/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o +#10 995.7 [5425/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o +#10 995.7 [5426/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o +#10 997.5 [5427/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o +#10 997.7 [5428/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o +#10 998.1 [5429/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o +#10 998.4 [5430/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o +#10 998.6 [5431/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o +#10 998.6 [5432/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o +#10 998.7 [5433/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o +#10 1000.3 [5434/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o +#10 1000.4 [5435/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o +#10 1002.3 [5436/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o +#10 1006.3 [5437/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o +#10 1007.7 [5438/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o +#10 1008.0 [5439/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o +#10 1008.9 [5440/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o +#10 1009.0 [5441/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o +#10 1009.4 [5442/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o +#10 1011.0 [5443/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o +#10 1011.0 [5444/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o +#10 1012.0 [5445/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o +#10 1012.1 [5446/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o +#10 1013.1 [5447/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o +#10 1013.6 [5448/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o +#10 1014.8 [5449/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o +#10 1015.4 [5450/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o +#10 1017.2 [5451/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o +#10 1018.4 [5452/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o +#10 1018.7 [5453/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o +#10 1018.7 [5454/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o +#10 1019.1 [5455/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o +#10 1020.6 [5456/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o +#10 1022.1 [5457/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o +#10 1023.1 [5458/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o +#10 1023.4 [5459/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o +#10 1024.7 [5460/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o +#10 1025.3 [5461/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o +#10 1025.6 [5462/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o +#10 1026.2 [5463/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o +#10 1026.8 [5464/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o +#10 1027.0 [5465/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o +#10 1028.3 [5466/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o +#10 1028.5 [5467/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o +#10 1028.9 [5468/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o +#10 1028.9 [5469/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o +#10 1029.8 [5470/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o +#10 1031.9 [5471/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o +#10 1032.2 [5472/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o +#10 1033.7 [5473/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o +#10 1033.8 [5474/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o +#10 1035.0 [5475/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o +#10 1036.5 [5476/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o +#10 1037.6 [5477/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o +#10 1038.5 [5478/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o +#10 1038.6 [5479/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o +#10 1039.2 [5480/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o +#10 1040.4 [5481/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o +#10 1042.1 [5482/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o +#10 1042.6 [5483/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o +#10 1043.5 [5484/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o +#10 1043.7 [5485/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o +#10 1044.4 [5486/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o +#10 1044.8 [5487/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o +#10 1044.8 [5488/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o +#10 1045.7 [5489/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o +#10 1046.7 [5490/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o +#10 1048.0 [5491/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o +#10 1049.7 [5492/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o +#10 1049.8 [5493/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o +#10 1050.3 [5494/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/cuda_graph_fuser.cpp.o +#10 1050.4 [5495/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o +#10 1052.1 [5496/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o +#10 1052.4 [5497/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o +#10 1052.8 [5498/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o +#10 1054.0 [5499/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o +#10 1054.1 [5500/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o +#10 1054.2 [5501/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o +#10 1054.3 [5502/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o +#10 1056.7 [5503/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o +#10 1058.4 [5504/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o +#10 1058.5 [5505/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o +#10 1058.8 [5506/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o +#10 1060.4 [5507/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o +#10 1060.9 [5508/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o +#10 1061.5 [5509/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o +#10 1062.8 [5510/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o +#10 1062.8 [5511/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o +#10 1064.1 [5512/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o +#10 1065.7 [5513/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o +#10 1066.3 [5514/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o +#10 1066.7 [5515/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o +#10 1067.9 [5516/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o +#10 1068.6 [5517/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o +#10 1069.0 [5518/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o +#10 1069.7 [5519/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o +#10 1069.9 [5520/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o +#10 1071.2 [5521/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o +#10 1071.4 [5522/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o +#10 1073.6 [5523/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o +#10 1074.0 [5524/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o +#10 1074.0 [5525/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o +#10 1074.6 [5526/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o +#10 1075.6 [5527/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o +#10 1076.0 [5528/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o +#10 1076.0 [5529/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o +#10 1076.6 [5530/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o +#10 1077.5 [5531/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o +#10 1079.3 [5532/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o +#10 1079.6 [5533/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o +#10 1079.8 [5534/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o +#10 1081.6 [5535/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o +#10 1083.1 [5536/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o +#10 1083.5 [5537/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o +#10 1083.7 [5538/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o +#10 1083.9 [5539/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o +#10 1084.0 [5540/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o +#10 1084.7 [5541/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o +#10 1089.0 [5542/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o +#10 1091.3 [5543/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o +#10 1091.8 [5544/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o +#10 1091.9 [5545/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o +#10 1092.0 [5546/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o +#10 1092.3 [5547/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o +#10 1092.5 [5548/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o +#10 1092.5 [5549/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o +#10 1093.3 [5550/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o +#10 1093.8 [5551/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o +#10 1094.2 [5552/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o +#10 1094.4 [5553/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o +#10 1096.5 [5554/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o +#10 1098.0 [5555/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o +#10 1098.9 [5556/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o +#10 1100.3 [5557/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o +#10 1101.5 [5558/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o +#10 1102.4 [5559/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o +#10 1102.4 [5560/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o +#10 1102.8 [5561/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o +#10 1103.1 [5562/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o +#10 1103.4 [5563/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o +#10 1103.5 [5564/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o +#10 1104.7 [5565/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o +#10 1105.8 [5566/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o +#10 1108.0 [5567/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o +#10 1109.4 [5568/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o +#10 1109.5 [5569/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o +#10 1109.6 [5570/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o +#10 1110.7 [5571/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o +#10 1111.2 [5572/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o +#10 1111.4 [5573/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o +#10 1111.5 [5574/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o +#10 1111.9 [5575/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o +#10 1112.2 [5576/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o +#10 1112.5 [5577/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o +#10 1114.5 [5578/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o +#10 1116.5 [5579/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o +#10 1117.1 [5580/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o +#10 1117.6 [5581/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o +#10 1117.9 [5582/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o +#10 1119.3 [5583/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o +#10 1122.0 [5584/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o +#10 1123.4 [5585/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o +#10 1123.5 [5586/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o +#10 1124.0 [5587/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o +#10 1124.3 [5588/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o +#10 1125.6 [5589/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o +#10 1126.0 [5590/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o +#10 1128.3 [5591/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o +#10 1129.6 [5592/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o +#10 1129.9 [5593/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o +#10 1130.1 [5594/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o +#10 1130.2 [5595/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o +#10 1132.2 [5596/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o +#10 1135.9 [5597/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o +#10 1136.7 [5598/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o +#10 1136.9 [5599/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o +#10 1138.2 [5600/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o +#10 1140.3 [5601/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o +#10 1140.6 [5602/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o +#10 1141.3 [5603/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o +#10 1142.0 [5604/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o +#10 1142.7 [5605/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o +#10 1144.7 [5606/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o +#10 1147.4 [5607/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o +#10 1148.9 [5608/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o +#10 1150.3 [5609/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o +#10 1152.5 [5610/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o +#10 1154.3 [5611/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o +#10 1155.0 [5612/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o +#10 1155.8 [5613/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o +#10 1156.8 [5614/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o +#10 1158.1 [5615/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o +#10 1158.1 In file included from ../c10/core/ScalarType.h:3, +#10 1158.1 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1158.1 from ../aten/src/ATen/EmptyTensor.h:2, +#10 1158.1 from ../aten/src/ATen/Utils.h:3, +#10 1158.1 from ../torch/csrc/jit/runtime/static/ops.h:3, +#10 1158.1 from ../torch/csrc/jit/runtime/static/ops.cpp:1: +#10 1158.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1158.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1158.1 37 | res = *tempRes; +#10 1158.1 | ~~~~^~~~~~~~~~ +#10 1158.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1158.1 28 | uint32_t tmp = src; +#10 1158.1 | ^~~ +#10 1158.7 [5616/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o +#10 1159.1 [5617/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o +#10 1159.2 [5618/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o +#10 1159.2 [5619/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o +#10 1159.6 [5620/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o +#10 1161.8 [5621/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o +#10 1163.6 [5622/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o +#10 1163.6 In file included from ../c10/core/ScalarType.h:3, +#10 1163.6 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1163.6 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1163.6 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1163.6 from ../torch/csrc/jit/tensorexpr/bounds_overlap.cpp:1: +#10 1163.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1163.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1163.6 37 | res = *tempRes; +#10 1163.6 | ~~~~^~~~~~~~~~ +#10 1163.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1163.6 28 | uint32_t tmp = src; +#10 1163.6 | ^~~ +#10 1164.5 [5623/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o +#10 1164.7 [5624/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o +#10 1165.8 [5625/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o +#10 1165.9 [5626/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o +#10 1166.6 [5627/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o +#10 1170.9 [5628/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o +#10 1170.9 In file included from ../c10/core/ScalarType.h:3, +#10 1170.9 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1170.9 from ../torch/csrc/jit/tensorexpr/exceptions.h:4, +#10 1170.9 from ../torch/csrc/jit/tensorexpr/ir.h:8, +#10 1170.9 from ../torch/csrc/jit/tensorexpr/ir.cpp:1: +#10 1170.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1170.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1170.9 37 | res = *tempRes; +#10 1170.9 | ~~~~^~~~~~~~~~ +#10 1170.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1170.9 28 | uint32_t tmp = src; +#10 1170.9 | ^~~ +#10 1171.0 [5629/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o +#10 1172.1 [5630/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o +#10 1176.0 [5631/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o +#10 1178.4 [5632/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o +#10 1178.6 [5633/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o +#10 1179.2 [5634/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o +#10 1180.4 [5635/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o +#10 1180.6 [5636/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o +#10 1180.8 [5637/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o +#10 1180.8 In file included from ../c10/core/ScalarType.h:3, +#10 1180.8 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1180.8 from ../torch/csrc/jit/tensorexpr/ir_printer.h:5, +#10 1180.8 from ../torch/csrc/jit/tensorexpr/ir_printer.cpp:1: +#10 1180.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1180.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1180.8 37 | res = *tempRes; +#10 1180.8 | ~~~~^~~~~~~~~~ +#10 1180.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1180.8 28 | uint32_t tmp = src; +#10 1180.8 | ^~~ +#10 1181.1 [5638/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o +#10 1186.6 [5639/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o +#10 1186.6 In file included from ../c10/core/ScalarType.h:3, +#10 1186.6 from ../c10/core/StorageImpl.h:4, +#10 1186.6 from ../c10/core/Storage.h:3, +#10 1186.6 from ../c10/core/TensorImpl.h:8, +#10 1186.6 from ../c10/core/GeneratorImpl.h:8, +#10 1186.6 from ../aten/src/ATen/core/Generator.h:22, +#10 1186.6 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1186.6 from ../aten/src/ATen/Context.h:3, +#10 1186.6 from ../aten/src/ATen/ATen.h:7, +#10 1186.6 from ../torch/csrc/jit/tensorexpr/codegen.h:3, +#10 1186.6 from ../torch/csrc/jit/tensorexpr/eval.h:14, +#10 1186.6 from ../torch/csrc/jit/tensorexpr/eval.cpp:1: +#10 1186.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1186.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1186.6 37 | res = *tempRes; +#10 1186.6 | ~~~~^~~~~~~~~~ +#10 1186.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1186.6 28 | uint32_t tmp = src; +#10 1186.6 | ^~~ +#10 1190.7 [5640/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o +#10 1194.6 [5641/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o +#10 1194.6 In file included from ../c10/core/ScalarType.h:3, +#10 1194.6 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1194.6 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1194.6 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1194.6 from ../torch/csrc/jit/tensorexpr/ir_simplifier.cpp:2: +#10 1194.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1194.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1194.6 37 | res = *tempRes; +#10 1194.6 | ~~~~^~~~~~~~~~ +#10 1194.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1194.6 28 | uint32_t tmp = src; +#10 1194.6 | ^~~ +#10 1197.2 [5642/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o +#10 1199.0 [5643/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o +#10 1199.0 In file included from ../c10/core/ScalarType.h:3, +#10 1199.0 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1199.0 from ../torch/csrc/jit/tensorexpr/loopnest.h:9, +#10 1199.0 from ../torch/csrc/jit/tensorexpr/operators/conv2d.cpp:3: +#10 1199.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1199.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1199.0 37 | res = *tempRes; +#10 1199.0 | ~~~~^~~~~~~~~~ +#10 1199.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1199.0 28 | uint32_t tmp = src; +#10 1199.0 | ^~~ +#10 1199.1 [5644/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o +#10 1199.2 [5645/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o +#10 1199.6 [5646/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o +#10 1199.6 In file included from ../c10/core/ScalarType.h:3, +#10 1199.6 from ../c10/core/Scalar.h:11, +#10 1199.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1199.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1199.6 from ../torch/csrc/jit/ir/attributes.h:2, +#10 1199.6 from ../torch/csrc/jit/ir/ir.h:3, +#10 1199.6 from ../torch/csrc/jit/tensorexpr/kernel.h:4, +#10 1199.6 from ../torch/csrc/jit/tensorexpr/kernel.cpp:2: +#10 1199.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1199.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1199.6 37 | res = *tempRes; +#10 1199.6 | ~~~~^~~~~~~~~~ +#10 1199.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1199.6 28 | uint32_t tmp = src; +#10 1199.6 | ^~~ +#10 1199.7 [5647/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o +#10 1200.0 [5648/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o +#10 1200.0 [5649/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o +#10 1200.0 In file included from ../c10/core/ScalarType.h:3, +#10 1200.0 from ../torch/csrc/jit/tensorexpr/mem_dependency_checker.h:2, +#10 1200.0 from ../torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp:1: +#10 1200.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1200.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1200.0 37 | res = *tempRes; +#10 1200.0 | ~~~~^~~~~~~~~~ +#10 1200.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1200.0 28 | uint32_t tmp = src; +#10 1200.0 | ^~~ +#10 1200.2 [5650/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o +#10 1200.4 [5651/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o +#10 1200.4 In file included from ../c10/core/ScalarType.h:3, +#10 1200.4 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1200.4 from ../torch/csrc/jit/tensorexpr/loopnest.h:9, +#10 1200.4 from ../torch/csrc/jit/tensorexpr/loopnest.cpp:1: +#10 1200.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1200.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1200.4 37 | res = *tempRes; +#10 1200.4 | ~~~~^~~~~~~~~~ +#10 1200.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1200.4 28 | uint32_t tmp = src; +#10 1200.4 | ^~~ +#10 1201.8 [5652/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o +#10 1202.0 [5653/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o +#10 1202.2 [5654/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o +#10 1202.2 In file included from ../c10/core/ScalarType.h:3, +#10 1202.2 from ../c10/core/Scalar.h:11, +#10 1202.2 from aten/src/ATen/core/TensorBody.h:16, +#10 1202.2 from ../aten/src/ATen/core/jit_type.h:5, +#10 1202.2 from ../aten/src/ATen/core/function_schema.h:6, +#10 1202.2 from ../torch/csrc/jit/frontend/function_schema_parser.h:3, +#10 1202.2 from ../torch/csrc/jit/tensorexpr/lowerings.cpp:1: +#10 1202.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1202.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1202.2 37 | res = *tempRes; +#10 1202.2 | ~~~~^~~~~~~~~~ +#10 1202.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1202.2 28 | uint32_t tmp = src; +#10 1202.2 | ^~~ +#10 1202.9 [5655/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o +#10 1202.9 In file included from ../c10/core/ScalarType.h:3, +#10 1202.9 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1202.9 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1202.9 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1202.9 from ../torch/csrc/jit/tensorexpr/ir_simplifier.h:3, +#10 1202.9 from ../torch/csrc/jit/tensorexpr/operators/misc.cpp:1: +#10 1202.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1202.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1202.9 37 | res = *tempRes; +#10 1202.9 | ~~~~^~~~~~~~~~ +#10 1202.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1202.9 28 | uint32_t tmp = src; +#10 1202.9 | ^~~ +#10 1204.6 [5656/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o +#10 1205.0 [5657/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o +#10 1207.5 [5658/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o +#10 1207.7 [5659/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o +#10 1208.2 [5660/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o +#10 1208.7 [5661/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o +#10 1208.7 [5662/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o +#10 1208.8 [5663/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o +#10 1208.8 [5664/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o +#10 1209.3 [5665/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o +#10 1209.5 [5666/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o +#10 1209.6 [5667/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o +#10 1209.7 [5668/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o +#10 1210.9 [5669/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o +#10 1211.0 [5670/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o +#10 1211.3 [5671/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o +#10 1211.5 [5672/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o +#10 1212.7 [5673/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o +#10 1215.6 [5674/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o +#10 1216.2 [5675/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o +#10 1216.2 In file included from ../c10/core/ScalarType.h:3, +#10 1216.2 from ../torch/csrc/jit/tensorexpr/registerizer.h:2, +#10 1216.2 from ../torch/csrc/jit/tensorexpr/registerizer.cpp:1: +#10 1216.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1216.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1216.2 37 | res = *tempRes; +#10 1216.2 | ~~~~^~~~~~~~~~ +#10 1216.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1216.2 28 | uint32_t tmp = src; +#10 1216.2 | ^~~ +#10 1216.5 [5676/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o +#10 1216.5 [5677/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o +#10 1217.2 [5678/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o +#10 1218.2 [5679/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o +#10 1218.5 [5680/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o +#10 1218.9 [5681/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o +#10 1218.9 [5682/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o +#10 1219.2 [5683/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o +#10 1219.7 [5684/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o +#10 1220.4 [5685/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o +#10 1220.5 [5686/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o +#10 1220.8 [5687/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o +#10 1221.3 [5688/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o +#10 1222.0 [5689/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o +#10 1223.7 [5690/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o +#10 1224.2 [5691/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o +#10 1224.2 [5692/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o +#10 1225.3 [5693/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o +#10 1225.9 [5694/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o +#10 1225.9 [5695/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o +#10 1226.2 [5696/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o +#10 1227.0 [5697/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o +#10 1227.2 [5698/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o +#10 1229.2 [5699/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o +#10 1231.3 [5700/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o +#10 1232.3 [5701/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_graph_observer.cpp.o +#10 1232.9 [5702/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o +#10 1233.5 [5703/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o +#10 1233.6 [5704/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o +#10 1234.2 [5705/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o +#10 1234.3 [5706/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o +#10 1234.5 [5707/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o +#10 1234.9 [5708/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o +#10 1239.0 [5709/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o +#10 1239.9 [5710/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o +#10 1241.2 [5711/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o +#10 1241.2 [5712/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o +#10 1241.6 [5713/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o +#10 1241.9 [5714/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o +#10 1242.4 [5715/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/random_ops.cpp.o +#10 1243.7 [5716/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o +#10 1244.0 [5717/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o +#10 1245.5 [5718/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o +#10 1247.1 [5719/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o +#10 1248.0 [5720/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o +#10 1248.1 [5721/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o +#10 1249.0 [5722/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o +#10 1250.9 [5723/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o +#10 1251.8 [5724/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o +#10 1252.1 [5725/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/itt.cpp.o +#10 1252.6 [5726/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/itt_wrapper.cpp.o +#10 1253.4 [5727/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o +#10 1253.6 [5728/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o +#10 1253.9 [5729/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o +#10 1253.9 [5730/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o +#10 1255.1 [5731/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o +#10 1257.1 [5732/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o +#10 1257.4 [5733/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o +#10 1258.0 [5734/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o +#10 1258.2 [5735/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o +#10 1258.3 [5736/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o +#10 1258.9 [5737/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o +#10 1261.0 [5738/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp.o +#10 1263.0 [5739/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o +#10 1263.5 [5740/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o +#10 1264.0 [5741/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o +#10 1265.0 [5742/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/FileStore.cpp.o +#10 1265.3 [5743/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o +#10 1265.4 [5744/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o +#10 1265.5 [5745/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp.o +#10 1266.6 [5746/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o +#10 1267.7 [5747/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o +#10 1268.2 [5748/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ParamCommsUtils.cpp.o +#10 1268.6 [5749/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/PrefixStore.cpp.o +#10 1270.3 [5750/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Backend.cpp.o +#10 1271.0 [5751/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o +#10 1271.4 [5752/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Store.cpp.o +#10 1271.4 [5753/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o +#10 1271.4 In file included from ../c10/core/ScalarType.h:3, +#10 1271.4 from ../c10/core/StorageImpl.h:4, +#10 1271.4 from ../c10/core/Storage.h:3, +#10 1271.4 from ../c10/core/TensorImpl.h:8, +#10 1271.4 from ../c10/core/GeneratorImpl.h:8, +#10 1271.4 from ../aten/src/ATen/core/Generator.h:22, +#10 1271.4 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1271.4 from ../aten/src/ATen/Context.h:3, +#10 1271.4 from ../aten/src/ATen/ATen.h:7, +#10 1271.4 from ../torch/csrc/autograd/FunctionsManual.h:12, +#10 1271.4 from ../torch/csrc/autograd/FunctionsManual.cpp:1: +#10 1271.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1271.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1271.4 37 | res = *tempRes; +#10 1271.4 | ~~~~^~~~~~~~~~ +#10 1271.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1271.4 28 | uint32_t tmp = src; +#10 1271.4 | ^~~ +#10 1271.5 [5754/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/exception.cpp.o +#10 1273.3 [5755/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/debug.cpp.o +#10 1273.3 [5756/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logging.cpp.o +#10 1273.6 [5757/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o +#10 1276.7 [5758/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp.o +#10 1276.8 [5759/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Utils.cpp.o +#10 1278.4 [5760/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/sequence_num.cpp.o +#10 1278.5 [5761/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/TCPStore.cpp.o +#10 1278.5 [5762/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Ops.cpp.o +#10 1279.2 [5763/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o +#10 1281.7 [5764/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/comm.cpp.o +#10 1282.4 [5765/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroup.cpp.o +#10 1282.5 [5766/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/quantization/quantization.cpp.o +#10 1282.5 [5767/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp.o +#10 1284.2 [5768/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/socket.cpp.o +#10 1286.7 [5769/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Work.cpp.o +#10 1287.1 [5770/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp.o +#10 1287.3 [5771/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/utils.cpp.o +#10 1289.4 [5772/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/autograd.cpp.o +#10 1289.5 [5773/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp.o +#10 1290.2 [5774/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp.o +#10 1290.2 [5775/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logger.cpp.o +#10 1292.5 [5776/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/container.cpp.o +#10 1293.5 [5777/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/context.cpp.o +#10 1295.6 [5778/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/reducer.cpp.o +#10 1295.8 [5779/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/default_comm_hooks.cpp.o +#10 1296.9 [5780/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp.o +#10 1297.9 [5781/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp.o +#10 1298.9 [5782/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp.o +#10 1299.3 [5783/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/HashStore.cpp.o +#10 1299.5 [5784/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp.o +#10 1299.6 [5785/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/engine/dist_engine.cpp.o +#10 1299.7 [5786/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp.o +#10 1302.2 [5787/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp.o +#10 1305.0 [5788/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp.o +#10 1305.4 [5789/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp.o +#10 1305.5 [5790/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp.o +#10 1305.9 [5791/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp.o +#10 1306.2 [5792/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/message.cpp.o +#10 1306.3 [5793/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp.o +#10 1308.8 [5794/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_call.cpp.o +#10 1310.5 [5795/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_resp.cpp.o +#10 1311.9 [5796/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_remote_call.cpp.o +#10 1312.7 [5797/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp.o +#10 1313.2 [5798/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rpc_agent.cpp.o +#10 1315.3 [5799/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback.cpp.o +#10 1315.3 [5800/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/agent_utils.cpp.o +#10 1317.7 [5801/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o +#10 1318.1 [5802/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/types.cpp.o +#10 1321.0 [5803/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_resp.cpp.o +#10 1321.2 [5804/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_impl.cpp.o +#10 1321.2 [5805/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_proto.cpp.o +#10 1322.1 [5806/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o +#10 1322.4 [5807/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_call.cpp.o +#10 1322.7 [5808/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_utils.cpp.o +#10 1323.3 [5809/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_remote_call.cpp.o +#10 1325.7 [5810/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback_no_python.cpp.o +#10 1325.8 [5811/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_context.cpp.o +#10 1327.3 [5812/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o +#10 1329.5 [5813/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o +#10 1331.9 [5814/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp.o +#10 1332.1 [5815/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o +#10 1335.1 [5816/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o +#10 1335.4 [5817/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o +#10 1335.7 [5818/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o +#10 1335.7 [5819/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o +#10 1335.8 [5820/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/torchscript_functions.cpp.o +#10 1337.0 [5821/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_agent.cpp.o +#10 1338.2 [5822/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o +#10 1339.6 [5823/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/utils.cpp.o +#10 1340.0 [5824/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o +#10 1341.9 [5825/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o +#10 1342.7 [5826/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o +#10 1346.3 [5827/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o +#10 1348.2 [5828/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o +#10 1348.6 [5829/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o +#10 1351.6 [5830/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o +#10 1352.3 [5831/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o +#10 1352.9 [5832/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o +#10 1353.1 [5833/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o +#10 1354.1 [5834/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o +#10 1356.4 [5835/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o +#10 1356.4 [5836/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o +#10 1356.4 [5837/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o +#10 1357.6 [5838/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o +#10 1361.0 [5839/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o +#10 1362.6 [5840/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o +#10 1362.7 [5841/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o +#10 1362.9 [5842/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o +#10 1364.2 [5843/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o +#10 1364.7 [5844/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o +#10 1366.2 [5845/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o +#10 1366.3 [5846/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o +#10 1366.3 [5847/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o +#10 1366.8 [5848/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o +#10 1367.2 [5849/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o +#10 1367.6 [5850/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o +#10 1368.5 [5851/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o +#10 1369.2 [5852/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o +#10 1370.8 [5853/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o +#10 1371.3 [5854/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o +#10 1371.7 [5855/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o +#10 1372.6 [5856/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o +#10 1372.9 [5857/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o +#10 1376.0 [5858/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.AVX2.cpp.o +#10 1377.3 [5859/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.AVX2.cpp.o +#10 1378.6 [5860/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o +#10 1379.4 [5861/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o +#10 1379.5 [5862/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o +#10 1380.5 [5863/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.AVX2.cpp.o +#10 1380.5 In file included from ../c10/core/ScalarType.h:3, +#10 1380.5 from ../aten/src/ATen/AccumulateType.h:3, +#10 1380.5 from ../aten/src/ATen/native/Math.h:3, +#10 1380.5 from ../aten/src/ATen/cpu/vec/vec_base.h:25, +#10 1380.5 from ../aten/src/ATen/cpu/vec/vec256/vec256.h:8, +#10 1380.5 from ../aten/src/ATen/cpu/vec/vec.h:6, +#10 1380.5 from ../aten/src/ATen/cpu/vec/functional_base.h:6, +#10 1380.5 from ../aten/src/ATen/cpu/vec/functional.h:3, +#10 1380.5 from ../aten/src/ATen/native/ufunc/add.h:6, +#10 1380.5 from /pytorch/build/aten/src/ATen/UfuncCPUKernel_add.cpp:3, +#10 1380.5 from aten/src/ATen/UfuncCPUKernel_add.cpp.AVX2.cpp:1: +#10 1380.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1380.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1380.5 37 | res = *tempRes; +#10 1380.5 | ~~~~^~~~~~~~~~ +#10 1380.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1380.5 28 | uint32_t tmp = src; +#10 1380.5 | ^~~ +#10 1380.7 [5864/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.AVX2.cpp.o +#10 1380.7 [5865/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o +#10 1382.3 [5866/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o +#10 1383.3 [5867/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o +#10 1383.3 [5868/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.AVX2.cpp.o +#10 1383.5 [5869/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o +#10 1383.6 [5870/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o +#10 1383.8 [5871/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o +#10 1386.2 [5872/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o +#10 1387.6 [5873/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.AVX2.cpp.o +#10 1387.6 In file included from ../c10/core/ScalarType.h:3, +#10 1387.6 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1387.6 from /pytorch/aten/src/ATen/native/cpu/WeightNormKernel.cpp:2, +#10 1387.6 from aten/src/ATen/native/cpu/WeightNormKernel.cpp.AVX2.cpp:1: +#10 1387.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1387.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1387.6 37 | res = *tempRes; +#10 1387.6 | ~~~~^~~~~~~~~~ +#10 1387.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1387.6 28 | uint32_t tmp = src; +#10 1387.6 | ^~~ +#10 1387.8 [5874/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.AVX2.cpp.o +#10 1387.8 In file included from ../c10/core/ScalarType.h:3, +#10 1387.8 from ../c10/core/Scalar.h:11, +#10 1387.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1387.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1387.8 from ../aten/src/ATen/native/layer_norm.h:3, +#10 1387.8 from /pytorch/aten/src/ATen/native/cpu/layer_norm_kernel.cpp:2, +#10 1387.8 from aten/src/ATen/native/cpu/layer_norm_kernel.cpp.AVX2.cpp:1: +#10 1387.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1387.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1387.8 37 | res = *tempRes; +#10 1387.8 | ~~~~^~~~~~~~~~ +#10 1387.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1387.8 28 | uint32_t tmp = src; +#10 1387.8 | ^~~ +#10 1388.8 [5875/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.AVX2.cpp.o +#10 1389.9 [5876/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.AVX2.cpp.o +#10 1389.9 In file included from ../c10/core/ScalarType.h:3, +#10 1389.9 from ../c10/core/Scalar.h:11, +#10 1389.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1389.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1389.9 from /pytorch/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp:2, +#10 1389.9 from aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.AVX2.cpp:1: +#10 1389.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1389.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1389.9 37 | res = *tempRes; +#10 1389.9 | ~~~~^~~~~~~~~~ +#10 1389.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1389.9 28 | uint32_t tmp = src; +#10 1389.9 | ^~~ +#10 1390.9 [5877/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.AVX2.cpp.o +#10 1390.9 In file included from ../c10/core/ScalarType.h:3, +#10 1390.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1390.9 from ../aten/src/ATen/Dispatch.h:3, +#10 1390.9 from /pytorch/aten/src/ATen/native/cpu/Unfold2d.cpp:2, +#10 1390.9 from aten/src/ATen/native/cpu/Unfold2d.cpp.AVX2.cpp:1: +#10 1390.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1390.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1390.9 37 | res = *tempRes; +#10 1390.9 | ~~~~^~~~~~~~~~ +#10 1390.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1390.9 28 | uint32_t tmp = src; +#10 1390.9 | ^~~ +#10 1391.7 [5878/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.AVX2.cpp.o +#10 1391.7 In file included from ../c10/core/ScalarType.h:3, +#10 1391.7 from ../c10/core/Scalar.h:11, +#10 1391.7 from aten/src/ATen/core/TensorBody.h:16, +#10 1391.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 1391.7 from ../aten/src/ATen/native/batch_norm.h:3, +#10 1391.7 from /pytorch/aten/src/ATen/native/cpu/batch_norm_kernel.cpp:2, +#10 1391.7 from aten/src/ATen/native/cpu/batch_norm_kernel.cpp.AVX2.cpp:1: +#10 1391.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1391.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1391.7 37 | res = *tempRes; +#10 1391.7 | ~~~~^~~~~~~~~~ +#10 1391.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1391.7 28 | uint32_t tmp = src; +#10 1391.7 | ^~~ +#10 1391.9 [5879/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.AVX2.cpp.o +#10 1392.6 [5880/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.AVX2.cpp.o +#10 1392.6 In file included from ../c10/core/ScalarType.h:3, +#10 1392.6 from ../aten/src/ATen/AccumulateType.h:3, +#10 1392.6 from /pytorch/aten/src/ATen/native/cpu/SumKernel.cpp:2, +#10 1392.6 from aten/src/ATen/native/cpu/SumKernel.cpp.AVX2.cpp:1: +#10 1392.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1392.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1392.6 37 | res = *tempRes; +#10 1392.6 | ~~~~^~~~~~~~~~ +#10 1392.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1392.6 28 | uint32_t tmp = src; +#10 1392.6 | ^~~ +#10 1394.1 [5881/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.AVX2.cpp.o +#10 1394.1 In file included from ../c10/core/ScalarType.h:3, +#10 1394.1 from ../c10/core/Scalar.h:11, +#10 1394.1 from aten/src/ATen/core/TensorBody.h:16, +#10 1394.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 1394.1 from /pytorch/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp:4, +#10 1394.1 from aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.AVX2.cpp:1: +#10 1394.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1394.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1394.1 37 | res = *tempRes; +#10 1394.1 | ~~~~^~~~~~~~~~ +#10 1394.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1394.1 28 | uint32_t tmp = src; +#10 1394.1 | ^~~ +#10 1396.1 [5882/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.AVX2.cpp.o +#10 1396.7 [5883/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o +#10 1396.7 In file included from ../c10/core/ScalarType.h:3, +#10 1396.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1396.7 from ../aten/src/ATen/Dispatch.h:3, +#10 1396.7 from /pytorch/aten/src/ATen/native/cpu/SoftMaxKernel.cpp:8, +#10 1396.7 from aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp:1: +#10 1396.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1396.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1396.7 37 | res = *tempRes; +#10 1396.7 | ~~~~^~~~~~~~~~ +#10 1396.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1396.7 28 | uint32_t tmp = src; +#10 1396.7 | ^~~ +#10 1397.9 [5884/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.AVX2.cpp.o +#10 1397.9 In file included from ../c10/core/ScalarType.h:3, +#10 1397.9 from ../c10/core/Scalar.h:11, +#10 1397.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1397.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1397.9 from /pytorch/aten/src/ATen/native/cpu/group_norm_kernel.cpp:8, +#10 1397.9 from aten/src/ATen/native/cpu/group_norm_kernel.cpp.AVX2.cpp:1: +#10 1397.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1397.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1397.9 37 | res = *tempRes; +#10 1397.9 | ~~~~^~~~~~~~~~ +#10 1397.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1397.9 28 | uint32_t tmp = src; +#10 1397.9 | ^~~ +#10 1398.3 [5885/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.AVX2.cpp.o +#10 1398.3 In file included from ../c10/core/ScalarType.h:3, +#10 1398.3 from ../c10/core/Scalar.h:11, +#10 1398.3 from aten/src/ATen/core/TensorBody.h:16, +#10 1398.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 1398.3 from /pytorch/aten/src/ATen/native/cpu/UpSampleKernel.cpp:2, +#10 1398.3 from aten/src/ATen/native/cpu/UpSampleKernel.cpp.AVX2.cpp:1: +#10 1398.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1398.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1398.3 37 | res = *tempRes; +#10 1398.3 | ~~~~^~~~~~~~~~ +#10 1398.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1398.3 28 | uint32_t tmp = src; +#10 1398.3 | ^~~ +#10 1399.7 [5886/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.AVX2.cpp.o +#10 1402.8 [5887/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.AVX2.cpp.o +#10 1402.8 In file included from ../c10/core/ScalarType.h:3, +#10 1402.8 from ../c10/core/Scalar.h:11, +#10 1402.8 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 1402.8 from /pytorch/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp:2, +#10 1402.8 from aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.AVX2.cpp:1: +#10 1402.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1402.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1402.8 37 | res = *tempRes; +#10 1402.8 | ~~~~^~~~~~~~~~ +#10 1402.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1402.8 28 | uint32_t tmp = src; +#10 1402.8 | ^~~ +#10 1403.5 [5888/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.AVX2.cpp.o +#10 1403.5 In file included from ../c10/core/ScalarType.h:3, +#10 1403.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1403.5 from ../aten/src/ATen/Dispatch.h:3, +#10 1403.5 from /pytorch/aten/src/ATen/native/cpu/PowKernel.cpp:3, +#10 1403.5 from aten/src/ATen/native/cpu/PowKernel.cpp.AVX2.cpp:1: +#10 1403.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1403.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1403.5 37 | res = *tempRes; +#10 1403.5 | ~~~~^~~~~~~~~~ +#10 1403.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1403.5 28 | uint32_t tmp = src; +#10 1403.5 | ^~~ +#10 1405.5 [5889/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o +#10 1405.5 In file included from ../c10/core/ScalarType.h:3, +#10 1405.5 from ../c10/core/Scalar.h:11, +#10 1405.5 from aten/src/ATen/core/TensorBody.h:16, +#10 1405.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 1405.5 from /pytorch/aten/src/ATen/native/cpu/TensorCompareKernel.cpp:2, +#10 1405.5 from aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp:1: +#10 1405.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1405.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1405.5 37 | res = *tempRes; +#10 1405.5 | ~~~~^~~~~~~~~~ +#10 1405.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1405.5 28 | uint32_t tmp = src; +#10 1405.5 | ^~~ +#10 1405.6 [5890/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.AVX2.cpp.o +#10 1405.6 In file included from ../c10/core/ScalarType.h:3, +#10 1405.6 from ../c10/core/Scalar.h:11, +#10 1405.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1405.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1405.6 from /pytorch/aten/src/ATen/native/cpu/MultinomialKernel.cpp:2, +#10 1405.6 from aten/src/ATen/native/cpu/MultinomialKernel.cpp.AVX2.cpp:1: +#10 1405.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1405.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1405.6 37 | res = *tempRes; +#10 1405.6 | ~~~~^~~~~~~~~~ +#10 1405.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1405.6 28 | uint32_t tmp = src; +#10 1405.6 | ^~~ +#10 1405.8 [5891/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.AVX2.cpp.o +#10 1405.8 [5892/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.AVX2.cpp.o +#10 1406.0 [5893/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.AVX2.cpp.o +#10 1406.9 [5894/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.AVX2.cpp.o +#10 1406.9 In file included from ../c10/core/ScalarType.h:3, +#10 1406.9 from ../c10/core/Scalar.h:11, +#10 1406.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1406.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1406.9 from /pytorch/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp:2, +#10 1406.9 from aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.AVX2.cpp:1: +#10 1406.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1406.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1406.9 37 | res = *tempRes; +#10 1406.9 | ~~~~^~~~~~~~~~ +#10 1406.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1406.9 28 | uint32_t tmp = src; +#10 1406.9 | ^~~ +#10 1408.5 [5895/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.AVX2.cpp.o +#10 1408.5 In file included from ../c10/core/ScalarType.h:3, +#10 1408.5 from ../c10/core/Scalar.h:11, +#10 1408.5 from aten/src/ATen/core/TensorBody.h:16, +#10 1408.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 1408.5 from /pytorch/aten/src/ATen/native/cpu/MaxPooling.cpp:2, +#10 1408.5 from aten/src/ATen/native/cpu/MaxPooling.cpp.AVX2.cpp:1: +#10 1408.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1408.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1408.5 37 | res = *tempRes; +#10 1408.5 | ~~~~^~~~~~~~~~ +#10 1408.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1408.5 28 | uint32_t tmp = src; +#10 1408.5 | ^~~ +#10 1408.6 [5896/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.AVX2.cpp.o +#10 1408.6 In file included from ../c10/core/ScalarType.h:3, +#10 1408.6 from ../c10/core/Scalar.h:11, +#10 1408.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1408.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1408.6 from /pytorch/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp:2, +#10 1408.6 from aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.AVX2.cpp:1: +#10 1408.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1408.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1408.6 37 | res = *tempRes; +#10 1408.6 | ~~~~^~~~~~~~~~ +#10 1408.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1408.6 28 | uint32_t tmp = src; +#10 1408.6 | ^~~ +#10 1410.1 [5897/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.o +#10 1410.1 In file included from ../c10/core/ScalarType.h:3, +#10 1410.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1410.1 from ../aten/src/ATen/Dispatch.h:3, +#10 1410.1 from /pytorch/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp:4, +#10 1410.1 from aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp:1: +#10 1410.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1410.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1410.1 37 | res = *tempRes; +#10 1410.1 | ~~~~^~~~~~~~~~ +#10 1410.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1410.1 28 | uint32_t tmp = src; +#10 1410.1 | ^~~ +#10 1410.2 [5898/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.AVX2.cpp.o +#10 1410.2 In file included from ../c10/core/ScalarType.h:3, +#10 1410.2 from ../aten/src/ATen/OpMathType.h:3, +#10 1410.2 from ../aten/src/ATen/native/Lerp.h:4, +#10 1410.2 from /pytorch/aten/src/ATen/native/cpu/LerpKernel.cpp:2, +#10 1410.2 from aten/src/ATen/native/cpu/LerpKernel.cpp.AVX2.cpp:1: +#10 1410.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1410.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1410.2 37 | res = *tempRes; +#10 1410.2 | ~~~~^~~~~~~~~~ +#10 1410.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1410.2 28 | uint32_t tmp = src; +#10 1410.2 | ^~~ +#10 1412.0 [5899/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.AVX2.cpp.o +#10 1412.0 In file included from ../c10/core/ScalarType.h:3, +#10 1412.0 from ../c10/core/Scalar.h:11, +#10 1412.0 from aten/src/ATen/core/TensorBody.h:16, +#10 1412.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 1412.0 from ../aten/src/ATen/native/AdaptivePooling.h:3, +#10 1412.0 from /pytorch/aten/src/ATen/native/cpu/MaxPoolKernel.cpp:2, +#10 1412.0 from aten/src/ATen/native/cpu/MaxPoolKernel.cpp.AVX2.cpp:1: +#10 1412.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1412.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1412.0 37 | res = *tempRes; +#10 1412.0 | ~~~~^~~~~~~~~~ +#10 1412.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1412.0 28 | uint32_t tmp = src; +#10 1412.0 | ^~~ +#10 1413.3 [5900/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.AVX2.cpp.o +#10 1413.3 In file included from ../c10/core/ScalarType.h:3, +#10 1413.3 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1413.3 from /pytorch/aten/src/ATen/native/cpu/SortingKernel.cpp:3, +#10 1413.3 from aten/src/ATen/native/cpu/SortingKernel.cpp.AVX2.cpp:1: +#10 1413.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1413.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1413.3 37 | res = *tempRes; +#10 1413.3 | ~~~~^~~~~~~~~~ +#10 1413.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1413.3 28 | uint32_t tmp = src; +#10 1413.3 | ^~~ +#10 1413.5 [5901/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.AVX2.cpp.o +#10 1413.5 In file included from ../c10/core/ScalarType.h:3, +#10 1413.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1413.5 from ../aten/src/ATen/Dispatch.h:3, +#10 1413.5 from /pytorch/aten/src/ATen/native/cpu/FillKernel.cpp:2, +#10 1413.5 from aten/src/ATen/native/cpu/FillKernel.cpp.AVX2.cpp:1: +#10 1413.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1413.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1413.5 37 | res = *tempRes; +#10 1413.5 | ~~~~^~~~~~~~~~ +#10 1413.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1413.5 28 | uint32_t tmp = src; +#10 1413.5 | ^~~ +#10 1414.5 [5902/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.AVX2.cpp.o +#10 1414.5 In file included from ../c10/core/ScalarType.h:3, +#10 1414.5 from ../c10/core/Scalar.h:11, +#10 1414.5 from aten/src/ATen/core/TensorBody.h:16, +#10 1414.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 1414.5 from ../aten/src/ATen/native/Histogram.h:3, +#10 1414.5 from /pytorch/aten/src/ATen/native/cpu/HistogramKernel.cpp:2, +#10 1414.5 from aten/src/ATen/native/cpu/HistogramKernel.cpp.AVX2.cpp:1: +#10 1414.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1414.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1414.5 37 | res = *tempRes; +#10 1414.5 | ~~~~^~~~~~~~~~ +#10 1414.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1414.5 28 | uint32_t tmp = src; +#10 1414.5 | ^~~ +#10 1415.0 [5903/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.AVX2.cpp.o +#10 1415.0 In file included from ../c10/core/ScalarType.h:3, +#10 1415.0 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1415.0 from ../aten/src/ATen/Dispatch.h:3, +#10 1415.0 from /pytorch/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp:3, +#10 1415.0 from aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.AVX2.cpp:1: +#10 1415.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1415.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1415.0 37 | res = *tempRes; +#10 1415.0 | ~~~~^~~~~~~~~~ +#10 1415.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1415.0 28 | uint32_t tmp = src; +#10 1415.0 | ^~~ +#10 1415.2 [5904/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.AVX2.cpp.o +#10 1415.2 [5905/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.AVX2.cpp.o +#10 1415.2 In file included from ../c10/core/ScalarType.h:3, +#10 1415.2 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1415.2 from ../aten/src/ATen/native/NonEmptyUtils.h:1, +#10 1415.2 from /pytorch/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp:2, +#10 1415.2 from aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.AVX2.cpp:1: +#10 1415.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1415.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1415.2 37 | res = *tempRes; +#10 1415.2 | ~~~~^~~~~~~~~~ +#10 1415.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1415.2 28 | uint32_t tmp = src; +#10 1415.2 | ^~~ +#10 1417.4 [5906/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.AVX2.cpp.o +#10 1417.4 In file included from ../c10/core/ScalarType.h:3, +#10 1417.4 from ../c10/core/Scalar.h:11, +#10 1417.4 from aten/src/ATen/core/TensorBody.h:16, +#10 1417.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 1417.4 from /pytorch/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp:3, +#10 1417.4 from aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.AVX2.cpp:1: +#10 1417.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1417.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1417.4 37 | res = *tempRes; +#10 1417.4 | ~~~~^~~~~~~~~~ +#10 1417.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1417.4 28 | uint32_t tmp = src; +#10 1417.4 | ^~~ +#10 1417.7 [5907/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.AVX2.cpp.o +#10 1417.7 In file included from ../c10/core/ScalarType.h:3, +#10 1417.7 from ../c10/core/Scalar.h:11, +#10 1417.7 from aten/src/ATen/core/TensorBody.h:16, +#10 1417.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 1417.7 from /pytorch/aten/src/ATen/native/cpu/CrossKernel.cpp:9, +#10 1417.7 from aten/src/ATen/native/cpu/CrossKernel.cpp.AVX2.cpp:1: +#10 1417.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1417.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1417.7 37 | res = *tempRes; +#10 1417.7 | ~~~~^~~~~~~~~~ +#10 1417.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1417.7 28 | uint32_t tmp = src; +#10 1417.7 | ^~~ +#10 1418.5 [5908/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o +#10 1418.5 In file included from ../c10/core/ScalarType.h:3, +#10 1418.5 from ../c10/core/Scalar.h:11, +#10 1418.5 from aten/src/ATen/core/TensorBody.h:16, +#10 1418.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 1418.5 from /pytorch/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp:4, +#10 1418.5 from aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp:1: +#10 1418.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1418.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1418.5 37 | res = *tempRes; +#10 1418.5 | ~~~~^~~~~~~~~~ +#10 1418.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1418.5 28 | uint32_t tmp = src; +#10 1418.5 | ^~~ +#10 1419.2 [5909/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.AVX2.cpp.o +#10 1420.2 [5910/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o +#10 1420.3 [5911/6823] Linking CXX static library lib/libcaffe2_protos.a +#10 1421.1 [5912/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.AVX2.cpp.o +#10 1421.9 [5913/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.AVX2.cpp.o +#10 1422.6 [5914/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.AVX2.cpp.o +#10 1422.6 In file included from ../c10/core/ScalarType.h:3, +#10 1422.6 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1422.6 from ../aten/src/ATen/Dispatch.h:3, +#10 1422.6 from /pytorch/aten/src/ATen/native/cpu/BlasKernel.cpp:2, +#10 1422.6 from aten/src/ATen/native/cpu/BlasKernel.cpp.AVX2.cpp:1: +#10 1422.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1422.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1422.6 37 | res = *tempRes; +#10 1422.6 | ~~~~^~~~~~~~~~ +#10 1422.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1422.6 28 | uint32_t tmp = src; +#10 1422.6 | ^~~ +#10 1422.7 [5915/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.AVX2.cpp.o +#10 1422.7 In file included from ../c10/core/ScalarType.h:3, +#10 1422.7 from ../c10/core/StorageImpl.h:4, +#10 1422.7 from ../c10/core/Storage.h:3, +#10 1422.7 from ../c10/core/TensorImpl.h:8, +#10 1422.7 from ../c10/core/GeneratorImpl.h:8, +#10 1422.7 from ../aten/src/ATen/core/Generator.h:22, +#10 1422.7 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1422.7 from /pytorch/aten/src/ATen/native/cpu/DistributionKernels.cpp:2, +#10 1422.7 from aten/src/ATen/native/cpu/DistributionKernels.cpp.AVX2.cpp:1: +#10 1422.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1422.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1422.7 37 | res = *tempRes; +#10 1422.7 | ~~~~^~~~~~~~~~ +#10 1422.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1422.7 28 | uint32_t tmp = src; +#10 1422.7 | ^~~ +#10 1422.8 [5916/6823] Building CXX object test_edge_op_registration/CMakeFiles/test_edge_op_registration.dir/test_main.cpp.o +#10 1424.4 [5917/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.AVX2.cpp.o +#10 1424.4 In file included from ../c10/core/ScalarType.h:3, +#10 1424.4 from ../c10/core/Scalar.h:11, +#10 1424.4 from aten/src/ATen/core/TensorBody.h:16, +#10 1424.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 1424.4 from /pytorch/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp:2, +#10 1424.4 from aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.AVX2.cpp:1: +#10 1424.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1424.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1424.4 37 | res = *tempRes; +#10 1424.4 | ~~~~^~~~~~~~~~ +#10 1424.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1424.4 28 | uint32_t tmp = src; +#10 1424.4 | ^~~ +#10 1425.5 [5918/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.AVX2.cpp.o +#10 1425.5 In file included from ../c10/core/ScalarType.h:3, +#10 1425.5 from ../c10/core/Scalar.h:11, +#10 1425.5 from aten/src/ATen/core/TensorBody.h:16, +#10 1425.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 1425.5 from /pytorch/aten/src/ATen/native/cpu/AvgPoolKernel.cpp:2, +#10 1425.5 from aten/src/ATen/native/cpu/AvgPoolKernel.cpp.AVX2.cpp:1: +#10 1425.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1425.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1425.5 37 | res = *tempRes; +#10 1425.5 | ~~~~^~~~~~~~~~ +#10 1425.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1425.5 28 | uint32_t tmp = src; +#10 1425.5 | ^~~ +#10 1425.6 [5919/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/custom_ops.cpp.o +#10 1426.6 [5920/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.AVX2.cpp.o +#10 1426.6 In file included from ../c10/core/ScalarType.h:3, +#10 1426.6 from ../c10/core/Scalar.h:11, +#10 1426.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1426.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1426.6 from /pytorch/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp:2, +#10 1426.6 from aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.AVX2.cpp:1: +#10 1426.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1426.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1426.6 37 | res = *tempRes; +#10 1426.6 | ~~~~^~~~~~~~~~ +#10 1426.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1426.6 28 | uint32_t tmp = src; +#10 1426.6 | ^~~ +#10 1428.6 [5921/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/__/out/RegisterCPUCustomOps.cpp.o +#10 1429.5 [5922/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o +#10 1429.5 In file included from ../c10/core/ScalarType.h:3, +#10 1429.5 from ../c10/core/StorageImpl.h:4, +#10 1429.5 from ../c10/core/Storage.h:3, +#10 1429.5 from ../c10/core/TensorImpl.h:8, +#10 1429.5 from ../c10/core/GeneratorImpl.h:8, +#10 1429.5 from ../aten/src/ATen/core/Generator.h:22, +#10 1429.5 from ../aten/src/ATen/Generator.h:2, +#10 1429.5 from ../aten/src/ATen/native/UnaryOps.h:4, +#10 1429.5 from /pytorch/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp:2, +#10 1429.5 from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp:1: +#10 1429.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1429.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1429.5 37 | res = *tempRes; +#10 1429.5 | ~~~~^~~~~~~~~~ +#10 1429.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1429.5 28 | uint32_t tmp = src; +#10 1429.5 | ^~~ +#10 1429.6 [5923/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.AVX2.cpp.o +#10 1429.6 In file included from ../c10/core/ScalarType.h:3, +#10 1429.6 from ../c10/core/StorageImpl.h:4, +#10 1429.6 from ../c10/core/Storage.h:3, +#10 1429.6 from ../c10/core/TensorImpl.h:8, +#10 1429.6 from ../c10/core/GeneratorImpl.h:8, +#10 1429.6 from ../aten/src/ATen/core/Generator.h:22, +#10 1429.6 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1429.6 from ../aten/src/ATen/Context.h:3, +#10 1429.6 from /pytorch/aten/src/ATen/native/cpu/IndexKernel.cpp:7, +#10 1429.6 from aten/src/ATen/native/cpu/IndexKernel.cpp.AVX2.cpp:1: +#10 1429.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1429.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1429.6 37 | res = *tempRes; +#10 1429.6 | ~~~~^~~~~~~~~~ +#10 1429.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1429.6 28 | uint32_t tmp = src; +#10 1429.6 | ^~~ +#10 1431.0 [5924/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/operator_registry.cpp.o +#10 1431.4 [5925/6823] Building CXX object test_edge_op_registration/CMakeFiles/test_edge_op_registration.dir/test_operator_registration.cpp.o +#10 1432.1 [5926/6823] Building CXX object test_cpp_c10d/CMakeFiles/FileStoreTest.dir/FileStoreTest.cpp.o +#10 1432.8 [5927/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/__/out/RegisterCodegenUnboxedKernelsEverything.cpp.o +#10 1433.8 [5928/6823] Building CXX object test_cpp_c10d/CMakeFiles/HashStoreTest.dir/HashStoreTest.cpp.o +#10 1434.1 [5929/6823] Building CXX object test_cpp_c10d/CMakeFiles/TCPStoreTest.dir/TCPStoreTest.cpp.o +#10 1435.6 [5930/6823] Building CXX object test_cpp_c10d/CMakeFiles/example_allreduce.dir/example/allreduce.cpp.o +#10 1436.2 [5931/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o +#10 1437.5 [5932/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o +#10 1437.5 In file included from ../c10/core/ScalarType.h:3, +#10 1437.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1437.5 from ../aten/src/ATen/Dispatch.h:3, +#10 1437.5 from /pytorch/aten/src/ATen/native/cpu/Activation.cpp:12, +#10 1437.5 from aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp:1: +#10 1437.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1437.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1437.5 37 | res = *tempRes; +#10 1437.5 | ~~~~^~~~~~~~~~ +#10 1437.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1437.5 28 | uint32_t tmp = src; +#10 1437.5 | ^~~ +#10 1437.7 [5933/6823] Building CXX object test_cpp_c10d/CMakeFiles/ProcessGroupGlooTest.dir/ProcessGroupGlooTest.cpp.o +#10 1438.4 [5934/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.AVX2.cpp.o +#10 1438.4 In file included from ../c10/core/ScalarType.h:3, +#10 1438.4 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1438.4 from ../aten/src/ATen/Dispatch.h:3, +#10 1438.4 from /pytorch/aten/src/ATen/native/cpu/CopyKernel.cpp:2, +#10 1438.4 from aten/src/ATen/native/cpu/CopyKernel.cpp.AVX2.cpp:1: +#10 1438.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1438.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1438.4 37 | res = *tempRes; +#10 1438.4 | ~~~~^~~~~~~~~~ +#10 1438.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1438.4 28 | uint32_t tmp = src; +#10 1438.4 | ^~~ +#10 1457.1 [5935/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o +#10 1457.1 In file included from ../c10/core/ScalarType.h:3, +#10 1457.1 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1457.1 from ../aten/src/ATen/native/BinaryOps.h:3, +#10 1457.1 from /pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp:2, +#10 1457.1 from aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp:1: +#10 1457.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1457.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1457.1 37 | res = *tempRes; +#10 1457.1 | ~~~~^~~~~~~~~~ +#10 1457.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1457.1 28 | uint32_t tmp = src; +#10 1457.1 | ^~~ +#10 1464.8 [5936/6823] Linking CXX shared library lib/libtorch_cpu.so +#10 1477.8 [5937/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionUniform.hip.o +#10 1477.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1477.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1477.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1477.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1477.8 ^ +#10 1477.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1477.8 DEPRECATED("use atomicAdd instead") +#10 1477.8 ^ +#10 1477.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1477.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1477.8 ^ +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1477.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1477.8 hipGetLastError(); +#10 1477.8 ^~~~~~~~~~~~~~~ +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1477.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1477.8 hipEventDestroy(event_); +#10 1477.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1477.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1477.8 hipGetLastError(); +#10 1477.8 ^~~~~~~~~~~~~~~ +#10 1477.8 4 warnings generated when compiling for gfx803. +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1477.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1477.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1477.8 ^ +#10 1477.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1477.8 DEPRECATED("use atomicAdd instead") +#10 1477.8 ^ +#10 1477.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1477.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1477.8 ^ +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1477.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1477.8 hipGetLastError(); +#10 1477.8 ^~~~~~~~~~~~~~~ +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1477.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1477.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1477.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1477.8 hipEventDestroy(event_); +#10 1477.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1477.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1477.8 hipGetLastError(); +#10 1477.8 ^~~~~~~~~~~~~~~ +#10 1477.8 4 warnings generated when compiling for host. +#10 1480.2 [5938/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationLeakyReluKernel.hip.o +#10 1480.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1480.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1480.3 [5939/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationSiluKernel.hip.o +#10 1480.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1480.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.6 [5940/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationEluKernel.hip.o +#10 1481.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.8 [5941/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_AdaptiveAveragePooling.hip.o +#10 1481.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.8 In file included from /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip:7: +#10 1481.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1481.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1481.8 ^ +#10 1481.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1481.8 DEPRECATED("use atomicAdd instead") +#10 1481.8 ^ +#10 1481.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1481.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1481.8 ^ +#10 1481.8 1 warning generated when compiling for gfx803. +#10 1481.8 In file included from /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip:7: +#10 1481.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1481.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1481.8 ^ +#10 1481.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1481.8 DEPRECATED("use atomicAdd instead") +#10 1481.8 ^ +#10 1481.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1481.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1481.8 ^ +#10 1481.8 1 warning generated when compiling for host. +#10 1482.4 [5942/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationGluKernel.hip.o +#10 1482.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1482.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1482.4 [5943/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MaxUnpooling.hip.o +#10 1482.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1482.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1483.6 [5944/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_jiterator.hip.o +#10 1483.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1483.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1483.6 In file included from /pytorch/aten/src/ATen/hip/jiterator.hip:6: +#10 1483.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1483.6 hipGetLastError(); +#10 1483.6 ^~~~~~~~~~~~~~~ +#10 1483.6 1 warning generated when compiling for gfx803. +#10 1483.6 In file included from /pytorch/aten/src/ATen/hip/jiterator.hip:6: +#10 1483.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1483.6 hipGetLastError(); +#10 1483.6 ^~~~~~~~~~~~~~~ +#10 1483.6 1 warning generated when compiling for host. +#10 1485.3 [5945/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationGeluKernel.hip.o +#10 1485.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1485.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1488.8 [5946/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryGeometricKernels.hip.o +#10 1488.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1488.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1490.3 [5947/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryDivTrueKernel.hip.o +#10 1490.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1490.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1490.3 In file included from /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip:8: +#10 1490.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1490.3 hipGetLastError(); +#10 1490.3 ^~~~~~~~~~~~~~~ +#10 1490.3 1 warning generated when compiling for gfx803. +#10 1490.3 In file included from /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip:8: +#10 1490.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1490.3 hipGetLastError(); +#10 1490.3 ^~~~~~~~~~~~~~~ +#10 1490.3 1 warning generated when compiling for host. +#10 1490.6 [5948/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationHardshrinkKernel.hip.o +#10 1490.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1490.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1495.3 [5949/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_AbsKernel.hip.o +#10 1495.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1495.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1498.5 [5950/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_cub.hip.o +#10 1498.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1498.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1498.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1498.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1498.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, int, 1073741824>' requested here +#10 1498.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long, 1073741824>' requested here +#10 1498.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:50:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long *, at::cuda::cub::(anonymous namespace)::SumOp, long, 1073741824>' requested here +#10 1498.5 exclusive_scan(iter, output_idx, SumOp{}, int64_t{0}, n); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 12 warnings generated when compiling for gfx803. +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1498.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1498.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1498.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, int, 1073741824>' requested here +#10 1498.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long, 1073741824>' requested here +#10 1498.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.hip:50:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long *, at::cuda::cub::(anonymous namespace)::SumOp, long, 1073741824>' requested here +#10 1498.5 exclusive_scan(iter, output_idx, SumOp{}, int64_t{0}, n); +#10 1498.5 ^ +#10 1498.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1498.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1498.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1498.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1498.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1498.5 ^~~~ +#10 1498.5 12 warnings generated when compiling for host. +#10 1503.6 [5951/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMiscBackwardOpsKernels.hip.o +#10 1503.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1503.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1506.1 [5952/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Bucketization.hip.o +#10 1506.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1506.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1508.8 [5953/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMulKernel.hip.o +#10 1508.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1508.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1508.8 In file included from /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip:8: +#10 1508.8 In file included from /pytorch/aten/src/ATen/native/hip/BinaryInternal.h:11: +#10 1508.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1508.8 hipGetLastError(); +#10 1508.8 ^~~~~~~~~~~~~~~ +#10 1508.8 1 warning generated when compiling for gfx803. +#10 1508.8 In file included from /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip:8: +#10 1508.8 In file included from /pytorch/aten/src/ATen/native/hip/BinaryInternal.h:11: +#10 1508.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1508.8 hipGetLastError(); +#10 1508.8 ^~~~~~~~~~~~~~~ +#10 1508.8 1 warning generated when compiling for host. +#10 1510.2 [5954/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ScatterGatherKernel.hip.o +#10 1510.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1510.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1510.2 In file included from /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip:15: +#10 1510.2 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1510.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1510.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1510.2 ^ +#10 1510.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1510.2 DEPRECATED("use atomicAdd instead") +#10 1510.2 ^ +#10 1510.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1510.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1510.2 ^ +#10 1510.2 1 warning generated when compiling for gfx803. +#10 1510.2 In file included from /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip:15: +#10 1510.2 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1510.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1510.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1510.2 ^ +#10 1510.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1510.2 DEPRECATED("use atomicAdd instead") +#10 1510.2 ^ +#10 1510.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1510.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1510.2 ^ +#10 1510.2 1 warning generated when compiling for host. +#10 1513.2 [5955/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Col2Im.hip.o +#10 1513.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1513.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1514.1 [5956/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CompareKernels.hip.o +#10 1514.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1514.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1515.6 [5957/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ComplexKernel.hip.o +#10 1515.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1515.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1516.9 [5958/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryShiftOpsKernels.hip.o +#10 1516.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1516.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1520.8 [5959/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMiscOpsKernels.hip.o +#10 1520.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1520.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1521.3 [5960/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CrossKernel.hip.o +#10 1521.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1521.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1522.1 [5961/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ConvolutionMM2d.hip.o +#10 1522.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1522.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1529.0 [5962/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumminmaxKernel.hip.o +#10 1529.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1529.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1530.6 [5963/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CopysignKernel.hip.o +#10 1530.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1530.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1533.1 [5964/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryLogicalOpsKernels.hip.o +#10 1533.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1533.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1533.7 [5965/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CompareEQKernel.hip.o +#10 1533.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1533.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1535.3 [5966/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryRemainderKernel.hip.o +#10 1535.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1535.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1536.6 [5967/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Copy.hip.o +#10 1536.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1536.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1536.6 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1536.6 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1536.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1536.6 hipGetLastError(); +#10 1536.6 ^~~~~~~~~~~~~~~ +#10 1536.6 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1536.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1536.6 hipEventDestroy(event_); +#10 1536.6 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1536.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1536.6 hipGetLastError(); +#10 1536.6 ^~~~~~~~~~~~~~~ +#10 1536.6 3 warnings generated when compiling for gfx803. +#10 1536.6 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1536.6 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1536.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1536.6 hipGetLastError(); +#10 1536.6 ^~~~~~~~~~~~~~~ +#10 1536.6 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1536.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1536.6 hipEventDestroy(event_); +#10 1536.6 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1536.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1536.6 hipGetLastError(); +#10 1536.6 ^~~~~~~~~~~~~~~ +#10 1536.6 3 warnings generated when compiling for host. +#10 1537.2 [5968/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DepthwiseConv2d.hip.o +#10 1537.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1537.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1540.8 [5969/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistanceKernel.hip.o +#10 1540.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1540.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1542.2 [5970/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DepthwiseConv3d.hip.o +#10 1542.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1542.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 conv_depthwise3d_cuda_backward_weight_kernel( +#10 1542.2 ^ +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1542.2 9 warnings generated when compiling for gfx803. +#10 1546.5 [5971/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DilatedMaxPool2d.hip.o +#10 1546.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1546.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.3 [5972/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DilatedMaxPool3d.hip.o +#10 1547.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.3 In file included from /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip:11: +#10 1547.3 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1547.3 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1547.3 ^ +#10 1547.3 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1547.3 DEPRECATED("use atomicAdd instead") +#10 1547.3 ^ +#10 1547.3 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1547.3 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1547.3 ^ +#10 1547.3 1 warning generated when compiling for gfx803. +#10 1547.3 In file included from /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip:11: +#10 1547.3 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1547.3 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1547.3 ^ +#10 1547.3 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1547.3 DEPRECATED("use atomicAdd instead") +#10 1547.3 ^ +#10 1547.3 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1547.3 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1547.3 ^ +#10 1547.3 1 warning generated when compiling for host. +#10 1547.5 [5973/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionExponentialKernel.hip.o +#10 1547.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1547.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1547.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1547.5 ^ +#10 1547.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1547.5 DEPRECATED("use atomicAdd instead") +#10 1547.5 ^ +#10 1547.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1547.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1547.5 ^ +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1547.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.5 hipGetLastError(); +#10 1547.5 ^~~~~~~~~~~~~~~ +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1547.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.5 hipEventDestroy(event_); +#10 1547.5 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1547.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.5 hipGetLastError(); +#10 1547.5 ^~~~~~~~~~~~~~~ +#10 1547.5 4 warnings generated when compiling for gfx803. +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1547.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1547.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1547.5 ^ +#10 1547.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1547.5 DEPRECATED("use atomicAdd instead") +#10 1547.5 ^ +#10 1547.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1547.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1547.5 ^ +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1547.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.5 hipGetLastError(); +#10 1547.5 ^~~~~~~~~~~~~~~ +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1547.5 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1547.5 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1547.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.5 hipEventDestroy(event_); +#10 1547.5 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1547.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.5 hipGetLastError(); +#10 1547.5 ^~~~~~~~~~~~~~~ +#10 1547.5 4 warnings generated when compiling for host. +#10 1547.9 [5974/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumsumKernel.hip.o +#10 1547.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 22 warnings generated when compiling for gfx803. +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1547.9 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1547.9 ^ +#10 1547.9 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1547.9 scan_dim( +#10 1547.9 ^ +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1547.9 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1547.9 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1547.9 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1547.9 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1547.9 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1547.9 ^~~~ +#10 1547.9 22 warnings generated when compiling for host. +#10 1549.8 [5975/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumprodKernel.hip.o +#10 1549.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 22 warnings generated when compiling for gfx803. +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1549.8 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1549.8 ^ +#10 1549.8 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1549.8 scan_dim( +#10 1549.8 ^ +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1549.8 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1549.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1549.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1549.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1549.8 ^~~~ +#10 1549.8 22 warnings generated when compiling for host. +#10 1550.4 [5976/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionNormal.hip.o +#10 1550.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1550.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1550.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1550.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1550.4 ^ +#10 1550.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1550.4 DEPRECATED("use atomicAdd instead") +#10 1550.4 ^ +#10 1550.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1550.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1550.4 ^ +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1550.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1550.4 hipGetLastError(); +#10 1550.4 ^~~~~~~~~~~~~~~ +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1550.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1550.4 hipEventDestroy(event_); +#10 1550.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1550.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1550.4 hipGetLastError(); +#10 1550.4 ^~~~~~~~~~~~~~~ +#10 1550.4 4 warnings generated when compiling for gfx803. +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1550.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1550.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1550.4 ^ +#10 1550.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1550.4 DEPRECATED("use atomicAdd instead") +#10 1550.4 ^ +#10 1550.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1550.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1550.4 ^ +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1550.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1550.4 hipGetLastError(); +#10 1550.4 ^~~~~~~~~~~~~~~ +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1550.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1550.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1550.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1550.4 hipEventDestroy(event_); +#10 1550.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1550.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1550.4 hipGetLastError(); +#10 1550.4 ^~~~~~~~~~~~~~~ +#10 1550.4 4 warnings generated when compiling for host. +#10 1552.4 [5977/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Repeat.hip.o +#10 1552.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1552.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1554.4 [5978/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReplicationPadding.hip.o +#10 1554.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1554.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1554.4 In file included from /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip:7: +#10 1554.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1554.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1554.4 ^ +#10 1554.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1554.4 DEPRECATED("use atomicAdd instead") +#10 1554.4 ^ +#10 1554.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1554.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1554.4 ^ +#10 1554.4 1 warning generated when compiling for gfx803. +#10 1554.4 In file included from /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip:7: +#10 1554.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1554.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1554.4 ^ +#10 1554.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1554.4 DEPRECATED("use atomicAdd instead") +#10 1554.4 ^ +#10 1554.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1554.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1554.4 ^ +#10 1554.4 1 warning generated when compiling for host. +#10 1560.1 [5979/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Embedding.hip.o +#10 1560.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1560.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:15: +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1560.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1560.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1560.1 ^ +#10 1560.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1560.1 DEPRECATED("use atomicAdd instead") +#10 1560.1 ^ +#10 1560.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1560.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1560.1 ^ +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1560.1 cuda::cub::unique( +#10 1560.1 ^ +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1560.1 cuda::cub::unique( +#10 1560.1 ^ +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 5 warnings generated when compiling for gfx803. +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:15: +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1560.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1560.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1560.1 ^ +#10 1560.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1560.1 DEPRECATED("use atomicAdd instead") +#10 1560.1 ^ +#10 1560.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1560.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1560.1 ^ +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1560.1 cuda::cub::unique( +#10 1560.1 ^ +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1560.1 cuda::cub::unique( +#10 1560.1 ^ +#10 1560.1 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1560.1 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1560.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1560.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1560.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1560.1 ^~~~ +#10 1560.1 5 warnings generated when compiling for host. +#10 1562.0 [5980/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_EmbeddingBackwardKernel.hip.o +#10 1562.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1562.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1562.0 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip:4: +#10 1562.0 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1562.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1562.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1562.0 ^ +#10 1562.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1562.0 DEPRECATED("use atomicAdd instead") +#10 1562.0 ^ +#10 1562.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1562.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1562.0 ^ +#10 1562.0 1 warning generated when compiling for gfx803. +#10 1562.0 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip:4: +#10 1562.0 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1562.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1562.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1562.0 ^ +#10 1562.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1562.0 DEPRECATED("use atomicAdd instead") +#10 1562.0 ^ +#10 1562.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1562.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1562.0 ^ +#10 1562.0 1 warning generated when compiling for host. +#10 1564.2 [5981/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FillKernel.hip.o +#10 1564.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1564.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1568.5 [5982/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_EmbeddingBag.hip.o +#10 1568.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1568.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1568.5 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip:8: +#10 1568.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1568.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1568.5 ^ +#10 1568.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1568.5 DEPRECATED("use atomicAdd instead") +#10 1568.5 ^ +#10 1568.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1568.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1568.5 ^ +#10 1568.5 1 warning generated when compiling for gfx803. +#10 1568.5 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip:8: +#10 1568.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1568.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1568.5 ^ +#10 1568.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1568.5 DEPRECATED("use atomicAdd instead") +#10 1568.5 ^ +#10 1568.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1568.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1568.5 ^ +#10 1568.5 1 warning generated when compiling for host. +#10 1572.9 [5983/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachReduceOp.hip.o +#10 1572.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1572.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1572.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip:10: +#10 1572.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1572.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1572.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1572.9 hipGetLastError(); +#10 1572.9 ^~~~~~~~~~~~~~~ +#10 1572.9 1 warning generated when compiling for gfx803. +#10 1572.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip:10: +#10 1572.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1572.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1572.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1572.9 hipGetLastError(); +#10 1572.9 ^~~~~~~~~~~~~~~ +#10 1572.9 1 warning generated when compiling for host. +#10 1579.6 [5984/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachTernaryOp.hip.o +#10 1579.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1579.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1579.6 In file included from /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip:6: +#10 1579.6 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1579.6 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1579.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1579.6 hipGetLastError(); +#10 1579.6 ^~~~~~~~~~~~~~~ +#10 1579.6 1 warning generated when compiling for gfx803. +#10 1579.6 In file included from /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip:6: +#10 1579.6 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1579.6 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1579.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1579.6 hipGetLastError(); +#10 1579.6 ^~~~~~~~~~~~~~~ +#10 1579.6 1 warning generated when compiling for host. +#10 1580.1 [5985/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachPointwiseOp.hip.o +#10 1580.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1580.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1580.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip:5: +#10 1580.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1580.1 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1580.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1580.1 hipGetLastError(); +#10 1580.1 ^~~~~~~~~~~~~~~ +#10 1580.1 1 warning generated when compiling for gfx803. +#10 1580.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip:5: +#10 1580.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1580.1 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1580.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1580.1 hipGetLastError(); +#10 1580.1 ^~~~~~~~~~~~~~~ +#10 1580.1 1 warning generated when compiling for host. +#10 1580.8 [5986/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FractionalMaxPool2d.hip.o +#10 1580.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1580.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1580.8 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip:7: +#10 1580.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1580.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1580.8 ^ +#10 1580.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1580.8 DEPRECATED("use atomicAdd instead") +#10 1580.8 ^ +#10 1580.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1580.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1580.8 ^ +#10 1580.8 1 warning generated when compiling for gfx803. +#10 1580.8 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip:7: +#10 1580.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1580.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1580.8 ^ +#10 1580.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1580.8 DEPRECATED("use atomicAdd instead") +#10 1580.8 ^ +#10 1580.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1580.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1580.8 ^ +#10 1580.8 1 warning generated when compiling for host. +#10 1581.4 [5987/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FractionalMaxPool3d.hip.o +#10 1581.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1581.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1581.4 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip:7: +#10 1581.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1581.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1581.4 ^ +#10 1581.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1581.4 DEPRECATED("use atomicAdd instead") +#10 1581.4 ^ +#10 1581.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1581.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1581.4 ^ +#10 1581.4 1 warning generated when compiling for gfx803. +#10 1581.4 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip:7: +#10 1581.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1581.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1581.4 ^ +#10 1581.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1581.4 DEPRECATED("use atomicAdd instead") +#10 1581.4 ^ +#10 1581.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1581.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1581.4 ^ +#10 1581.4 1 warning generated when compiling for host. +#10 1582.3 [5988/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Dropout.hip.o +#10 1582.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1582.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1582.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1582.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1582.3 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1582.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1582.3 hipGetLastError(); +#10 1582.3 ^~~~~~~~~~~~~~~ +#10 1582.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1582.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1582.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1582.3 hipEventDestroy(event_); +#10 1582.3 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1582.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1582.3 hipGetLastError(); +#10 1582.3 ^~~~~~~~~~~~~~~ +#10 1582.3 3 warnings generated when compiling for gfx803. +#10 1582.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1582.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1582.3 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1582.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1582.3 hipGetLastError(); +#10 1582.3 ^~~~~~~~~~~~~~~ +#10 1582.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1582.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1582.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1582.3 hipEventDestroy(event_); +#10 1582.3 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1582.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1582.3 hipGetLastError(); +#10 1582.3 ^~~~~~~~~~~~~~~ +#10 1582.3 3 warnings generated when compiling for host. +#10 1583.9 [5989/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpScalar.hip.o +#10 1583.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1583.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1583.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip:5: +#10 1583.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1583.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1583.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1583.9 hipGetLastError(); +#10 1583.9 ^~~~~~~~~~~~~~~ +#10 1583.9 1 warning generated when compiling for gfx803. +#10 1583.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip:5: +#10 1583.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1583.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1583.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1583.9 hipGetLastError(); +#10 1583.9 ^~~~~~~~~~~~~~~ +#10 1583.9 1 warning generated when compiling for host. +#10 1584.1 [5990/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FunctionOfAMatrixUtilsKernel.hip.o +#10 1584.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1584.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1584.1 In file included from /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip:9: +#10 1584.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1584.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1584.1 ^ +#10 1584.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1584.1 DEPRECATED("use atomicAdd instead") +#10 1584.1 ^ +#10 1584.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1584.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1584.1 ^ +#10 1584.1 1 warning generated when compiling for gfx803. +#10 1584.1 In file included from /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip:9: +#10 1584.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1584.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1584.1 ^ +#10 1584.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1584.1 DEPRECATED("use atomicAdd instead") +#10 1584.1 ^ +#10 1584.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1584.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1584.1 ^ +#10 1584.1 1 warning generated when compiling for host. +#10 1584.7 [5991/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpScalarList.hip.o +#10 1584.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1584.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1584.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip:5: +#10 1584.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1584.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1584.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1584.7 hipGetLastError(); +#10 1584.7 ^~~~~~~~~~~~~~~ +#10 1584.7 1 warning generated when compiling for gfx803. +#10 1584.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip:5: +#10 1584.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1584.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1584.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1584.7 hipGetLastError(); +#10 1584.7 ^~~~~~~~~~~~~~~ +#10 1584.7 1 warning generated when compiling for host. +#10 1587.7 [5992/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpList.hip.o +#10 1587.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1587.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1587.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip:5: +#10 1587.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1587.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1587.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1587.7 hipGetLastError(); +#10 1587.7 ^~~~~~~~~~~~~~~ +#10 1587.7 1 warning generated when compiling for gfx803. +#10 1587.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip:5: +#10 1587.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1587.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1587.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1587.7 hipGetLastError(); +#10 1587.7 ^~~~~~~~~~~~~~~ +#10 1587.7 1 warning generated when compiling for host. +#10 1589.4 [5993/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FusedAdamWKernel.hip.o +#10 1589.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1589.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1589.7 [5994/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FusedAdamKernel.hip.o +#10 1589.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1589.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1591.7 [5995/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_GcdLcmKernel.hip.o +#10 1591.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1591.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1592.5 [5996/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_HIPScalar.hip.o +#10 1592.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1592.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1599.2 [5997/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Im2Col.hip.o +#10 1599.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1599.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1604.2 [5998/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_IGammaKernel.hip.o +#10 1604.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1604.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1609.0 [5999/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Lerp.hip.o +#10 1609.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1609.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1610.0 [6000/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LogAddExpKernel.hip.o +#10 1610.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1610.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1619.0 [6001/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceMomentKernel.hip.o +#10 1619.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1619.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1619.0 In file included from /pytorch/aten/src/ATen/native/hip/ReduceMomentKernel.hip:5: +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 __global__ void reduce_kernel(R reduction) { +#10 1619.0 ^ +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1619.0 252 warnings generated when compiling for gfx803. +#10 1622.0 [6002/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LegacyThrustHelpers.hip.o +#10 1622.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1622.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1622.5 [6003/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LinearAlgebra.hip.o +#10 1622.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1622.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1626.1 [6004/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_GridSampler.hip.o +#10 1626.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1626.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1626.1 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.hip:7: +#10 1626.1 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.cuh:3: +#10 1626.1 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1626.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1626.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1626.1 ^ +#10 1626.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1626.1 DEPRECATED("use atomicAdd instead") +#10 1626.1 ^ +#10 1626.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1626.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1626.1 ^ +#10 1626.1 1 warning generated when compiling for gfx803. +#10 1626.1 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.hip:7: +#10 1626.1 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.cuh:3: +#10 1626.1 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1626.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1626.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1626.1 ^ +#10 1626.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1626.1 DEPRECATED("use atomicAdd instead") +#10 1626.1 ^ +#10 1626.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1626.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1626.1 ^ +#10 1626.1 1 warning generated when compiling for host. +#10 1627.8 [6005/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LossCTC.hip.o +#10 1627.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1627.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1627.8 In file included from /pytorch/aten/src/ATen/native/hip/LossCTC.hip:19: +#10 1627.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1627.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1627.8 ^ +#10 1627.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1627.8 DEPRECATED("use atomicAdd instead") +#10 1627.8 ^ +#10 1627.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1627.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1627.8 ^ +#10 1627.8 1 warning generated when compiling for gfx803. +#10 1627.8 In file included from /pytorch/aten/src/ATen/native/hip/LossCTC.hip:19: +#10 1627.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1627.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1627.8 ^ +#10 1627.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1627.8 DEPRECATED("use atomicAdd instead") +#10 1627.8 ^ +#10 1627.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1627.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1627.8 ^ +#10 1627.8 1 warning generated when compiling for host. +#10 1628.7 [6006/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_cub-RadixSortKeys.hip.o +#10 1628.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1628.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 36 warnings generated when compiling for gfx803. +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1628.7 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1628.7 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1628.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1628.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1628.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1628.7 ^~~~ +#10 1628.7 36 warnings generated when compiling for host. +#10 1634.3 [6007/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Loss.hip.o +#10 1634.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1634.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1634.8 [6008/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultiLabelMarginCriterion.hip.o +#10 1634.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1634.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1636.6 [6009/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultinomialKernel.hip.o +#10 1636.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1636.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1636.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1636.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1636.6 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1636.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1636.6 hipGetLastError(); +#10 1636.6 ^~~~~~~~~~~~~~~ +#10 1636.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1636.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1636.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1636.6 hipEventDestroy(event_); +#10 1636.6 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1636.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1636.6 hipGetLastError(); +#10 1636.6 ^~~~~~~~~~~~~~~ +#10 1636.6 3 warnings generated when compiling for gfx803. +#10 1636.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1636.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1636.6 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1636.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1636.6 hipGetLastError(); +#10 1636.6 ^~~~~~~~~~~~~~~ +#10 1636.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1636.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1636.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1636.6 hipEventDestroy(event_); +#10 1636.6 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1636.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1636.6 hipGetLastError(); +#10 1636.6 ^~~~~~~~~~~~~~~ +#10 1636.6 3 warnings generated when compiling for host. +#10 1638.6 [6010/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultiMarginLoss.hip.o +#10 1638.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1638.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1643.7 [6011/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveConvolutionTranspose2d.hip.o +#10 1643.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1643.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1644.3 [6012/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NLLLoss2d.hip.o +#10 1644.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1644.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1644.3 In file included from /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip:8: +#10 1644.3 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1644.3 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1644.3 ^ +#10 1644.3 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1644.3 DEPRECATED("use atomicAdd instead") +#10 1644.3 ^ +#10 1644.3 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1644.3 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1644.3 ^ +#10 1644.3 1 warning generated when compiling for gfx803. +#10 1644.3 In file included from /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip:8: +#10 1644.3 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1644.3 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1644.3 ^ +#10 1644.3 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1644.3 DEPRECATED("use atomicAdd instead") +#10 1644.3 ^ +#10 1644.3 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1644.3 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1644.3 ^ +#10 1644.3 1 warning generated when compiling for host. +#10 1647.1 [6013/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveConvolutionTranspose3d.hip.o +#10 1647.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1647.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1650.7 [6014/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_IndexKernel.hip.o +#10 1650.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1650.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1650.7 In file included from /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:16: +#10 1650.7 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1650.7 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1650.7 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1650.7 ^ +#10 1650.7 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1650.7 DEPRECATED("use atomicAdd instead") +#10 1650.7 ^ +#10 1650.7 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1650.7 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:416:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1650.7 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:418:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1650.7 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 __global__ void index_elementwise_kernel(int N, func_t f) { +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1650.7 97 warnings generated when compiling for gfx803. +#10 1650.7 In file included from /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:16: +#10 1650.7 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1650.7 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1650.7 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1650.7 ^ +#10 1650.7 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1650.7 DEPRECATED("use atomicAdd instead") +#10 1650.7 ^ +#10 1650.7 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1650.7 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:416:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1650.7 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:418:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1650.7 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1650.7 ^ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1650.7 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1650.7 hipGetLastError(); +#10 1650.7 ^~~~~~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1650.7 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1650.7 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1650.7 return __VA_ARGS__(); \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1650.7 __VA_ARGS__ \ +#10 1650.7 ^~~~~~~~~~~ +#10 1650.7 37 warnings generated when compiling for host. +#10 1653.2 [6015/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveDilatedConvolution.hip.o +#10 1653.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1653.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1658.8 [6016/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MaxMinElementwiseKernel.hip.o +#10 1658.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1658.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1660.3 [6017/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RecordStream.hip.o +#10 1660.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1660.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1662.5 [6018/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Nonzero.hip.o +#10 1662.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1662.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 52 warnings generated when compiling for gfx803. +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1662.5 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1662.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1662.5 52 warnings generated when compiling for host. +#10 1663.4 [6019/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Randperm.hip.o +#10 1663.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1663.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1663.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1663.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1663.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1663.4 hipGetLastError(); +#10 1663.4 ^~~~~~~~~~~~~~~ +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1663.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1663.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1663.4 hipEventDestroy(event_); +#10 1663.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1663.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1663.4 hipGetLastError(); +#10 1663.4 ^~~~~~~~~~~~~~~ +#10 1663.4 3 warnings generated when compiling for gfx803. +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1663.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1663.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1663.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1663.4 hipGetLastError(); +#10 1663.4 ^~~~~~~~~~~~~~~ +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1663.4 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1663.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1663.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1663.4 hipEventDestroy(event_); +#10 1663.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1663.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1663.4 hipGetLastError(); +#10 1663.4 ^~~~~~~~~~~~~~~ +#10 1663.4 3 warnings generated when compiling for host. +#10 1668.2 [6020/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Reduce.hip.o +#10 1668.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1668.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1670.8 [6021/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RNN.hip.o +#10 1670.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1670.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1670.8 In file included from /pytorch/aten/src/ATen/native/hip/RNN.hip:9: +#10 1670.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1670.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1670.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1670.8 ^ +#10 1670.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1670.8 DEPRECATED("use atomicAdd instead") +#10 1670.8 ^ +#10 1670.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1670.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1670.8 ^ +#10 1670.8 /pytorch/aten/src/ATen/native/hip/RNN.hip:61:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1670.8 hipGetDevice(&curDevice); +#10 1670.8 ^~~~~~~~~~~~ ~~~~~~~~~~ +#10 1670.8 2 warnings generated when compiling for gfx803. +#10 1670.8 In file included from /pytorch/aten/src/ATen/native/hip/RNN.hip:9: +#10 1670.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1670.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1670.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1670.8 ^ +#10 1670.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1670.8 DEPRECATED("use atomicAdd instead") +#10 1670.8 ^ +#10 1670.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1670.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1670.8 ^ +#10 1670.8 /pytorch/aten/src/ATen/native/hip/RNN.hip:61:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1670.8 hipGetDevice(&curDevice); +#10 1670.8 ^~~~~~~~~~~~ ~~~~~~~~~~ +#10 1670.8 2 warnings generated when compiling for host. +#10 1674.4 [6022/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RangeFactories.hip.o +#10 1674.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1674.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1684.8 [6023/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_PointwiseOpsKernel.hip.o +#10 1684.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1684.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1699.7 [6024/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Normalization.hip.o +#10 1699.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1699.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1699.7 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:8: +#10 1699.7 In file included from /pytorch/aten/src/ATen/native/hip/Resize.h:7: +#10 1699.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1699.7 hipGetLastError(); +#10 1699.7 ^~~~~~~~~~~~~~~ +#10 1699.7 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:9: +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 __global__ void batch_norm_backward_reduce_channels_last_kernel( +#10 1699.7 ^ +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 batch_norm_collect_statistics_channels_last_kernel( +#10 1699.7 ^ +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1699.7 29 warnings generated when compiling for gfx803. +#10 1699.7 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:8: +#10 1699.7 In file included from /pytorch/aten/src/ATen/native/hip/Resize.h:7: +#10 1699.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1699.7 hipGetLastError(); +#10 1699.7 ^~~~~~~~~~~~~~~ +#10 1699.7 1 warning generated when compiling for host. +#10 1705.5 [6025/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceNormKernel.hip.o +#10 1705.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1705.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1705.5 In file included from /pytorch/aten/src/ATen/native/hip/ReduceNormKernel.hip:5: +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 __global__ void reduce_kernel(R reduction) { +#10 1705.5 ^ +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.5 864 warnings generated when compiling for gfx803. +#10 1712.8 [6026/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceAMinMaxKernel.hip.o +#10 1712.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1712.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1712.8 In file included from /pytorch/aten/src/ATen/native/hip/ReduceAMinMaxKernel.hip:13: +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 __global__ void reduce_kernel(R reduction) { +#10 1712.8 ^ +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1712.8 180 warnings generated when compiling for gfx803. +#10 1716.0 [6027/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceArgMinKernel.hip.o +#10 1716.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1716.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1716.0 In file included from /pytorch/aten/src/ATen/native/hip/ReduceArgMinKernel.hip:13: +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 __global__ void reduce_kernel(R reduction) { +#10 1716.0 ^ +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.0 162 warnings generated when compiling for gfx803. +#10 1716.5 [6028/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceArgMaxKernel.hip.o +#10 1716.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1716.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1716.5 In file included from /pytorch/aten/src/ATen/native/hip/ReduceArgMaxKernel.hip:13: +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 __global__ void reduce_kernel(R reduction) { +#10 1716.5 ^ +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1716.5 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: th +#10 1716.5 [output clipped, log limit 2MiB reached] +#10 2686.3 cs +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6309/6823] Building CXX object caffe2/CMakeFiles/memory_overlapping_test.dir/__/aten/src/ATen/test/memory_overlapping_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6310/6823] Building CXX object caffe2/CMakeFiles/broadcast_test.dir/__/aten/src/ATen/test/broadcast_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6311/6823] Building CXX object caffe2/CMakeFiles/apply_utils_test.dir/__/aten/src/ATen/test/apply_utils_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6312/6823] Building CXX object caffe2/CMakeFiles/torch_hip.dir/__/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6313/6823] Building CXX object caffe2/CMakeFiles/inline_container_test.dir/serialize/inline_container_test.cc.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6314/6823] Building CXX object caffe2/CMakeFiles/extension_backend_test.dir/__/aten/src/ATen/test/extension_backend_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6315/6823] Building CXX object caffe2/CMakeFiles/kernel_lambda_legacy_test.dir/__/aten/src/ATen/core/boxing/impl/kernel_lambda_legacy_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6316/6823] Building CXX object caffe2/CMakeFiles/basic.dir/__/aten/src/ATen/test/basic.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6317/6823] Building CXX object caffe2/CMakeFiles/CppSignature_test.dir/__/aten/src/ATen/core/dispatch/CppSignature_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6318/6823] Building CXX object caffe2/CMakeFiles/thread_init_test.dir/__/aten/src/ATen/test/thread_init_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6319/6823] Building CXX object caffe2/CMakeFiles/atest.dir/__/aten/src/ATen/test/atest.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6320/6823] Building CXX object caffe2/CMakeFiles/operators_test.dir/__/aten/src/ATen/test/operators_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6321/6823] Building CXX object caffe2/CMakeFiles/dlconvertor_test.dir/__/aten/src/ATen/test/dlconvertor_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6322/6823] Building CXX object caffe2/CMakeFiles/wrapdim_test.dir/__/aten/src/ATen/test/wrapdim_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6323/6823] Building CXX object caffe2/CMakeFiles/undefined_tensor_test.dir/__/aten/src/ATen/test/undefined_tensor_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6324/6823] Building CXX object caffe2/CMakeFiles/math_kernel_test.dir/__/aten/src/ATen/test/math_kernel_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6325/6823] Building CXX object caffe2/CMakeFiles/List_test.dir/__/aten/src/ATen/core/List_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6326/6823] Building CXX object caffe2/CMakeFiles/memory_format_test.dir/__/aten/src/ATen/test/memory_format_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6327/6823] Building CXX object caffe2/CMakeFiles/packedtensoraccessor_test.dir/__/aten/src/ATen/test/packedtensoraccessor_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6328/6823] Building CXX object caffe2/CMakeFiles/native_test.dir/__/aten/src/ATen/test/native_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6329/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/__/common/main.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6330/6823] Building CXX object caffe2/CMakeFiles/quantized_test.dir/__/aten/src/ATen/test/quantized_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6331/6823] Building CXX object test_jit/CMakeFiles/backend_with_compiler.dir/test_backend_compiler_preprocess.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6332/6823] Building CXX object test_jit/CMakeFiles/backend_with_compiler.dir/__/__/torch/csrc/jit/mobile/profiler_edge.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6333/6823] Building CXX object caffe2/CMakeFiles/pow_test.dir/__/aten/src/ATen/test/pow_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/StorageImpl.h:4, +#10 2686.3 from ../c10/core/Storage.h:3, +#10 2686.3 from ../c10/core/TensorImpl.h:8, +#10 2686.3 from ../c10/core/GeneratorImpl.h:8, +#10 2686.3 from ../aten/src/ATen/core/Generator.h:22, +#10 2686.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 2686.3 from ../aten/src/ATen/Context.h:3, +#10 2686.3 from ../aten/src/ATen/ATen.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/types.h:3, +#10 2686.3 from ../aten/src/ATen/test/pow_test.cpp:6: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6334/6823] Building CXX object test_jit/CMakeFiles/jitbackend_test.dir/test_backend_lib.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6335/6823] Building CXX object caffe2/CMakeFiles/mobile_memory_cleanup.dir/__/aten/src/ATen/test/mobile_memory_cleanup.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6336/6823] Building CXX object caffe2/CMakeFiles/cpu_rng_test.dir/__/aten/src/ATen/test/cpu_rng_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/StorageImpl.h:4, +#10 2686.3 from ../c10/core/Storage.h:3, +#10 2686.3 from ../c10/core/TensorImpl.h:8, +#10 2686.3 from ../c10/core/GeneratorImpl.h:8, +#10 2686.3 from ../aten/src/ATen/core/Generator.h:22, +#10 2686.3 from ../aten/src/ATen/Generator.h:2, +#10 2686.3 from ../aten/src/ATen/test/rng_test.h:2, +#10 2686.3 from ../aten/src/ATen/test/cpu_rng_test.cpp:2: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6337/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_add_if_then_else.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6338/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6339/6823] Building CXX object test_jit/CMakeFiles/backend_with_compiler.dir/test_backend_compiler_lib.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6340/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_upgrader_utils.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6341/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_op_replacement.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6342/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_argument_spec.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6343/6823] Building CXX object caffe2/CMakeFiles/ivalue_test.dir/__/aten/src/ATen/test/ivalue_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6344/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_load_upgraders.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6345/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_class_parser.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6346/6823] Building CXX object test_jit/CMakeFiles/torchbind_test.dir/test_custom_class_registrations.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6347/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_alias_analysis.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6348/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_constant_pooling.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6349/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_cleanup_passes.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6350/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_code_template.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6351/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_autodiff.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6352/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_create_autodiff_subgraphs.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6353/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_concat_opt.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6354/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_class_type.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6355/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_dce.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6356/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_custom_class.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6357/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_class_import.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6358/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_backend.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6359/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_inliner.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6360/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_custom_operators.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6361/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_irparser.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6362/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_fuser.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6363/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_jit_type.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6364/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_ir.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6365/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_custom_class_registrations.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6366/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_graph_executor.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6367/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_graph_iterator.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6368/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_memory_dag.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6369/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_qualified_name.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6370/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_cs_debug_info_serialization.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6371/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_interface.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6372/6823] Building CXX object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/RegisterCUDA.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6373/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_interpreter.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6374/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_mobile_type_parser.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6375/6823] Linking CXX shared library lib/libtorch_hip.so +#10 2686.3 [6376/6823] Linking CXX shared library lib/libtorch.so +#10 2686.3 [6377/6823] Linking CXX executable bin/hip_packedtensoraccessor_test +#10 2686.3 [6378/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_peephole_optimize.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6379/6823] Linking CXX executable bin/hip_dlconvertor_test +#10 2686.3 [6380/6823] Linking CXX executable bin/hip_half_test +#10 2686.3 [6381/6823] Linking CXX executable bin/hip_distributions_test +#10 2686.3 [6382/6823] Linking CXX executable bin/hip_complex_test +#10 2686.3 [6383/6823] Linking CXX executable bin/backend_fallback_test +#10 2686.3 [6384/6823] Linking CXX executable bin/op_allowlist_test +#10 2686.3 [6385/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_schema_matching.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6386/6823] Linking CXX executable bin/make_boxed_from_unboxed_functor_test +#10 2686.3 [6387/6823] Linking CXX executable bin/kernel_stackbased_test +#10 2686.3 [6388/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_schema_info.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6389/6823] Linking CXX executable bin/kernel_function_legacy_test +#10 2686.3 [6390/6823] Linking CXX executable bin/kernel_function_test +#10 2686.3 [6391/6823] Linking CXX executable bin/KernelFunction_test +#10 2686.3 [6392/6823] Linking CXX executable bin/IListRef_test +#10 2686.3 [6393/6823] Linking CXX executable bin/legacy_vmap_test +#10 2686.3 [6394/6823] Linking CXX executable bin/variant_test +#10 2686.3 [6395/6823] Linking CXX executable bin/xla_tensor_test +#10 2686.3 [6396/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_stack_opt.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6397/6823] Linking CXX executable bin/type_test +#10 2686.3 [6398/6823] Linking CXX executable bin/stride_properties_test +#10 2686.3 [6399/6823] Linking CXX executable bin/tensor_iterator_test +#10 2686.3 [6400/6823] Linking CXX executable bin/type_ptr_test +#10 2686.3 [6401/6823] Linking CXX executable bin/scalar_tensor_test +#10 2686.3 [6402/6823] Building CXX object caffe2/CMakeFiles/op_registration_test.dir/__/aten/src/ATen/core/op_registration/op_registration_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6403/6823] Linking CXX executable bin/reduce_ops_test +#10 2686.3 [6404/6823] Linking CXX executable bin/scalar_test +#10 2686.3 [6405/6823] Linking CXX executable bin/Dict_test +#10 2686.3 [6406/6823] Linking CXX executable bin/cpu_generator_test +#10 2686.3 [6407/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_subgraph_matcher.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6408/6823] Linking CXX executable bin/MaybeOwned_test +#10 2686.3 [6409/6823] Linking CXX executable bin/half_test +#10 2686.3 [6410/6823] Linking CXX executable bin/hip_generator_test +#10 2686.3 [6411/6823] Linking CXX executable bin/kernel_lambda_test +#10 2686.3 [6412/6823] Linking CXX executable bin/verify_api_visibility +#10 2686.3 [6413/6823] Linking CXX executable bin/reportMemoryUsage_test +#10 2686.3 [6414/6823] Linking CXX executable bin/test_parallel +#10 2686.3 [6415/6823] Linking CXX executable bin/cpu_profiling_allocator_test +#10 2686.3 [6416/6823] Linking CXX executable bin/Dimname_test +#10 2686.3 [6417/6823] Linking CXX executable bin/kernel_lambda_legacy_test +#10 2686.3 [6418/6823] Linking CXX executable bin/hip_apply_test +#10 2686.3 [6419/6823] Linking CXX executable bin/weakref_test +#10 2686.3 [6420/6823] Linking CXX executable bin/hip_integer_divider_test +#10 2686.3 [6421/6823] Linking CXX executable bin/hip_optional_test +#10 2686.3 [6422/6823] Linking CXX executable bin/operator_name_test +#10 2686.3 [6423/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_subgraph_rewriter.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6424/6823] Linking CXX executable bin/hip_vectorized_test +#10 2686.3 [6425/6823] Linking CXX executable bin/apply_utils_test +#10 2686.3 [6426/6823] Linking CXX executable bin/NamedTensor_test +#10 2686.3 [6427/6823] Linking CXX executable bin/hip_complex_math_test +#10 2686.3 [6428/6823] Linking CXX executable bin/broadcast_test +#10 2686.3 [6429/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_lite_trainer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6430/6823] Linking CXX executable bin/extension_backend_test +#10 2686.3 [6431/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_lite_interpreter_direct.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6432/6823] Linking CXX executable bin/cpu_rng_test +#10 2686.3 [6433/6823] Linking CXX executable bin/atest +#10 2686.3 [6434/6823] Linking CXX executable bin/basic +#10 2686.3 [6435/6823] Linking CXX executable bin/thread_init_test +#10 2686.3 [6436/6823] Linking CXX executable bin/memory_overlapping_test +#10 2686.3 [6437/6823] Linking CXX executable bin/dispatch_key_set_test +#10 2686.3 [6438/6823] Linking CXX executable bin/inline_container_test +#10 2686.3 [6439/6823] Linking CXX executable bin/operators_test +#10 2686.3 [6440/6823] Linking CXX executable bin/List_test +#10 2686.3 [6441/6823] Linking CXX executable bin/wrapdim_test +#10 2686.3 [6442/6823] Linking CXX executable bin/dlconvertor_test +#10 2686.3 [6443/6823] Linking CXX executable bin/ivalue_test +#10 2686.3 [6444/6823] Linking CXX executable bin/undefined_tensor_test +#10 2686.3 [6445/6823] Linking CXX executable bin/CppSignature_test +#10 2686.3 [6446/6823] Linking CXX executable bin/lazy_tensor_test +#10 2686.3 [6447/6823] Linking CXX executable bin/mobile_memory_cleanup +#10 2686.3 [6448/6823] Linking CXX executable bin/math_kernel_test +#10 2686.3 [6449/6823] Linking CXX shared library lib/libtorchbind_test.so +#10 2686.3 [6450/6823] Linking CXX executable bin/op_registration_test +#10 2686.3 [6451/6823] Linking CXX shared library lib/libjitbackend_test.so +#10 2686.3 [6452/6823] Linking CXX shared library lib/libbackend_with_compiler.so +#10 2686.3 [6453/6823] Linking CXX executable bin/packedtensoraccessor_test +#10 2686.3 [6454/6823] Linking CXX executable bin/native_test +#10 2686.3 [6455/6823] Linking CXX executable bin/memory_format_test +#10 2686.3 [6456/6823] Linking CXX executable bin/pow_test +#10 2686.3 [6457/6823] Linking CXX executable bin/quantized_test +#10 2686.3 [6458/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_module_api.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6459/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/__/common/main.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6460/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_approx.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6461/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_file_format.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6462/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_lite_interpreter.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6463/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_save_load.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6464/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_script_profile.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6465/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_union.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6466/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_subgraph_utils.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6467/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_jit_logging_levels.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6468/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_misc.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6469/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/padded_buffer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6470/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_utils.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6471/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_shape_analysis.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6472/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_ir_printer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6473/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_cpp_codegen.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6474/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_aten.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6475/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_ir_verifier.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6476/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_boundsinference.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/StorageImpl.h:4, +#10 2686.3 from ../c10/core/Storage.h:3, +#10 2686.3 from ../c10/core/TensorImpl.h:8, +#10 2686.3 from ../c10/core/GeneratorImpl.h:8, +#10 2686.3 from ../aten/src/ATen/core/Generator.h:22, +#10 2686.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 2686.3 from ../aten/src/ATen/Context.h:3, +#10 2686.3 from ../aten/src/ATen/ATen.h:7, +#10 2686.3 from ../torch/csrc/jit/tensorexpr/codegen.h:3, +#10 2686.3 from ../torch/csrc/jit/tensorexpr/eval.h:14, +#10 2686.3 from ../test/cpp/tensorexpr/padded_buffer.h:7, +#10 2686.3 from ../test/cpp/tensorexpr/test_boundsinference.cpp:9: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6477/6823] Building CXX object test_tensorexpr/CMakeFiles/tutorial_tensorexpr.dir/tutorial.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6478/6823] Linking CXX executable bin/tutorial_tensorexpr +#10 2686.3 [6479/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_conv.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6480/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_dynamic_shapes.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6481/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_expr.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6482/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_graph_opt.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6483/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_external_calls.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6484/6823] Building CXX object test_jit/CMakeFiles/test_jit.dir/test_flatbuffer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6485/6823] Building CXX object dist_autograd/CMakeFiles/test_dist_autograd.dir/__/common/main.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6486/6823] Linking CXX executable bin/test_jit +#10 2686.3 [6487/6823] Building CXX object test_cpp_rpc/CMakeFiles/test_cpp_rpc.dir/__/common/main.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6488/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_memplanning.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6489/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_te_fuser_pass.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6490/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_kernel.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6491/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_type_specializations.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6492/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_ops.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6493/6823] Building CXX object test_api/CMakeFiles/test_api.dir/__/common/main.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6494/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_quantization.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6495/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_type.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6496/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_reductions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6497/6823] Building CXX object test_cpp_rpc/CMakeFiles/test_cpp_rpc.dir/e2e_test_base.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6498/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_registerizer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6499/6823] Building CXX object dist_autograd/CMakeFiles/test_dist_autograd.dir/test_dist_autograd.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6500/6823] Linking CXX executable bin/test_dist_autograd +#10 2686.3 [6501/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_memdependency.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6502/6823] Building CXX object test_api/CMakeFiles/parallel_benchmark.dir/parallel_benchmark.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6503/6823] Linking CXX executable bin/parallel_benchmark +#10 2686.3 [6504/6823] Building CXX object test_cpp_rpc/CMakeFiles/test_cpp_rpc.dir/test_wire_serialization.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6505/6823] Building CXX object test_cpp_rpc/CMakeFiles/test_cpp_rpc.dir/test_e2e_tensorpipe.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6506/6823] Building CXX object test_api/CMakeFiles/test_api.dir/expanding-array.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6507/6823] Building CXX object test_api/CMakeFiles/test_api.dir/memory.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6508/6823] Building CXX object test_cpp_rpc/CMakeFiles/test_cpp_rpc.dir/test_tensorpipe_serialization.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6509/6823] Building CXX object test_api/CMakeFiles/test_api.dir/enum.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6510/6823] Linking CXX executable bin/test_cpp_rpc +#10 2686.3 [6511/6823] Building CXX object test_api/CMakeFiles/test_api.dir/fft.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6512/6823] Building CXX object test_api/CMakeFiles/test_api.dir/any.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6513/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_loopnest.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/StorageImpl.h:4, +#10 2686.3 from ../c10/core/Storage.h:3, +#10 2686.3 from ../c10/core/TensorImpl.h:8, +#10 2686.3 from ../c10/core/GeneratorImpl.h:8, +#10 2686.3 from ../aten/src/ATen/core/Generator.h:22, +#10 2686.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 2686.3 from ../aten/src/ATen/Context.h:3, +#10 2686.3 from ../aten/src/ATen/ATen.h:7, +#10 2686.3 from ../torch/csrc/jit/tensorexpr/codegen.h:3, +#10 2686.3 from ../torch/csrc/jit/tensorexpr/eval.h:14, +#10 2686.3 from ../test/cpp/tensorexpr/padded_buffer.h:7, +#10 2686.3 from ../test/cpp/tensorexpr/test_loopnest.cpp:9: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6514/6823] Building CXX object test_api/CMakeFiles/test_api.dir/jit.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6515/6823] Building CXX object test_api/CMakeFiles/test_api.dir/integration.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/integration.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6516/6823] Building CXX object test_api/CMakeFiles/test_api.dir/meta_tensor.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6517/6823] Building CXX object test_api/CMakeFiles/test_api.dir/misc.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6518/6823] Building CXX object test_api/CMakeFiles/test_api.dir/autograd.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/core/boxing/impl/test_helpers.h:6, +#10 2686.3 from ../test/cpp/api/autograd.cpp:1: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6519/6823] Building CXX object test_api/CMakeFiles/test_api.dir/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/init.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6520/6823] Building CXX object test_api/CMakeFiles/test_api.dir/moduledict.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6521/6823] Building CXX object test_api/CMakeFiles/test_api.dir/nested.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6522/6823] Building CXX object test_api/CMakeFiles/test_api.dir/parameterdict.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/parameterdict.cpp:2: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6523/6823] Building CXX object test_api/CMakeFiles/test_api.dir/modulelist.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6524/6823] Building CXX object test_api/CMakeFiles/test_api.dir/namespace.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6525/6823] Building CXX object test_api/CMakeFiles/test_api.dir/module.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6526/6823] Building CXX object test_api/CMakeFiles/test_api.dir/parameterlist.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6527/6823] Building CXX object test_api/CMakeFiles/test_api.dir/dataloader.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/dataloader.cpp:3: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6528/6823] Building CXX object test_api/CMakeFiles/test_api.dir/ordered_dict.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6529/6823] Building CXX object test_tensorexpr/CMakeFiles/test_tensorexpr.dir/test_simplify.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6530/6823] Linking CXX executable bin/test_tensorexpr +#10 2686.3 [6531/6823] Building CXX object test_api/CMakeFiles/test_api.dir/tensor_cuda.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6532/6823] Building CXX object test_api/CMakeFiles/test_api.dir/functional.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/functional.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6533/6823] Building CXX object test_api/CMakeFiles/test_api.dir/support.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6534/6823] Building CXX object test_api/CMakeFiles/test_api.dir/nn_utils.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/nn_utils.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6535/6823] Building CXX object test_api/CMakeFiles/test_api.dir/special.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6536/6823] Building CXX object test_api/CMakeFiles/test_api.dir/rnn.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/rnn.cpp:3: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6537/6823] Building CXX object test_api/CMakeFiles/test_api.dir/static.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6538/6823] Building CXX object test_api/CMakeFiles/test_api.dir/tensor_options_cuda.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6539/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/__/common/main.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6540/6823] Building CXX object test_api/CMakeFiles/test_api.dir/torch_include.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6541/6823] Building CXX object test_api/CMakeFiles/test_api.dir/serialize.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/serialize.cpp:7: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6542/6823] Building CXX object test_api/CMakeFiles/test_api.dir/inference_mode.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6543/6823] Building CXX object test_api/CMakeFiles/test_api.dir/grad_mode.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6544/6823] Building CXX object test_api/CMakeFiles/test_api.dir/tensor_options.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6545/6823] Building CXX object test_api/CMakeFiles/test_api.dir/optim.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/optim.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6546/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_cache.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6547/6823] Building CXX object test_api/CMakeFiles/test_api.dir/sequential.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/sequential.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6548/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_permutation_util.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6549/6823] Building CXX object test_api/CMakeFiles/test_api.dir/tensor_indexing.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/tensor_indexing.cpp:3: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6550/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_util.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6551/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_misc.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6552/6823] Building CXX object test_api/CMakeFiles/test_api.dir/transformer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/transformer.cpp:3: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6553/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_ir_util.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6554/6823] Building CXX object test_api/CMakeFiles/test_api.dir/operations.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/operations.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6555/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_shape.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6556/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_ir.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6557/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_backend_device.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6558/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_trie_cache.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6559/6823] Building CXX object test_api/CMakeFiles/test_api.dir/tensor.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/StorageImpl.h:4, +#10 2686.3 from ../c10/core/Storage.h:3, +#10 2686.3 from ../c10/core/TensorImpl.h:8, +#10 2686.3 from ../c10/core/GeneratorImpl.h:8, +#10 2686.3 from ../aten/src/ATen/core/Generator.h:22, +#10 2686.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 2686.3 from ../aten/src/ATen/Context.h:3, +#10 2686.3 from aten/src/ATen/Functions.h:59, +#10 2686.3 from ../aten/src/ATen/ExpandUtils.h:4, +#10 2686.3 from ../aten/src/ATen/TensorIndexing.h:3, +#10 2686.3 from ../test/cpp/api/support.h:7, +#10 2686.3 from ../test/cpp/api/tensor.cpp:2: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6560/6823] Building CXX object caffe2/torch/CMakeFiles/nnapi_backend.dir/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6561/6823] Building CXX object caffe2/torch/CMakeFiles/nnapi_backend.dir/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6562/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_lazy_ops_util.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6563/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6564/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6565/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6566/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6567/6823] Building CXX object test_api/CMakeFiles/test_api.dir/modules.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/autograd/function_hook.h:3, +#10 2686.3 from ../torch/csrc/autograd/cpp_hook.h:2, +#10 2686.3 from ../torch/csrc/autograd/variable.h:6, +#10 2686.3 from ../torch/csrc/autograd/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/autograd.h:3, +#10 2686.3 from ../torch/csrc/api/include/torch/all.h:7, +#10 2686.3 from ../torch/csrc/api/include/torch/torch.h:3, +#10 2686.3 from ../test/cpp/api/modules.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6568/6823] Linking CXX executable bin/test_api +#10 2686.3 [6569/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6570/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6571/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6572/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6573/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6574/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6575/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6576/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6577/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6578/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6579/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6580/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6581/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6582/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6583/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6584/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6585/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6586/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6587/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6588/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6589/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6590/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6591/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6592/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6593/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6594/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6595/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6596/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6597/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6598/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6599/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6600/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6601/6823] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o +#10 2686.3 cc1: warning: command-line option ‘-Wno-exceptions’ is valid for C++/ObjC++ but not for C +#10 2686.3 cc1: warning: command-line option ‘-std=c++17’ is valid for C++/ObjC++ but not for C +#10 2686.3 cc1: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6602/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6603/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6604/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6605/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6606/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6607/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6608/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6609/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6610/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6611/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6612/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6613/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6614/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6615/6823] Building CXX object test_lazy/CMakeFiles/test_lazy.dir/test_lazy_ops.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 In file included from ../c10/core/ScalarType.h:3, +#10 2686.3 from ../c10/core/Scalar.h:11, +#10 2686.3 from aten/src/ATen/core/TensorBody.h:16, +#10 2686.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 2686.3 from ../aten/src/ATen/Tensor.h:3, +#10 2686.3 from ../torch/csrc/lazy/backend/backend_device.h:7, +#10 2686.3 from ../test/cpp/lazy/test_lazy_ops_util.h:4, +#10 2686.3 from ../test/cpp/lazy/test_lazy_ops.cpp:4: +#10 2686.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 2686.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 2686.3 37 | res = *tempRes; +#10 2686.3 | ~~~~^~~~~~~~~~ +#10 2686.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 2686.3 28 | uint32_t tmp = src; +#10 2686.3 | ^~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6616/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6617/6823] Linking CXX executable bin/test_lazy +#10 2686.3 [6618/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6619/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6620/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6621/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6622/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6623/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6624/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6625/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6626/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6627/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6628/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6629/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6630/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6631/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6632/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6633/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6634/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6635/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6636/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6637/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6638/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6639/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6640/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6641/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6642/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6643/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6644/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6645/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6646/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6647/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6648/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6649/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6650/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6651/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6652/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6653/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6654/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6655/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6656/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6657/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6658/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6659/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6660/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6661/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6662/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6663/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6664/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6665/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6666/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6667/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6668/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6669/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6670/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6671/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6672/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6673/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6674/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6675/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6676/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6677/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o +#10 2686.3 FAILED: caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o +#10 2686.3 /usr/bin/c++ -DAT_PER_OPERATOR_HEADERS -DBUILDING_TESTS -DBUILD_ONEDNN_GRAPH -DFMT_HEADER_ONLY=1 -DHAVE_MALLOC_USABLE_SIZE=1 -DHAVE_MMAP=1 -DHAVE_SHM_OPEN=1 -DHAVE_SHM_UNLINK=1 -DMINIZ_DISABLE_ZIP_READER_CRC32_CHECKS -DONNXIFI_ENABLE_EXT=1 -DONNX_ML=1 -DONNX_NAMESPACE=onnx_torch -DROCM_VERSION=50402 -DTHP_BUILD_MAIN_LIB -DTORCH_HIP_VERSION=504 -DUSE_C10D -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_EXPERIMENTAL_CUDNN_V8_API -DUSE_EXTERNAL_MZCRC -DUSE_ITT -DUSE_NCCL -DUSE_NUMPY -DUSE_ROCM -DUSE_RPC -DUSE_TENSORPIPE -DUSE_VALGRIND -D_FILE_OFFSET_BITS=64 -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__ -D__HIP_PLATFORM_HCC__=1 -Dtorch_python_EXPORTS -Iaten/src -I../aten/src -I. -I../ -I../cmake/../third_party/benchmark/include -I../third_party/onnx -Ithird_party/onnx -I../third_party/foxi -Ithird_party/foxi -I../torch/.. -I../torch/../aten/src -I../torch/../aten/src/TH -Icaffe2/aten/src -Ithird_party -I../torch/../third_party/valgrind-headers -I../torch/../third_party/gloo -I../torch/../third_party/onnx -I../torch/../third_party/flatbuffers/include -I../torch/../third_party/kineto/libkineto/include -I../torch/csrc -I../torch/csrc/api/include -I../torch/lib -I../torch/lib/libshm -I/opt/rocm/roctracer/include -I../torch/csrc/api -I../c10/.. -I../c10/hip/../.. -I../torch/lib/libshm/../../../torch/lib -I../third_party/fmt/include -isystem /opt/rocm-5.4.2/include -isystem third_party/gloo -isystem ../cmake/../third_party/gloo -isystem ../cmake/../third_party/googletest/googlemock/include -isystem ../cmake/../third_party/googletest/googletest/include -isystem ../third_party/protobuf/src -isystem ../third_party/gemmlowp -isystem ../third_party/neon2sse -isystem ../third_party/XNNPACK/include -isystem ../third_party/ittapi/include -isystem ../cmake/../third_party/eigen -isystem ../third_party/ideep/mkl-dnn/third_party/oneDNN/include -isystem ../third_party/ideep/include -isystem ../third_party/ideep/mkl-dnn/include -isystem /usr/include/python3.10 -isystem /usr/local/lib/python3.10/dist-packages/numpy/_core/include -isystem /opt/rocm-5.4.2/include/hiprand -isystem ../cmake/../third_party/pybind11/include -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wunused-local-typedefs -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format -Werror=cast-function-type -Wno-stringop-overflow -DHAVE_AVX2_CPU_DEFINITION -O3 -DNDEBUG -DNDEBUG -fPIC -DCAFFE2_USE_GLOO -DTH_HAVE_THREAD -Wno-unused-variable -fno-strict-aliasing -Wno-write-strings -Wno-strict-aliasing -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o -MF caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o.d -o caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o -c ../torch/csrc/utils/tensor_numpy.cpp +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 ../torch/csrc/utils/tensor_numpy.cpp: In function ‘at::Tensor torch::utils::tensor_from_cuda_array_interface(PyObject*)’: +#10 2686.3 ../torch/csrc/utils/tensor_numpy.cpp:400:34: error: ‘PyArray_Descr’ has no member named ‘elsize’ +#10 2686.3 400 | dtype_size_in_bytes = descr->elsize; +#10 2686.3 | ^~~~~~ +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6678/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6679/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6680/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6681/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/itt.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6682/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cuda/shared/nvtx.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6683/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/__/test/cpp/jit/torch_python_test.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6684/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cuda/Event.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6685/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/init_flatbuffer_module.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6686/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cuda/Stream.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6687/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6688/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cuda/python_comm.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6689/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 [6690/6823] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cuda/Module.cpp.o +#10 2686.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 2686.3 ../torch/csrc/cuda/Module.cpp: In static member function ‘static std::shared_ptr StackContext::gather_with_cpp()’: +#10 2686.3 ../torch/csrc/cuda/Module.cpp:634:21: warning: redundant move in return statement [-Wredundant-move] +#10 2686.3 634 | return std::move(r); +#10 2686.3 | ~~~~~~~~~^~~ +#10 2686.3 ../torch/csrc/cuda/Module.cpp:634:21: note: remove ‘std::move’ call +#10 2686.3 At global scope: +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 2686.3 ninja: build stopped: subcommand failed. +#10 ERROR: process "/bin/sh -c echo \"BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** \" && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r ${REQS_FILE} && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true" did not complete successfully: exit code: 1 +------ + > [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r requirements.txt && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true: +2686.3 ../torch/csrc/cuda/Module.cpp:634:21: warning: redundant move in return statement [-Wredundant-move] +2686.3 634 | return std::move(r); +2686.3 | ~~~~~~~~~^~~ +2686.3 ../torch/csrc/cuda/Module.cpp:634:21: note: remove ‘std::move’ call +2686.3 At global scope: +2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +2686.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +2686.3 ninja: build stopped: subcommand failed. +------ +Dockerfile:66 +-------------------- + 65 | WORKDIR /pytorch + 66 | >>> RUN echo "BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** " && \ + 67 | >>> python3 --version && \ + 68 | >>> # dpkg -r --force-depends python3-yaml python3-filelock || true && + 69 | >>> mkdir -p /pytorch/dist && \ + 70 | >>> python3 setup.py clean && \ + 71 | >>> python3 -m pip install --break-system-packages -r ${REQS_FILE} && \ + 72 | >>> python3 tools/amd_build/build_amd.py && \ + 73 | >>> python3 setup.py bdist_wheel && \ + 74 | >>> python3 -m pip install --break-system-packages dist/torch*.whl && \ + 75 | >>> ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && \ + 76 | >>> true + 77 | +-------------------- +ERROR: failed to solve: process "/bin/sh -c echo \"BUILDING PYTORCH ${PYTORCH_GIT_TAG} for ${PYTORCH_ROCM_ARCH} *** \" && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && python3 -m pip install --break-system-packages -r ${REQS_FILE} && python3 tools/amd_build/build_amd.py && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true" did not complete successfully: exit code: 1 diff --git a/rocm_5.4/logs/build_rocm542_v2.log b/rocm_5.4/logs/build_rocm542_v2.log new file mode 100644 index 000000000..ede446b1e --- /dev/null +++ b/rocm_5.4/logs/build_rocm542_v2.log @@ -0,0 +1,19546 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 6.17kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/18] FROM docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#4 DONE 0.0s + +#5 [ 2/18] RUN echo "MAX_JOBS=14" >> /etc/environment && echo "HSA_OVERRIDE_GFX_VERSION=8.0.3" >> /etc/environment && echo "PYTORCH_ROCM_ARCH=gfx803" >> /etc/environment && echo "ROCM_ARCH=gfx803" >> /etc/environment && echo "TORCH_BLAS_PREFER_HIPBLASLT=0" >> /etc/environment && echo "ROC_ENABLE_PRE_VEGA=1" >> /etc/environment && echo "PIP_ROOT_USER_ACTION=ignore" >> /etc/environment && echo "CMAKE_POLICY_VERSION_MINIMUM=3.18" >> /etc/environment && true +#5 CACHED + +#6 [ 5/18] RUN echo "Checkout PyTorch Version: v2.0.1" && git clone --depth 1 --recursive --branch v2.0.1 https://github.com/pytorch/pytorch.git /pytorch && true +#6 CACHED + +#7 [ 4/18] RUN python3 --version && pip3 --version && cmake --version +#7 CACHED + +#8 [ 3/18] RUN apt-get update -y && apt-get install -y --no-install-recommends git wget curl ffmpeg python3.10 python3-pip python3.10-dev python3.10-venv ninja-build libopenblas-dev libomp-dev pkg-config && python3 -m pip install --upgrade pip wheel setuptools && python3 -m pip install "cmake==3.20.2" && apt-get clean && rm -rf /var/lib/apt/lists/* && true +#8 CACHED + +#9 [ 6/18] WORKDIR /pytorch +#9 CACHED + +#10 [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && echo "Installing PyTorch build requirements from requirements.txt..." && python3 -m pip install --break-system-packages -r requirements.txt && echo "Re-pinning NumPy to 1.23.5 after PyTorch requirements install..." && python3 -m pip install --break-system-packages "numpy==1.23.5" --force-reinstall && python3 -c "import numpy; print(f'NumPy version for PyTorch build: {numpy.__version__}')" && echo "Running amd_build.py..." && python3 tools/amd_build/build_amd.py && echo "Running setup.py bdist_wheel..." && python3 setup.py bdist_wheel && echo "Installing built PyTorch wheel..." && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true +#10 0.238 BUILDING PYTORCH v2.0.1 for gfx803 *** +#10 0.239 Python 3.10.12 +#10 0.352 Building wheel torch-2.0.0a0+gite9ebda2 +#10 0.417 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#10 0.417 !! +#10 0.417 +#10 0.417 ******************************************************************************** +#10 0.417 Please consider removing the following classifiers in favor of a SPDX license expression: +#10 0.417 +#10 0.417 License :: OSI Approved :: BSD License +#10 0.417 +#10 0.417 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#10 0.417 ******************************************************************************** +#10 0.417 +#10 0.417 !! +#10 0.417 self._finalize_license_expression() +#10 0.417 running clean +#10 0.663 Installing PyTorch build requirements from requirements.txt... +#10 6.288 Collecting astunparse (from -r requirements.txt (line 2)) +#10 6.601 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +#10 6.688 Collecting expecttest (from -r requirements.txt (line 3)) +#10 6.752 Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) +#10 7.251 Collecting hypothesis (from -r requirements.txt (line 4)) +#10 7.316 Downloading hypothesis-6.131.17-py3-none-any.whl.metadata (5.6 kB) +#10 7.582 Collecting numpy (from -r requirements.txt (line 5)) +#10 7.645 Downloading numpy-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#10 7.878 Collecting psutil (from -r requirements.txt (line 6)) +#10 7.941 Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) +#10 8.058 Collecting pyyaml (from -r requirements.txt (line 7)) +#10 8.119 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#10 8.225 Collecting requests (from -r requirements.txt (line 8)) +#10 8.287 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#10 8.298 Requirement already satisfied: setuptools in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 9)) (80.7.1) +#10 8.376 Collecting types-dataclasses (from -r requirements.txt (line 10)) +#10 8.439 Downloading types_dataclasses-0.6.6-py3-none-any.whl.metadata (1.3 kB) +#10 8.530 Collecting typing-extensions (from -r requirements.txt (line 11)) +#10 8.592 Downloading typing_extensions-4.13.2-py3-none-any.whl.metadata (3.0 kB) +#10 8.683 Collecting sympy (from -r requirements.txt (line 12)) +#10 8.746 Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) +#10 8.843 Collecting filelock (from -r requirements.txt (line 13)) +#10 8.906 Downloading filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) +#10 9.005 Collecting networkx (from -r requirements.txt (line 14)) +#10 9.067 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#10 9.160 Collecting jinja2 (from -r requirements.txt (line 15)) +#10 9.222 Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) +#10 9.233 Requirement already satisfied: wheel<1.0,>=0.23.0 in /usr/local/lib/python3.10/dist-packages (from astunparse->-r requirements.txt (line 2)) (0.45.1) +#10 9.311 Collecting six<2.0,>=1.6.1 (from astunparse->-r requirements.txt (line 2)) +#10 9.375 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#10 9.464 Collecting attrs>=22.2.0 (from hypothesis->-r requirements.txt (line 4)) +#10 9.526 Downloading attrs-25.3.0-py3-none-any.whl.metadata (10 kB) +#10 9.621 Collecting exceptiongroup>=1.0.0 (from hypothesis->-r requirements.txt (line 4)) +#10 9.684 Downloading exceptiongroup-1.3.0-py3-none-any.whl.metadata (6.7 kB) +#10 9.774 Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis->-r requirements.txt (line 4)) +#10 9.838 Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) +#10 9.998 Collecting charset-normalizer<4,>=2 (from requests->-r requirements.txt (line 8)) +#10 10.06 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#10 10.16 Collecting idna<4,>=2.5 (from requests->-r requirements.txt (line 8)) +#10 10.22 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#10 10.32 Collecting urllib3<3,>=1.21.1 (from requests->-r requirements.txt (line 8)) +#10 10.38 Downloading urllib3-2.4.0-py3-none-any.whl.metadata (6.5 kB) +#10 10.48 Collecting certifi>=2017.4.17 (from requests->-r requirements.txt (line 8)) +#10 10.54 Downloading certifi-2025.4.26-py3-none-any.whl.metadata (2.5 kB) +#10 10.64 Collecting mpmath<1.4,>=1.1.0 (from sympy->-r requirements.txt (line 12)) +#10 10.71 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#10 10.84 Collecting MarkupSafe>=2.0 (from jinja2->-r requirements.txt (line 15)) +#10 10.90 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#10 10.98 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +#10 11.06 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#10 11.13 Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) +#10 11.20 Downloading hypothesis-6.131.17-py3-none-any.whl (502 kB) +#10 11.42 Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) +#10 11.50 Downloading numpy-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#10 13.08 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 10.3 MB/s eta 0:00:00 +#10 13.15 Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) +#10 13.24 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB) +#10 13.32 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 751.2/751.2 kB 9.1 MB/s eta 0:00:00 +#10 13.39 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#10 13.46 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149 kB) +#10 13.54 Downloading idna-3.10-py3-none-any.whl (70 kB) +#10 13.62 Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) +#10 13.70 Downloading types_dataclasses-0.6.6-py3-none-any.whl (2.9 kB) +#10 13.77 Downloading typing_extensions-4.13.2-py3-none-any.whl (45 kB) +#10 13.85 Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) +#10 14.42 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 11.0 MB/s eta 0:00:00 +#10 14.49 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#10 14.55 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 7.9 MB/s eta 0:00:00 +#10 14.61 Downloading filelock-3.18.0-py3-none-any.whl (16 kB) +#10 14.68 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#10 14.85 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 10.4 MB/s eta 0:00:00 +#10 14.91 Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) +#10 14.99 Downloading attrs-25.3.0-py3-none-any.whl (63 kB) +#10 15.07 Downloading certifi-2025.4.26-py3-none-any.whl (159 kB) +#10 15.15 Downloading exceptiongroup-1.3.0-py3-none-any.whl (16 kB) +#10 15.22 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) +#10 15.34 Installing collected packages: types-dataclasses, sortedcontainers, mpmath, urllib3, typing-extensions, sympy, six, pyyaml, psutil, numpy, networkx, MarkupSafe, idna, filelock, expecttest, charset-normalizer, certifi, attrs, requests, jinja2, exceptiongroup, astunparse, hypothesis +#10 22.20 +#10 22.20 Successfully installed MarkupSafe-3.0.2 astunparse-1.6.3 attrs-25.3.0 certifi-2025.4.26 charset-normalizer-3.4.2 exceptiongroup-1.3.0 expecttest-0.3.0 filelock-3.18.0 hypothesis-6.131.17 idna-3.10 jinja2-3.1.6 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.5 psutil-7.0.0 pyyaml-6.0.2 requests-2.32.3 six-1.17.0 sortedcontainers-2.4.0 sympy-1.14.0 types-dataclasses-0.6.6 typing-extensions-4.13.2 urllib3-2.4.0 +#10 22.35 Re-pinning NumPy to 1.23.5 after PyTorch requirements install... +#10 28.14 Collecting numpy==1.23.5 +#10 28.47 Downloading numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.3 kB) +#10 28.55 Downloading numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB) +#10 30.39 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/17.1 MB 10.1 MB/s eta 0:00:00 +#10 30.46 Installing collected packages: numpy +#10 30.46 Attempting uninstall: numpy +#10 30.46 Found existing installation: numpy 2.2.5 +#10 30.52 Uninstalling numpy-2.2.5: +#10 30.53 Successfully uninstalled numpy-2.2.5 +#10 31.91 Successfully installed numpy-1.23.5 +#10 32.07 NumPy version for PyTorch build: 1.23.5 +#10 32.08 Running amd_build.py... +#10 32.32 third_party/gloo/cmake/Hip.cmake skipped +#10 32.32 third_party/gloo/cmake/Modules/Findrccl.cmake updated +#10 32.32 third_party/gloo/cmake/Dependencies.cmake updated +#10 32.66 /pytorch/tools/autograd/templates/python_variable_methods.cpp -> /pytorch/tools/autograd/templates/python_variable_methods.cpp [ok] +#10 32.66 /pytorch/aten/src/ATen/native/quantized/cuda/FakeQuantizeCore.cu -> /pytorch/aten/src/ATen/native/quantized/hip/FakeQuantizeCore.hip [ok] +#10 32.66 /pytorch/aten/src/ATen/native/quantized/cuda/MakePerTensorQuantizedTensor.cu -> /pytorch/aten/src/ATen/native/quantized/hip/MakePerTensorQuantizedTensor.hip [ok] +#10 32.66 /pytorch/aten/src/ATen/native/quantized/cuda/IntReprQuant.cu -> /pytorch/aten/src/ATen/native/quantized/hip/IntReprQuant.hip [ok] +#10 32.66 /pytorch/aten/src/ATen/native/quantized/cuda/FusedObsFakeQuant.cu -> /pytorch/aten/src/ATen/native/quantized/hip/FusedObsFakeQuant.hip [ok] +#10 32.66 /pytorch/aten/src/ATen/native/quantized/cuda/AffineQuantizer.cu -> /pytorch/aten/src/ATen/native/quantized/hip/AffineQuantizer.hip [ok] +#10 32.66 /pytorch/aten/src/ATen/native/quantized/cuda/Activation.cu -> /pytorch/aten/src/ATen/native/quantized/hip/Activation.hip [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cuda/EmbeddingBag.cu -> /pytorch/aten/src/ATen/native/quantized/hip/EmbeddingBag.hip [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cuda/Activation.cpp -> /pytorch/aten/src/ATen/native/quantized/hip/Activation.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/Pooling.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Pooling.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/utils.h -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/utils.h [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/LinearUnpackImpl.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/LinearUnpackImpl.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/ConvPrepack.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/ConvPrepack.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/Linear.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Linear.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/LinearPrepack.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/LinearPrepack.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/BinaryOps.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/BinaryOps.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/ConvUnpackImpl.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/ConvUnpackImpl.cpp [ok] +#10 32.67 /pytorch/aten/src/ATen/native/quantized/cudnn/Conv.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Conv.cpp [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/DilatedMaxPool3d.cu -> /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/Im2Col.cu -> /pytorch/aten/src/ATen/native/hip/Im2Col.hip [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/MaxMinElementwiseKernel.cu -> /pytorch/aten/src/ATen/native/hip/MaxMinElementwiseKernel.hip [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/UnaryOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryOpsKernel.hip [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/RangeFactories.cu -> /pytorch/aten/src/ATen/native/hip/RangeFactories.hip [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/jit_utils.h -> /pytorch/aten/src/ATen/native/hip/jit_utils.h [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/reduction_template.cuh -> /pytorch/aten/src/ATen/native/hip/reduction_template.cuh [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/jit_utils.cpp -> /pytorch/aten/src/ATen/native/hip/jit_utils.cpp [ok] +#10 32.68 /pytorch/aten/src/ATen/native/cuda/TensorShapeCUDA.cpp -> /pytorch/aten/src/ATen/native/hip/TensorShapeHIP.cpp [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpScalarList.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleBilinear2d.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest1d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest1d.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/GridSampler.cu -> /pytorch/aten/src/ATen/native/hip/GridSampler.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAcosKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAcosKernel.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/ROCmLoops.cuh -> /pytorch/aten/src/ATen/native/hip/ROCmLoops.cuh [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/BinaryDivFloorKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivFloorKernel.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/CumminmaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumminmaxKernel.hip [ok] +#10 32.69 /pytorch/aten/src/ATen/native/cuda/SortingCommon.cuh -> /pytorch/aten/src/ATen/native/hip/SortingCommon.cuh [ok] +#10 32.70 /pytorch/aten/src/ATen/native/cuda/ReplicationPadding.cu -> /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip [ok] +#10 32.70 /pytorch/aten/src/ATen/native/cuda/GridSampler.cuh -> /pytorch/aten/src/ATen/native/hip/GridSampler.cuh [ok] +#10 32.70 /pytorch/aten/src/ATen/native/cuda/Copy.h -> /pytorch/aten/src/ATen/native/hip/Copy.h [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/Math.cuh -> /pytorch/aten/src/ATen/native/hip/Math.cuh [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/CuFFTUtils.h -> /pytorch/aten/src/ATen/native/hip/CuFFTUtils.h [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/KernelUtils.cuh -> /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/UniqueCub.cuh -> /pytorch/aten/src/ATen/native/hip/UniqueCub.cuh [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/Activation.h -> /pytorch/aten/src/ATen/native/hip/Activation.h [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/ReduceLogicKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceLogicKernel.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/DistributionRandomKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionRandomKernel.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/ActivationThresholdKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationThresholdKernel.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/BinaryMiscOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMiscOpsKernels.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/modified_bessel_i0.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_i0.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/scaled_modified_bessel_k0.cu -> /pytorch/aten/src/ATen/native/hip/scaled_modified_bessel_k0.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.h -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.h [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/ActivationSiluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSiluKernel.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/AmpKernels.cu -> /pytorch/aten/src/ATen/native/hip/AmpKernels.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/UniqueCub.cu -> /pytorch/aten/src/ATen/native/hip/UniqueCub.hip [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/GridSampler.h -> /pytorch/aten/src/ATen/native/hip/GridSampler.h [ok] +#10 32.71 /pytorch/aten/src/ATen/native/cuda/PowKernel.cu -> /pytorch/aten/src/ATen/native/hip/PowKernel.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/Normalization.cu -> /pytorch/aten/src/ATen/native/hip/Normalization.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/TensorTopK.cpp -> /pytorch/aten/src/ATen/native/hip/TensorTopK.cpp [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/ActivationLogSigmoidKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationLogSigmoidKernel.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu -> /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/TriangularOps.cu -> /pytorch/aten/src/ATen/native/hip/TriangularOps.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/UpSampleTrilinear3d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleTrilinear3d.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/ValidateCompressedIndicesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ValidateCompressedIndicesKernel.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cpp -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.cpp [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/modified_bessel_k0.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_k0.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/FunctionOfAMatrixUtilsKernel.cu -> /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/fused_adamw_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adamw_impl.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/laguerre_polynomial_l.cu -> /pytorch/aten/src/ATen/native/hip/laguerre_polynomial_l.hip [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/Distributions.cpp -> /pytorch/aten/src/ATen/native/hip/Distributions.cpp [ok] +#10 32.72 /pytorch/aten/src/ATen/native/cuda/TensorFactories.cu -> /pytorch/aten/src/ATen/native/hip/TensorFactories.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/UnaryLogKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryLogKernels.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/LogAddExpKernel.cu -> /pytorch/aten/src/ATen/native/hip/LogAddExpKernel.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/ReduceSumProdKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceSumProdKernel.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/NLLLoss2d.cu -> /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/vol2col.cuh -> /pytorch/aten/src/ATen/native/hip/vol2col.cuh [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/SoftMax.cu -> /pytorch/aten/src/ATen/native/hip/SoftMax.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/CompareEQKernel.cu -> /pytorch/aten/src/ATen/native/hip/CompareEQKernel.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/BinaryGeometricKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryGeometricKernels.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/BinaryRemainderKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryRemainderKernel.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/Resize.cpp -> /pytorch/aten/src/ATen/native/hip/Resize.cpp [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/MultinomialKernel.cu -> /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/ScatterGatherKernel.cu -> /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip [ok] +#10 32.73 /pytorch/aten/src/ATen/native/cuda/Sorting.cu -> /pytorch/aten/src/ATen/native/hip/Sorting.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAtanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAtanhKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAcoshKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAcoshKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/Bucketization.cu -> /pytorch/aten/src/ATen/native/hip/Bucketization.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_t.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_t.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/CumsumKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricCosKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricCosKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricTanKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricTanKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/fused_adamw_amsgrad_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adamw_amsgrad_impl.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/SortImpl.cu -> /pytorch/aten/src/ATen/native/hip/SortImpl.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/MemoryAccess.cuh -> /pytorch/aten/src/ATen/native/hip/MemoryAccess.cuh [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/SortStable.cu -> /pytorch/aten/src/ATen/native/hip/SortStable.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/Unique.cu -> /pytorch/aten/src/ATen/native/hip/Unique.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/ReduceArgMaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceArgMaxKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/ActivationMishKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationMishKernel.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/Resize.h -> /pytorch/aten/src/ATen/native/hip/Resize.h [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/Shape.cu -> /pytorch/aten/src/ATen/native/hip/Shape.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_t.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_t.hip [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh [ok] +#10 32.74 /pytorch/aten/src/ATen/native/cuda/ReduceNormKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceNormKernel.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/Sort.cu -> /pytorch/aten/src/ATen/native/hip/Sort.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest3d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest3d.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/MultiTensorApply.cuh -> /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/ActivationHardshrinkKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardshrinkKernel.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/ActivationSoftplusKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSoftplusKernel.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/UpSampleBicubic2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleBicubic2d.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/Sorting.h -> /pytorch/aten/src/ATen/native/hip/Sorting.h [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/TensorCompare.cpp -> /pytorch/aten/src/ATen/native/hip/TensorCompare.cpp [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/MaxUnpooling.cu -> /pytorch/aten/src/ATen/native/hip/MaxUnpooling.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/fused_adam_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adam_impl.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/LinearAlgebra.cu -> /pytorch/aten/src/ATen/native/hip/LinearAlgebra.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/ReduceMinValuesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMinValuesKernel.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/BinaryShiftOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryShiftOpsKernels.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/GcdLcmKernel.cu -> /pytorch/aten/src/ATen/native/hip/GcdLcmKernel.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/UnaryFractionKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryFractionKernels.hip [ok] +#10 32.75 /pytorch/aten/src/ATen/native/cuda/BinaryMulKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/LaunchUtils.h -> /pytorch/aten/src/ATen/native/hip/LaunchUtils.h [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/spherical_bessel_j0.cu -> /pytorch/aten/src/ATen/native/hip/spherical_bessel_j0.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/airy_ai.cu -> /pytorch/aten/src/ATen/native/hip/airy_ai.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/modified_bessel_k1.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_k1.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_w.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_w.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/Sort.h -> /pytorch/aten/src/ATen/native/hip/Sort.h [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/ReduceMaxValuesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMaxValuesKernel.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/DeviceSqrt.cuh -> /pytorch/aten/src/ATen/native/hip/DeviceSqrt.cuh [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/Sorting.cpp -> /pytorch/aten/src/ATen/native/hip/Sorting.cpp [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/Indexing.cu -> /pytorch/aten/src/ATen/native/hip/Indexing.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/TensorCompare.cu -> /pytorch/aten/src/ATen/native/hip/TensorCompare.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_w.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_w.hip [ok] +#10 32.76 /pytorch/aten/src/ATen/native/cuda/ActivationHardtanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardtanhKernel.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/ForeachReduceOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/Randperm.cuh -> /pytorch/aten/src/ATen/native/hip/Randperm.cuh [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/DepthwiseConv2d.cu -> /pytorch/aten/src/ATen/native/hip/DepthwiseConv2d.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/Nonzero.cu -> /pytorch/aten/src/ATen/native/hip/Nonzero.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/ActivationGeluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationGeluKernel.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/CUDALoops.cuh -> /pytorch/aten/src/ATen/native/hip/HIPLoops.cuh [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/ScanKernels.h -> /pytorch/aten/src/ATen/native/hip/ScanKernels.h [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/BinaryBitwiseOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryBitwiseOpsKernels.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/WeightNorm.cu -> /pytorch/aten/src/ATen/native/hip/WeightNorm.hip [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/LinearAlgebraStubs.cpp -> /pytorch/aten/src/ATen/native/hip/LinearAlgebraStubs.cpp [ok] +#10 32.77 /pytorch/aten/src/ATen/native/cuda/SegmentReduce.cu -> /pytorch/aten/src/ATen/native/hip/SegmentReduce.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/SpectralOps.cpp -> /pytorch/aten/src/ATen/native/hip/SpectralOps.cpp [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/FusedAdamKernel.cu -> /pytorch/aten/src/ATen/native/hip/FusedAdamKernel.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/SortingRadixSelect.cuh -> /pytorch/aten/src/ATen/native/hip/SortingRadixSelect.cuh [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/Reduce.cu -> /pytorch/aten/src/ATen/native/hip/Reduce.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cu -> /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/IGammaKernel.cu -> /pytorch/aten/src/ATen/native/hip/IGammaKernel.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/ReduceOps.h -> /pytorch/aten/src/ATen/native/hip/ReduceOps.h [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricTanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricTanhKernel.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/UnaryGammaKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGammaKernels.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/ScanKernels.cpp -> /pytorch/aten/src/ATen/native/hip/ScanKernels.cpp [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/ForeachTernaryOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/DistributionUniform.cu -> /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip [ok] +#10 32.78 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cu -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/Reduce.cuh -> /pytorch/aten/src/ATen/native/hip/Reduce.cuh [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/TensorTopK.h -> /pytorch/aten/src/ATen/native/hip/TensorTopK.h [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/BinaryInternal.h -> /pytorch/aten/src/ATen/native/hip/BinaryInternal.h [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/FractionalMaxPool3d.cu -> /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpList.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/bessel_j0.cu -> /pytorch/aten/src/ATen/native/hip/bessel_j0.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/CumprodKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/Copy.cu -> /pytorch/aten/src/ATen/native/hip/Copy.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling3d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveMaxPooling3d.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/ConvolutionMM2d.cu -> /pytorch/aten/src/ATen/native/hip/ConvolutionMM2d.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAtanKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAtanKernel.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/FusedAdamWKernel.cu -> /pytorch/aten/src/ATen/native/hip/FusedAdamWKernel.hip [ok] +#10 32.79 /pytorch/aten/src/ATen/native/cuda/ReduceArgMinKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceArgMinKernel.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cuh -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.cuh [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/Distributions.h -> /pytorch/aten/src/ATen/native/hip/Distributions.h [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/CompareKernels.cu -> /pytorch/aten/src/ATen/native/hip/CompareKernels.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/UpSampleLinear1d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleLinear1d.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose3d.cu -> /pytorch/aten/src/ATen/native/hip/NaiveConvolutionTranspose3d.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/SpectralOps.cu -> /pytorch/aten/src/ATen/native/hip/SpectralOps.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/SparseMM.cu -> /pytorch/aten/src/ATen/native/hip/SparseMM.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/BinaryMiscBackwardOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMiscBackwardOpsKernels.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/LogcumsumexpKernel.cu -> /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/AveragePool3d.cu -> /pytorch/aten/src/ATen/native/hip/AveragePool3d.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/ForeachPointwiseOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_v.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_v.hip [ok] +#10 32.80 /pytorch/aten/src/ATen/native/cuda/DistributionExponentialKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/UnarySignKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnarySignKernels.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_amsgrad_impl.cuh [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/Embedding.cu -> /pytorch/aten/src/ATen/native/hip/Embedding.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/Randperm.cu -> /pytorch/aten/src/ATen/native/hip/Randperm.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/StepKernel.cu -> /pytorch/aten/src/ATen/native/hip/StepKernel.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/DilatedMaxPool2d.cu -> /pytorch/aten/src/ATen/native/hip/DilatedMaxPool2d.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/AveragePool2d.cu -> /pytorch/aten/src/ATen/native/hip/AveragePool2d.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/TensorTopK.cu -> /pytorch/aten/src/ATen/native/hip/TensorTopK.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/Equal.cpp -> /pytorch/aten/src/ATen/native/hip/Equal.cpp [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/LossCTC.cu -> /pytorch/aten/src/ATen/native/hip/LossCTC.hip [ok] +#10 32.81 /pytorch/aten/src/ATen/native/cuda/ComplexKernel.cu -> /pytorch/aten/src/ATen/native/hip/ComplexKernel.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/Distributions.cu -> /pytorch/aten/src/ATen/native/hip/Distributions.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/block_reduce.cuh -> /pytorch/aten/src/ATen/native/hip/block_reduce.cuh [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/BinaryLogicalOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryLogicalOpsKernels.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/ScanUtils.cuh -> /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/ActivationHardswishKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardswishKernel.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/legendre_polynomial_p.cu -> /pytorch/aten/src/ATen/native/hip/legendre_polynomial_p.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/ActivationLeakyReluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationLeakyReluKernel.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/Loops.cuh -> /pytorch/aten/src/ATen/native/hip/Loops.cuh [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/TensorTransformations.cu -> /pytorch/aten/src/ATen/native/hip/TensorTransformations.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/UnfoldBackwardKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnfoldBackwardKernel.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/DistributionCauchyKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionCauchyKernel.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/hermite_polynomial_he.cu -> /pytorch/aten/src/ATen/native/hip/hermite_polynomial_he.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/fused_adam_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_impl.cuh [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/DistributionBernoulli.cu -> /pytorch/aten/src/ATen/native/hip/DistributionBernoulli.hip [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/IndexKernel.cpp -> /pytorch/aten/src/ATen/native/hip/IndexKernel.cpp [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/Sort.cpp -> /pytorch/aten/src/ATen/native/hip/Sort.cpp [ok] +#10 32.82 /pytorch/aten/src/ATen/native/cuda/DistributionGeometricKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionGeometricKernel.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/IndexKernel.cu -> /pytorch/aten/src/ATen/native/hip/IndexKernel.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/MiscUtils.h -> /pytorch/aten/src/ATen/native/hip/MiscUtils.h [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/Col2Im.cu -> /pytorch/aten/src/ATen/native/hip/Col2Im.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/SummaryOps.cu -> /pytorch/aten/src/ATen/native/hip/SummaryOps.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/bessel_j1.cu -> /pytorch/aten/src/ATen/native/hip/bessel_j1.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/Loss.cu -> /pytorch/aten/src/ATen/native/hip/Loss.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/SortUtils.cuh -> /pytorch/aten/src/ATen/native/hip/SortUtils.cuh [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/RreluWithNoise.cu -> /pytorch/aten/src/ATen/native/hip/RreluWithNoise.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_v.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_v.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/fused_adamw_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adamw_impl.cuh [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/ForeachFunctors.cuh -> /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/ActivationPreluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationPreluKernel.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/Pow.cuh -> /pytorch/aten/src/ATen/native/hip/Pow.cuh [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_u.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_u.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/bessel_y0.cu -> /pytorch/aten/src/ATen/native/hip/bessel_y0.hip [ok] +#10 32.83 /pytorch/aten/src/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> /pytorch/aten/src/ATen/native/hip/ForeachMinMaxFunctors.cuh [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/AbsKernel.cu -> /pytorch/aten/src/ATen/native/hip/AbsKernel.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adamw_amsgrad_impl.cuh [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/ActivationGluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationGluKernel.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/RenormKernel.cu -> /pytorch/aten/src/ATen/native/hip/RenormKernel.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/UnarySpecialOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnarySpecialOpsKernel.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/CUDAScalar.cu -> /pytorch/aten/src/ATen/native/hip/HIPScalar.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/ForeachUnaryOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachUnaryOp.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/CopysignKernel.cu -> /pytorch/aten/src/ATen/native/hip/CopysignKernel.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/ActivationHardsigmoidKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardsigmoidKernel.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/thread_constants.h -> /pytorch/aten/src/ATen/native/hip/thread_constants.h [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/EmbeddingBag.cu -> /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip [ok] +#10 32.84 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAsinKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAsinKernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/RNN.cu -> /pytorch/aten/src/ATen/native/hip/RNN.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest2d.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/layer_norm_kernel.cu -> /pytorch/aten/src/ATen/native/hip/layer_norm_kernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/ActivationSoftshrinkKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSoftshrinkKernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/fused_adam_amsgrad_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adam_amsgrad_impl.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/group_norm_kernel.cu -> /pytorch/aten/src/ATen/native/hip/group_norm_kernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricCoshKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricCoshKernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/ZetaKernel.cu -> /pytorch/aten/src/ATen/native/hip/ZetaKernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/Repeat.cu -> /pytorch/aten/src/ATen/native/hip/Repeat.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/MultiLabelMarginCriterion.cu -> /pytorch/aten/src/ATen/native/hip/MultiLabelMarginCriterion.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/UnaryComplexKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryComplexKernels.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/ReduceMomentKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMomentKernel.hip [ok] +#10 32.85 /pytorch/aten/src/ATen/native/cuda/GridSampler.cpp -> /pytorch/aten/src/ATen/native/hip/GridSampler.cpp [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/modified_bessel_i1.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_i1.hip [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/fused_adam_utils.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_utils.cuh [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/MultiMarginLoss.cu -> /pytorch/aten/src/ATen/native/hip/MultiMarginLoss.hip [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling2d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveMaxPooling2d.hip [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/ReflectionPad.cu -> /pytorch/aten/src/ATen/native/hip/ReflectionPad.hip [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/Activation.cpp -> /pytorch/aten/src/ATen/native/hip/Activation.cpp [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/Blas.cpp -> /pytorch/aten/src/ATen/native/hip/Blas.cpp [ok] +#10 32.86 /pytorch/aten/src/ATen/native/cuda/CUDAJitLoops.cuh -> /pytorch/aten/src/ATen/native/hip/HIPJitLoops.cuh [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/DepthwiseConv3d.cu -> /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/DistributionTemplates.h -> /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/bessel_y1.cu -> /pytorch/aten/src/ATen/native/hip/bessel_y1.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpScalar.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_u.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_u.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricSinKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricSinKernel.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/DistributionNormal.cu -> /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/PointwiseOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/PointwiseOpsKernel.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAsinhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAsinhKernel.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/hermite_polynomial_h.cu -> /pytorch/aten/src/ATen/native/hip/hermite_polynomial_h.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/ReduceAMinMaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceAMinMaxKernel.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/ActivationEluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationEluKernel.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling3d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling3d.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/LegacyThrustHelpers.cu -> /pytorch/aten/src/ATen/native/hip/LegacyThrustHelpers.hip [ok] +#10 32.87 /pytorch/aten/src/ATen/native/cuda/CuFFTPlanCache.h -> /pytorch/aten/src/ATen/native/hip/CuFFTPlanCache.h [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose2d.cu -> /pytorch/aten/src/ATen/native/hip/NaiveConvolutionTranspose2d.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/ReduceOps.cpp -> /pytorch/aten/src/ATen/native/hip/ReduceOps.cpp [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/NaiveDilatedConvolution.cu -> /pytorch/aten/src/ATen/native/hip/NaiveDilatedConvolution.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/BinaryDivTrueKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/Dropout.cu -> /pytorch/aten/src/ATen/native/hip/Dropout.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/SortStable.h -> /pytorch/aten/src/ATen/native/hip/SortStable.h [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricSinhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricSinhKernel.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/scaled_modified_bessel_k1.cu -> /pytorch/aten/src/ATen/native/hip/scaled_modified_bessel_k1.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/DistanceKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistanceKernel.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/UpSample.cuh -> /pytorch/aten/src/ATen/native/hip/UpSample.cuh [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/Lerp.cu -> /pytorch/aten/src/ATen/native/hip/Lerp.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/IndexKernel.h -> /pytorch/aten/src/ATen/native/hip/IndexKernel.h [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/DistributionLogNormalKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionLogNormalKernel.hip [ok] +#10 32.88 /pytorch/aten/src/ATen/native/cuda/FillKernel.cu -> /pytorch/aten/src/ATen/native/hip/FillKernel.hip [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/CrossKernel.cu -> /pytorch/aten/src/ATen/native/hip/CrossKernel.hip [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/RecordStream.cu -> /pytorch/aten/src/ATen/native/hip/RecordStream.hip [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/JitLoops.cuh -> /pytorch/aten/src/ATen/native/hip/JitLoops.cuh [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/im2col.cuh -> /pytorch/aten/src/ATen/native/hip/im2col.cuh [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/CompositeRandomAccessor.h -> /pytorch/aten/src/ATen/native/hip/CompositeRandomAccessor.h [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/SparseBinaryOpIntersectionKernel.cu -> /pytorch/aten/src/ATen/native/hip/SparseBinaryOpIntersectionKernel.hip [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/Normalization.cuh -> /pytorch/aten/src/ATen/native/hip/Normalization.cuh [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/BinaryDivTruncKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivTruncKernel.hip [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/PersistentSoftmax.cuh -> /pytorch/aten/src/ATen/native/hip/PersistentSoftmax.cuh [ok] +#10 32.89 /pytorch/aten/src/ATen/native/cuda/linalg/MagmaUtils.h -> /pytorch/aten/src/ATen/native/hip/linalg/MagmaUtils.h [ok] +#10 32.90 /pytorch/aten/src/ATen/native/cuda/linalg/CUDASolver.h -> /pytorch/aten/src/ATen/native/hip/linalg/HIPSolver.h [ok] +#10 32.90 /pytorch/aten/src/ATen/native/cuda/linalg/CusolverDnHandlePool.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/CusolverDnHandlePool.cpp [ok] +#10 32.90 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebraLib.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebraLib.cpp [ok] +#10 32.91 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebra.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebra.cpp [ok] +#10 32.91 /pytorch/aten/src/ATen/native/cuda/linalg/CUDASolver.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/HIPSolver.cpp [ok] +#10 32.91 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebraLib.h -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebraLib.h [ok] +#10 32.91 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorMatmul.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorMatmul.hip [ok] +#10 32.91 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorTransformerFunctions.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorTransformerFunctions.hip [ok] +#10 32.92 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorTransformerFunctions.cpp -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorTransformerFunctions.cpp [ok] +#10 32.92 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorBinaryOps.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorBinaryOps.hip [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensorMath.hip [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCsrTensorMath.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseCsrTensorMath.hip [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDAApplyUtils.cuh -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPApplyUtils.cuh [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SoftMax.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SoftMax.hip [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPBlas.cpp [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPBlas.h [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasImpl.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasImpl.h [ok] +#10 32.92 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlas.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlas.cpp [ok] +#10 32.93 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasLegacy.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasLegacy.h [ok] +#10 32.93 /pytorch/aten/src/ATen/native/sparse/cuda/SparseMatMul.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseMatMul.hip [ok] +#10 32.93 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasImpl.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasImpl.cpp [ok] +#10 32.93 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cuh -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensorMath.cuh [ok] +#10 32.93 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensor.hip [ok] +#10 32.93 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasLegacy.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasLegacy.cpp [ok] +#10 32.93 /pytorch/aten/src/ATen/native/transformers/cuda/attention_backward.cu -> /pytorch/aten/src/ATen/native/transformers/hip/attention_backward.hip [ok] +#10 32.93 /pytorch/aten/src/ATen/native/transformers/cuda/sdp_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/sdp_utils.h [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/attention.cu -> /pytorch/aten/src/ATen/native/transformers/hip/attention.hip [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/mask.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/mask.h [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/kernel_traits.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/kernel_traits.h [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim64.hip [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_kernel.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_kernel.h [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/utils.h [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim32.hip [ok] +#10 32.94 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/gmem_tile.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/gmem_tile.h [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/philox.cuh -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/philox.cuh [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha.h [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_launch_template.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_launch_template.h [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fprop_kernel_1xN.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fprop_kernel_1xN.h [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim128.hip [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_api.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_api.h [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/static_switch.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/static_switch.h [ok] +#10 32.95 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/softmax.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/softmax.h [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/smem_tile.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/smem_tile.h [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim128.hip [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_dgrad_kernel_1xN_loop.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_dgrad_kernel_1xN_loop.h [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_launch_template.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_launch_template.h [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim32.hip [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/gemm.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/gemm.h [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim64.hip [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_utils.h [ok] +#10 32.96 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_api.cpp -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_api.cpp [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/mma_from_smem.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/mma_from_smem.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernel_forward.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/debug_utils.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_thread_apply_logsumexp.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_thread_apply_logsumexp.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_pipelined.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_pipelined.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/mma_simt_tile_iterator_residual.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/mma_simt_tile_iterator_residual.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/find_default_mma.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/find_default_mma.h [ok] +#10 32.97 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm_kernel_utils.h [ok] +#10 32.98 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernel_backward.h [ok] +#10 32.98 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_rescale_output.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_rescale_output.h [ok] +#10 32.98 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/attention_scaling_coefs_updater.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/attention_scaling_coefs_updater.h [ok] +#10 32.98 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h [ok] +#10 32.98 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/make_residual_last.h [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned_k128.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_k64.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f32.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned_k64.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f32_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f32_aligned.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned_k128.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f16.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned_k128.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f16_aligned.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_k128.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned_k64.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_k128.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_k64.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_k128.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_bf16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_bf16.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_bf16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_bf16_aligned.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned_k64.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_k64.hip [ok] +#10 32.99 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_pipelined.h [ok] +#10 33.00 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_base.h [ok] +#10 33.00 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_multistage.h [ok] +#10 33.00 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma.h [ok] +#10 33.00 /pytorch/aten/src/ATen/native/cudnn/RNN.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/RNN.cpp [ok] +#10 33.00 /pytorch/aten/src/ATen/native/cudnn/Macros.h -> /pytorch/aten/src/ATen/native/cudnn/hip/Macros.h [ok] +#10 33.00 /pytorch/aten/src/ATen/native/cudnn/BatchNorm.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/BatchNorm.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/Conv_v7.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/Conv_v7.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/AffineGridGenerator.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/RNNUtils.h -> /pytorch/aten/src/ATen/native/cudnn/hip/RNNUtils.h [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/ConvShared.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvShared.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/ConvShared.h -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvShared.h [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/Conv_v8.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/Conv_v8.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/ConvPlaceholders.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvPlaceholders.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/GridSampler.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/GridSampler.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/native/cudnn/LossCTC.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/LossCTC.cpp [ok] +#10 33.01 /pytorch/aten/src/ATen/cuda/CUDAGraphsUtils.cuh -> /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh [ok] +#10 33.01 /pytorch/aten/src/ATen/cuda/llvm_basic.cpp -> /pytorch/aten/src/ATen/hip/llvm_basic.cpp [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/jiterator.cu -> /pytorch/aten/src/ATen/hip/jiterator.hip [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/ThrustAllocator.h -> /pytorch/aten/src/ATen/hip/ThrustAllocator.h [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CUDADataType.h -> /pytorch/aten/src/ATen/hip/HIPDataType.h [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/Atomic.cuh -> /pytorch/aten/src/ATen/hip/Atomic.cuh [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CUDAUtils.h -> /pytorch/aten/src/ATen/hip/HIPUtils.h [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/jiterator_impl.h -> /pytorch/aten/src/ATen/hip/jiterator_impl.h [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CachingHostAllocator.cpp -> /pytorch/aten/src/ATen/hip/CachingHostAllocator.cpp [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CUDASparseBlas.h -> /pytorch/aten/src/ATen/hip/HIPSparseBlas.h [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CuSparseHandlePool.cpp -> /pytorch/aten/src/ATen/hip/CuSparseHandlePool.cpp [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CUDAContext.h -> /pytorch/aten/src/ATen/hip/HIPContext.h [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/DeviceUtils.cuh -> /pytorch/aten/src/ATen/hip/DeviceUtils.cuh [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/CUDASparseBlas.cpp -> /pytorch/aten/src/ATen/hip/HIPSparseBlas.cpp [ok] +#10 33.02 /pytorch/aten/src/ATen/cuda/llvm_complex.cpp -> /pytorch/aten/src/ATen/hip/llvm_complex.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp -> /pytorch/aten/src/ATen/hip/CublasHandlePool.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.cpp -> /pytorch/aten/src/ATen/hip/PinnedMemoryAllocator.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/Sleep.h -> /pytorch/aten/src/ATen/hip/Sleep.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/AsmUtils.cuh -> /pytorch/aten/src/ATen/hip/AsmUtils.cuh [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CUDABlas.h -> /pytorch/aten/src/ATen/hip/HIPBlas.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/cub-RadixSortKeys.cu -> /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/cub-RadixSortPairs.cu -> /pytorch/aten/src/ATen/hip/cub-RadixSortPairs.hip [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/llvm_jit_strings.h -> /pytorch/aten/src/ATen/hip/llvm_jit_strings.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CUDAGraph.cpp -> /pytorch/aten/src/ATen/hip/HIPGraph.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/EmptyTensor.cpp -> /pytorch/aten/src/ATen/hip/EmptyTensor.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CUDATensorMethods.cuh -> /pytorch/aten/src/ATen/hip/HIPTensorMethods.cuh [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/ApplyGridUtils.cuh -> /pytorch/aten/src/ATen/hip/ApplyGridUtils.cuh [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CachingHostAllocator.h -> /pytorch/aten/src/ATen/hip/CachingHostAllocator.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/NumericLimits.cuh -> /pytorch/aten/src/ATen/hip/NumericLimits.cuh [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CUDAGraph.h -> /pytorch/aten/src/ATen/hip/HIPGraph.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CUDAContext.cpp -> /pytorch/aten/src/ATen/hip/HIPContext.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/ScanUtils.cuh -> /pytorch/aten/src/ATen/hip/ScanUtils.cuh [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/cub.h -> /pytorch/aten/src/ATen/hip/cub.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/cub.cu -> /pytorch/aten/src/ATen/hip/cub.hip [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/Sleep.cu -> /pytorch/aten/src/ATen/hip/Sleep.hip [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/PeerToPeerAccess.cpp -> /pytorch/aten/src/ATen/hip/PeerToPeerAccess.cpp [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/PeerToPeerAccess.h -> /pytorch/aten/src/ATen/hip/PeerToPeerAccess.h [ok] +#10 33.03 /pytorch/aten/src/ATen/cuda/CUDASparse.h -> /pytorch/aten/src/ATen/hip/HIPSparse.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDABlas.cpp -> /pytorch/aten/src/ATen/hip/HIPBlas.cpp [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/ATenCUDAGeneral.h -> /pytorch/aten/src/ATen/hip/ATenHIPGeneral.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/cub_definitions.cuh -> /pytorch/aten/src/ATen/hip/cub_definitions.cuh [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDAGeneratorImpl.cpp -> /pytorch/aten/src/ATen/hip/HIPGeneratorImpl.cpp [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDAGeneratorImpl.h -> /pytorch/aten/src/ATen/hip/HIPGeneratorImpl.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/EmptyTensor.h -> /pytorch/aten/src/ATen/hip/EmptyTensor.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/Exceptions.cpp -> /pytorch/aten/src/ATen/hip/Exceptions.cpp [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/Exceptions.h -> /pytorch/aten/src/ATen/hip/Exceptions.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.h -> /pytorch/aten/src/ATen/hip/PinnedMemoryAllocator.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDASparseDescriptors.cpp -> /pytorch/aten/src/ATen/hip/HIPSparseDescriptors.cpp [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDASparseDescriptors.h -> /pytorch/aten/src/ATen/hip/HIPSparseDescriptors.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDAEvent.h -> /pytorch/aten/src/ATen/hip/HIPEvent.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/jiterator.h -> /pytorch/aten/src/ATen/hip/jiterator.h [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/cub.cuh -> /pytorch/aten/src/ATen/hip/cub.cuh [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDAConfig.h.in -> /pytorch/aten/src/ATen/hip/HIPConfig.h.in [ok] +#10 33.04 /pytorch/aten/src/ATen/cuda/CUDADevice.h -> /pytorch/aten/src/ATen/hip/HIPDevice.h [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/CUDAApplyUtils.cuh -> /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/OffsetCalculator.cuh -> /pytorch/aten/src/ATen/hip/detail/OffsetCalculator.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/CUDAHooks.h -> /pytorch/aten/src/ATen/hip/detail/HIPHooks.h [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/LazyNVRTC.cpp -> /pytorch/aten/src/ATen/hip/detail/LazyNVRTC.cpp [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/TensorInfo.cuh -> /pytorch/aten/src/ATen/hip/detail/TensorInfo.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/DeviceThreadHandles.h -> /pytorch/aten/src/ATen/hip/detail/DeviceThreadHandles.h [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/IndexUtils.cu -> /pytorch/aten/src/ATen/hip/detail/IndexUtils.hip [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/CUDAHooks.cpp -> /pytorch/aten/src/ATen/hip/detail/HIPHooks.cpp [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> /pytorch/aten/src/ATen/hip/detail/PhiloxCudaStateRaw.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/IndexUtils.cuh -> /pytorch/aten/src/ATen/hip/detail/IndexUtils.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/IntegerDivider.cuh -> /pytorch/aten/src/ATen/hip/detail/IntegerDivider.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/KernelUtils.h -> /pytorch/aten/src/ATen/hip/detail/KernelUtils.h [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/LazyNVRTC.h -> /pytorch/aten/src/ATen/hip/detail/LazyNVRTC.h [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/detail/UnpackRaw.cuh -> /pytorch/aten/src/ATen/hip/detail/UnpackRaw.cuh [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/nvrtc_stub/ATenNVRTC.h -> /pytorch/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h [ok] +#10 33.05 /pytorch/aten/src/ATen/cuda/nvrtc_stub/ATenNVRTC.cpp -> /pytorch/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp [ok] +#10 33.05 /pytorch/aten/src/ATen/test/cuda_apply_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_apply_test.cpp [ok] +#10 33.05 /pytorch/aten/src/ATen/test/cpu_caching_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_caching_allocator_test.cpp [ok] +#10 33.05 /pytorch/aten/src/ATen/test/cuda_half_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_half_test.hip [ok] +#10 33.05 /pytorch/aten/src/ATen/test/operators_test.cpp -> /pytorch/aten/src/ATen/test/hip/operators_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_complex_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_complex_test.hip [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_device_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_device_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/Dict_test.cpp -> /pytorch/aten/src/ATen/test/hip/Dict_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/scalar_test.cpp -> /pytorch/aten/src/ATen/test/hip/scalar_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_generator_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_generator_test.hip [ok] +#10 33.06 /pytorch/aten/src/ATen/test/type_test.cpp -> /pytorch/aten/src/ATen/test/hip/type_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_atomic_ops_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_atomic_ops_test.hip [ok] +#10 33.06 /pytorch/aten/src/ATen/test/dlconvertor_test.cpp -> /pytorch/aten/src/ATen/test/hip/dlconvertor_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/test_thread_pool_guard.cpp -> /pytorch/aten/src/ATen/test/hip/test_thread_pool_guard.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/test_assert.h -> /pytorch/aten/src/ATen/test/hip/test_assert.h [ok] +#10 33.06 /pytorch/aten/src/ATen/test/half_test.cpp -> /pytorch/aten/src/ATen/test/hip/half_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/extension_backend_test.cpp -> /pytorch/aten/src/ATen/test/hip/extension_backend_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_dlconvertor_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_dlconvertor_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/verify_api_visibility.cpp -> /pytorch/aten/src/ATen/test/hip/verify_api_visibility.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/tensor_interop_test.cpp -> /pytorch/aten/src/ATen/test/hip/tensor_interop_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_tensor_interop_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_tensor_interop_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/variant_test.cpp -> /pytorch/aten/src/ATen/test/hip/variant_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/memory_format_test.cpp -> /pytorch/aten/src/ATen/test/hip/memory_format_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_cudnn_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_cudnn_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/cuda_reportMemoryUsage_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_reportMemoryUsage_test.cpp [ok] +#10 33.06 /pytorch/aten/src/ATen/test/operator_name_test.cpp -> /pytorch/aten/src/ATen/test/hip/operator_name_test.cpp [ok] +#10 33.07 /pytorch/aten/src/ATen/test/vulkan_quantized_api_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_quantized_api_test.cpp [ok] +#10 33.07 /pytorch/aten/src/ATen/test/vitals.cpp -> /pytorch/aten/src/ATen/test/hip/vitals.cpp [ok] +#10 33.07 /pytorch/aten/src/ATen/test/xla_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/xla_tensor_test.cpp [ok] +#10 33.07 /pytorch/aten/src/ATen/test/stride_properties_test.cpp -> /pytorch/aten/src/ATen/test/hip/stride_properties_test.cpp [ok] +#10 33.07 /pytorch/aten/src/ATen/test/rng_test.h -> /pytorch/aten/src/ATen/test/hip/rng_test.h [ok] +#10 33.07 /pytorch/aten/src/ATen/test/memory_overlapping_test.cpp -> /pytorch/aten/src/ATen/test/hip/memory_overlapping_test.cpp [ok] +#10 33.07 /pytorch/aten/src/ATen/test/mps_test_print.cpp -> /pytorch/aten/src/ATen/test/hip/mps_test_print.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/legacy_vmap_test.cpp -> /pytorch/aten/src/ATen/test/hip/legacy_vmap_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/reduce_ops_test.cpp -> /pytorch/aten/src/ATen/test/hip/reduce_ops_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/wrapdim_test.cpp -> /pytorch/aten/src/ATen/test/hip/wrapdim_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/reportMemoryUsage_test.cpp -> /pytorch/aten/src/ATen/test/hip/reportMemoryUsage_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/reportMemoryUsage.h -> /pytorch/aten/src/ATen/test/hip/reportMemoryUsage.h [ok] +#10 33.08 /pytorch/aten/src/ATen/test/cuda_caching_host_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_caching_host_allocator_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/pow_test.cpp -> /pytorch/aten/src/ATen/test/hip/pow_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/cuda_cub_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_cub_test.hip [ok] +#10 33.08 /pytorch/aten/src/ATen/test/packedtensoraccessor_test.cpp -> /pytorch/aten/src/ATen/test/hip/packedtensoraccessor_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/quantized_test.cpp -> /pytorch/aten/src/ATen/test/hip/quantized_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/weakref_test.cpp -> /pytorch/aten/src/ATen/test/hip/weakref_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/Dimname_test.cpp -> /pytorch/aten/src/ATen/test/hip/Dimname_test.cpp [ok] +#10 33.08 /pytorch/aten/src/ATen/test/apply_utils_test.cpp -> /pytorch/aten/src/ATen/test/hip/apply_utils_test.cpp [ok] +#10 33.09 /pytorch/aten/src/ATen/test/vulkan_api_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_api_test.cpp [ok] +#10 33.09 /pytorch/aten/src/ATen/test/cuda_complex_math_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_complex_math_test.hip [ok] +#10 33.10 /pytorch/aten/src/ATen/test/math_kernel_test.cpp -> /pytorch/aten/src/ATen/test/hip/math_kernel_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/NamedTensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/NamedTensor_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/atest.cpp -> /pytorch/aten/src/ATen/test/hip/atest.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/cpu_profiling_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_profiling_allocator_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/broadcast_test.cpp -> /pytorch/aten/src/ATen/test/hip/broadcast_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/type_ptr_test.cpp -> /pytorch/aten/src/ATen/test/hip/type_ptr_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/vulkan_perf_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_perf_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/tensor_iterator_test.cpp -> /pytorch/aten/src/ATen/test/hip/tensor_iterator_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/cuda_stream_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_stream_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/cuda_vectorized_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_vectorized_test.hip [ok] +#10 33.10 /pytorch/aten/src/ATen/test/xnnpack_test.cpp -> /pytorch/aten/src/ATen/test/hip/xnnpack_test.cpp [ok] +#10 33.10 /pytorch/aten/src/ATen/test/dispatch_key_set_test.cpp -> /pytorch/aten/src/ATen/test/hip/dispatch_key_set_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/native_test.cpp -> /pytorch/aten/src/ATen/test/hip/native_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/thread_init_test.cpp -> /pytorch/aten/src/ATen/test/hip/thread_init_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/test_parallel.cpp -> /pytorch/aten/src/ATen/test/hip/test_parallel.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/cpu_generator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_generator_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/cuda_optional_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_optional_test.hip [ok] +#10 33.11 /pytorch/aten/src/ATen/test/scalar_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/scalar_tensor_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/mobile_memory_cleanup.cpp -> /pytorch/aten/src/ATen/test/hip/mobile_memory_cleanup.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/undefined_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/undefined_tensor_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/cpu_rng_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_rng_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/lazy_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/lazy_tensor_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/ExclusivelyOwned_test.cpp -> /pytorch/aten/src/ATen/test/hip/ExclusivelyOwned_test.cpp [ok] +#10 33.11 /pytorch/aten/src/ATen/test/vec_test_all_types.h -> /pytorch/aten/src/ATen/test/hip/vec_test_all_types.h [ok] +#10 33.11 /pytorch/aten/src/ATen/test/MaybeOwned_test.cpp -> /pytorch/aten/src/ATen/test/hip/MaybeOwned_test.cpp [ok] +#10 33.12 /pytorch/aten/src/ATen/test/vec_test_all_types.cpp -> /pytorch/aten/src/ATen/test/hip/vec_test_all_types.cpp [ok] +#10 33.12 /pytorch/aten/src/ATen/test/cuda_distributions_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_distributions_test.hip [ok] +#10 33.12 /pytorch/aten/src/ATen/test/ivalue_test.cpp -> /pytorch/aten/src/ATen/test/hip/ivalue_test.cpp [ok] +#10 33.12 /pytorch/aten/src/ATen/test/cuda_integer_divider_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_integer_divider_test.hip [ok] +#10 33.12 /pytorch/aten/src/ATen/test/basic.cpp -> /pytorch/aten/src/ATen/test/hip/basic.cpp [ok] +#10 33.12 /pytorch/aten/src/ATen/test/mps_test_allocator.cpp -> /pytorch/aten/src/ATen/test/hip/mps_test_allocator.cpp [ok] +#10 33.12 /pytorch/aten/src/ATen/test/cuda_packedtensoraccessor_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_packedtensoraccessor_test.hip [ok] +#10 33.12 /pytorch/aten/src/ATen/test/test_install/main.cpp -> /pytorch/aten/src/ATen/test/test_install/hip/main.cpp [ok] +#10 33.13 /pytorch/aten/src/THC/THCAtomics.cuh -> /pytorch/aten/src/THH/THHAtomics.cuh [ok] +#10 33.13 /pytorch/aten/src/THC/THCDeviceUtils.cuh -> /pytorch/aten/src/THH/THHDeviceUtils.cuh [ok] +#10 33.13 /pytorch/aten/src/THC/CMakeLists.txt -> /pytorch/aten/src/THH/CMakeLists.txt [ok] +#10 33.13 /pytorch/binaries/print_core_object_sizes_gpu.cc -> /pytorch/binaries/hip/print_core_object_sizes_gpu.cc [ok] +#10 33.13 /pytorch/binaries/core_overhead_benchmark_gpu.cc -> /pytorch/binaries/hip/core_overhead_benchmark_gpu.cc [ok] +#10 33.13 /pytorch/binaries/inspect_gpu.cc -> /pytorch/binaries/hip/inspect_gpu.cc [ok] +#10 33.13 /pytorch/torch/custom_class_detail.h -> /pytorch/torch/custom_class_detail.h [skipped, already hipified] +#10 33.13 /pytorch/torch/library.h -> /pytorch/torch/library.h [skipped, already hipified] +#10 33.13 /pytorch/torch/extension.h -> /pytorch/torch/extension.h [skipped, already hipified] +#10 33.13 /pytorch/torch/script.h -> /pytorch/torch/script.h [skipped, already hipified] +#10 33.13 /pytorch/torch/custom_class.h -> /pytorch/torch/custom_class.h [skipped, already hipified] +#10 33.13 /pytorch/torch/abi-check.cpp -> /pytorch/torch/abi-check.cpp [skipped, already hipified] +#10 33.13 /pytorch/torch/csrc/QScheme.h -> /pytorch/torch/csrc/QScheme.h [skipped, already hipified] +#10 33.13 /pytorch/torch/csrc/DataLoader.h -> /pytorch/torch/csrc/DataLoader.h [skipped, already hipified] +#10 33.13 /pytorch/torch/csrc/Layout.h -> /pytorch/torch/csrc/Layout.h [skipped, already hipified] +#10 33.13 /pytorch/torch/csrc/utils.h -> /pytorch/torch/csrc/utils.h [ok] +#10 33.13 /pytorch/torch/csrc/Stream.cpp -> /pytorch/torch/csrc/Stream.cpp [skipped, already hipified] +#10 33.13 /pytorch/torch/csrc/python_headers.h -> /pytorch/torch/csrc/python_headers.h [skipped, already hipified] +#10 33.13 /pytorch/torch/csrc/CudaIPCTypes.cpp -> /pytorch/torch/csrc/CudaIPCTypes.cpp [ok] +#10 33.13 /pytorch/torch/csrc/Size.h -> /pytorch/torch/csrc/Size.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/TypeInfo.cpp -> /pytorch/torch/csrc/TypeInfo.cpp [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/python_dimname.cpp -> /pytorch/torch/csrc/python_dimname.cpp [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/Export.h -> /pytorch/torch/csrc/Export.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/serialization.h -> /pytorch/torch/csrc/serialization.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/copy_utils.h -> /pytorch/torch/csrc/copy_utils.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/empty.c -> /pytorch/torch/csrc/empty.c [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/Device.h -> /pytorch/torch/csrc/Device.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/Generator.h -> /pytorch/torch/csrc/Generator.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/utils.cpp -> /pytorch/torch/csrc/utils.cpp [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/StorageMethods.cpp -> /pytorch/torch/csrc/StorageMethods.cpp [ok] +#10 33.14 /pytorch/torch/csrc/MemoryFormat.h -> /pytorch/torch/csrc/MemoryFormat.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/itt.cpp -> /pytorch/torch/csrc/itt.cpp [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/CudaIPCTypes.h -> /pytorch/torch/csrc/CudaIPCTypes.h [ok] +#10 33.14 /pytorch/torch/csrc/StorageMethods.h -> /pytorch/torch/csrc/StorageMethods.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/itt_wrapper.h -> /pytorch/torch/csrc/itt_wrapper.h [skipped, already hipified] +#10 33.14 /pytorch/torch/csrc/PyInterpreter.cpp -> /pytorch/torch/csrc/PyInterpreter.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Module.cpp -> /pytorch/torch/csrc/Module.cpp [ok] +#10 33.15 /pytorch/torch/csrc/TypeInfo.h -> /pytorch/torch/csrc/TypeInfo.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/MemoryFormat.cpp -> /pytorch/torch/csrc/MemoryFormat.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/THP.h -> /pytorch/torch/csrc/THP.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/PyInterpreter.h -> /pytorch/torch/csrc/PyInterpreter.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Storage.h -> /pytorch/torch/csrc/Storage.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Stream.h -> /pytorch/torch/csrc/Stream.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/PythonTypes.h -> /pytorch/torch/csrc/PythonTypes.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/StorageSharing.h -> /pytorch/torch/csrc/StorageSharing.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/stub.c -> /pytorch/torch/csrc/stub.c [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/DynamicTypes.cpp -> /pytorch/torch/csrc/DynamicTypes.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/DynamicTypes.h -> /pytorch/torch/csrc/DynamicTypes.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/THConcat.h -> /pytorch/torch/csrc/THConcat.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Size.cpp -> /pytorch/torch/csrc/Size.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Types.h -> /pytorch/torch/csrc/Types.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/StorageSharing.cpp -> /pytorch/torch/csrc/StorageSharing.cpp [ok] +#10 33.15 /pytorch/torch/csrc/Layout.cpp -> /pytorch/torch/csrc/Layout.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Exceptions.cpp -> /pytorch/torch/csrc/Exceptions.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Exceptions.h -> /pytorch/torch/csrc/Exceptions.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/stub_with_flatbuffer.c -> /pytorch/torch/csrc/stub_with_flatbuffer.c [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Device.cpp -> /pytorch/torch/csrc/Device.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/itt_wrapper.cpp -> /pytorch/torch/csrc/itt_wrapper.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/serialization.cpp -> /pytorch/torch/csrc/serialization.cpp [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Dtype.h -> /pytorch/torch/csrc/Dtype.h [skipped, already hipified] +#10 33.15 /pytorch/torch/csrc/Module.h -> /pytorch/torch/csrc/Module.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/DataLoader.cpp -> /pytorch/torch/csrc/DataLoader.cpp [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/init_flatbuffer_module.cpp -> /pytorch/torch/csrc/init_flatbuffer_module.cpp [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/Dtype.cpp -> /pytorch/torch/csrc/Dtype.cpp [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/QScheme.cpp -> /pytorch/torch/csrc/QScheme.cpp [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/python_dimname.h -> /pytorch/torch/csrc/python_dimname.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/Storage.cpp -> /pytorch/torch/csrc/Storage.cpp [ok] +#10 33.16 /pytorch/torch/csrc/Generator.cpp -> /pytorch/torch/csrc/Generator.cpp [ok] +#10 33.16 /pytorch/torch/csrc/onnx/init.h -> /pytorch/torch/csrc/onnx/init.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/onnx/onnx.h -> /pytorch/torch/csrc/onnx/onnx.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/onnx/init.cpp -> /pytorch/torch/csrc/onnx/init.cpp [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/onnx/diagnostics/diagnostics.h -> /pytorch/torch/csrc/onnx/diagnostics/diagnostics.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/onnx/diagnostics/generated/rules.h -> /pytorch/torch/csrc/onnx/diagnostics/generated/rules.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/multiprocessing/init.h -> /pytorch/torch/csrc/multiprocessing/init.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/multiprocessing/init.cpp -> /pytorch/torch/csrc/multiprocessing/init.cpp [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/thread_pool.h -> /pytorch/torch/csrc/lazy/core/thread_pool.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/ir_metadata.h -> /pytorch/torch/csrc/lazy/core/ir_metadata.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/trie.h -> /pytorch/torch/csrc/lazy/core/trie.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/helpers.h -> /pytorch/torch/csrc/lazy/core/helpers.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/ir_dump_util.h -> /pytorch/torch/csrc/lazy/core/ir_dump_util.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/tensor.h -> /pytorch/torch/csrc/lazy/core/tensor.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/metrics.h -> /pytorch/torch/csrc/lazy/core/metrics.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/config.h -> /pytorch/torch/csrc/lazy/core/config.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/ir_util.h -> /pytorch/torch/csrc/lazy/core/ir_util.h [skipped, already hipified] +#10 33.16 /pytorch/torch/csrc/lazy/core/unique.h -> /pytorch/torch/csrc/lazy/core/unique.h [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/shape_inference.cpp -> /pytorch/torch/csrc/lazy/core/shape_inference.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/ir.h -> /pytorch/torch/csrc/lazy/core/ir.h [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/util.h -> /pytorch/torch/csrc/lazy/core/util.h [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/shape.cpp -> /pytorch/torch/csrc/lazy/core/shape.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/permutation_util.h -> /pytorch/torch/csrc/lazy/core/permutation_util.h [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/permutation_util.cpp -> /pytorch/torch/csrc/lazy/core/permutation_util.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/lazy_graph_executor.cpp -> /pytorch/torch/csrc/lazy/core/lazy_graph_executor.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/tensor_util.cpp -> /pytorch/torch/csrc/lazy/core/tensor_util.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/tensor.cpp -> /pytorch/torch/csrc/lazy/core/tensor.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/tensor_impl.cpp -> /pytorch/torch/csrc/lazy/core/tensor_impl.cpp [skipped, already hipified] +#10 33.17 /pytorch/torch/csrc/lazy/core/multi_wait.cpp -> /pytorch/torch/csrc/lazy/core/multi_wait.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/hash.h -> /pytorch/torch/csrc/lazy/core/hash.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/shape_inference.h -> /pytorch/torch/csrc/lazy/core/shape_inference.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/multi_wait.h -> /pytorch/torch/csrc/lazy/core/multi_wait.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/tensor_impl.h -> /pytorch/torch/csrc/lazy/core/tensor_impl.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/metrics.cpp -> /pytorch/torch/csrc/lazy/core/metrics.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/helpers.cpp -> /pytorch/torch/csrc/lazy/core/helpers.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/trie.cpp -> /pytorch/torch/csrc/lazy/core/trie.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/debug_util.h -> /pytorch/torch/csrc/lazy/core/debug_util.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/config.cpp -> /pytorch/torch/csrc/lazy/core/config.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/tensor_util.h -> /pytorch/torch/csrc/lazy/core/tensor_util.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/shape.h -> /pytorch/torch/csrc/lazy/core/shape.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/debug_util.cpp -> /pytorch/torch/csrc/lazy/core/debug_util.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/ir_builder.h -> /pytorch/torch/csrc/lazy/core/ir_builder.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/ir.cpp -> /pytorch/torch/csrc/lazy/core/ir.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/cache.h -> /pytorch/torch/csrc/lazy/core/cache.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/ir_dump_util.cpp -> /pytorch/torch/csrc/lazy/core/ir_dump_util.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/thread_pool.cpp -> /pytorch/torch/csrc/lazy/core/thread_pool.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/ir_util.cpp -> /pytorch/torch/csrc/lazy/core/ir_util.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/hash.cpp -> /pytorch/torch/csrc/lazy/core/hash.cpp [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/lazy_graph_executor.h -> /pytorch/torch/csrc/lazy/core/lazy_graph_executor.h [skipped, already hipified] +#10 33.18 /pytorch/torch/csrc/lazy/core/dynamic_ir.h -> /pytorch/torch/csrc/lazy/core/dynamic_ir.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/core/ir_metadata.cpp -> /pytorch/torch/csrc/lazy/core/ir_metadata.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/core/ops/utils.h -> /pytorch/torch/csrc/lazy/core/ops/utils.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/core/ops/utils.cpp -> /pytorch/torch/csrc/lazy/core/ops/utils.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp -> /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> /pytorch/torch/csrc/lazy/core/internal_ops/ltc_ops.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_node.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_node.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_native_functions.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_native_functions.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/config.h -> /pytorch/torch/csrc/lazy/ts_backend/config.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_node.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_node.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.cpp -> /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp -> /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/config.cpp -> /pytorch/torch/csrc/lazy/ts_backend/config.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ir_builder.h -> /pytorch/torch/csrc/lazy/ts_backend/ir_builder.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.h [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp [skipped, already hipified] +#10 33.19 /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.h -> /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/generic.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/generic.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/to_copy.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/to_copy.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/generic.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/generic.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/backend_device.cpp -> /pytorch/torch/csrc/lazy/backend/backend_device.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/backend_interface.h -> /pytorch/torch/csrc/lazy/backend/backend_interface.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/backend_interface.cpp -> /pytorch/torch/csrc/lazy/backend/backend_interface.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/backend_data.h -> /pytorch/torch/csrc/lazy/backend/backend_data.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/backend_device.h -> /pytorch/torch/csrc/lazy/backend/backend_device.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/lowering_context.cpp -> /pytorch/torch/csrc/lazy/backend/lowering_context.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/backend/lowering_context.h -> /pytorch/torch/csrc/lazy/backend/lowering_context.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/python/init.h -> /pytorch/torch/csrc/lazy/python/init.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/python/python_util.h -> /pytorch/torch/csrc/lazy/python/python_util.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/python/python_util.cpp -> /pytorch/torch/csrc/lazy/python/python_util.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/lazy/python/init.cpp -> /pytorch/torch/csrc/lazy/python/init.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/utils/tensor_numpy.h -> /pytorch/torch/csrc/utils/tensor_numpy.h [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/utils/tensor_new.cpp -> /pytorch/torch/csrc/utils/tensor_new.cpp [skipped, already hipified] +#10 33.20 /pytorch/torch/csrc/utils/object_ptr.h -> /pytorch/torch/csrc/utils/object_ptr.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/cuda_enabled.h -> /pytorch/torch/csrc/utils/cuda_enabled.h [ok] +#10 33.21 /pytorch/torch/csrc/utils/tensor_dtypes.h -> /pytorch/torch/csrc/utils/tensor_dtypes.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/schema_info.h -> /pytorch/torch/csrc/utils/schema_info.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/numpy_stub.h -> /pytorch/torch/csrc/utils/numpy_stub.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/byte_order.cpp -> /pytorch/torch/csrc/utils/byte_order.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/structseq.cpp -> /pytorch/torch/csrc/utils/structseq.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/init.h -> /pytorch/torch/csrc/utils/init.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/cuda_lazy_init.h -> /pytorch/torch/csrc/utils/cuda_lazy_init.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/cuda_lazy_init.cpp -> /pytorch/torch/csrc/utils/cuda_lazy_init.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/python_arg_parser.cpp -> /pytorch/torch/csrc/utils/python_arg_parser.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/tensor_list.cpp -> /pytorch/torch/csrc/utils/tensor_list.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/tensor_memoryformats.h -> /pytorch/torch/csrc/utils/tensor_memoryformats.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/nested.h -> /pytorch/torch/csrc/utils/nested.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/pythoncapi_compat.h -> /pytorch/torch/csrc/utils/pythoncapi_compat.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/pybind.h -> /pytorch/torch/csrc/utils/pybind.h [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/out_types.cpp -> /pytorch/torch/csrc/utils/out_types.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/python_symnode.cpp -> /pytorch/torch/csrc/utils/python_symnode.cpp [skipped, already hipified] +#10 33.21 /pytorch/torch/csrc/utils/tensor_layouts.cpp -> /pytorch/torch/csrc/utils/tensor_layouts.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/python_symnode.h -> /pytorch/torch/csrc/utils/python_symnode.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/variadic.cpp -> /pytorch/torch/csrc/utils/variadic.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/tensor_apply.cpp -> /pytorch/torch/csrc/utils/tensor_apply.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/memory.h -> /pytorch/torch/csrc/utils/memory.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/verbose.cpp -> /pytorch/torch/csrc/utils/verbose.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/tensor_qschemes.h -> /pytorch/torch/csrc/utils/tensor_qschemes.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/python_dispatch.cpp -> /pytorch/torch/csrc/utils/python_dispatch.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/six.h -> /pytorch/torch/csrc/utils/six.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/tensor_dtypes.cpp -> /pytorch/torch/csrc/utils/tensor_dtypes.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/python_numbers.h -> /pytorch/torch/csrc/utils/python_numbers.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/tensor_flatten.h -> /pytorch/torch/csrc/utils/tensor_flatten.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/tensor_numpy.cpp -> /pytorch/torch/csrc/utils/tensor_numpy.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/invalid_arguments.h -> /pytorch/torch/csrc/utils/invalid_arguments.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/tensor_layouts.h -> /pytorch/torch/csrc/utils/tensor_layouts.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/disable_torch_function.cpp -> /pytorch/torch/csrc/utils/disable_torch_function.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/python_tuples.h -> /pytorch/torch/csrc/utils/python_tuples.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/throughput_benchmark.h -> /pytorch/torch/csrc/utils/throughput_benchmark.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/variadic.h -> /pytorch/torch/csrc/utils/variadic.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/pycfunction_helpers.h -> /pytorch/torch/csrc/utils/pycfunction_helpers.h [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/schema_info.cpp -> /pytorch/torch/csrc/utils/schema_info.cpp [skipped, already hipified] +#10 33.22 /pytorch/torch/csrc/utils/auto_gil.h -> /pytorch/torch/csrc/utils/auto_gil.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/throughput_benchmark-inl.h -> /pytorch/torch/csrc/utils/throughput_benchmark-inl.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_stub.h -> /pytorch/torch/csrc/utils/python_stub.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_new.h -> /pytorch/torch/csrc/utils/tensor_new.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/cpp_stacktraces.cpp -> /pytorch/torch/csrc/utils/cpp_stacktraces.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/disable_torch_function.h -> /pytorch/torch/csrc/utils/disable_torch_function.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_dispatch.h -> /pytorch/torch/csrc/utils/python_dispatch.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/cpp_stacktraces.h -> /pytorch/torch/csrc/utils/cpp_stacktraces.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/throughput_benchmark.cpp -> /pytorch/torch/csrc/utils/throughput_benchmark.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_scalars.h -> /pytorch/torch/csrc/utils/python_scalars.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_apply.h -> /pytorch/torch/csrc/utils/tensor_apply.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/out_types.h -> /pytorch/torch/csrc/utils/out_types.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_arg_parser.h -> /pytorch/torch/csrc/utils/python_arg_parser.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_list.h -> /pytorch/torch/csrc/utils/tensor_list.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_compat.h -> /pytorch/torch/csrc/utils/python_compat.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_memoryformats.cpp -> /pytorch/torch/csrc/utils/tensor_memoryformats.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_torch_function_mode.h -> /pytorch/torch/csrc/utils/python_torch_function_mode.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/pybind.cpp -> /pytorch/torch/csrc/utils/pybind.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/structseq.h -> /pytorch/torch/csrc/utils/structseq.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/python_strings.h -> /pytorch/torch/csrc/utils/python_strings.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_flatten.cpp -> /pytorch/torch/csrc/utils/tensor_flatten.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/nested.cpp -> /pytorch/torch/csrc/utils/nested.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/object_ptr.cpp -> /pytorch/torch/csrc/utils/object_ptr.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/invalid_arguments.cpp -> /pytorch/torch/csrc/utils/invalid_arguments.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_qschemes.cpp -> /pytorch/torch/csrc/utils/tensor_qschemes.cpp [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/byte_order.h -> /pytorch/torch/csrc/utils/byte_order.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/tensor_types.h -> /pytorch/torch/csrc/utils/tensor_types.h [skipped, already hipified] +#10 33.23 /pytorch/torch/csrc/utils/init.cpp -> /pytorch/torch/csrc/utils/init.cpp [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/utils/torch_dispatch_mode.h -> /pytorch/torch/csrc/utils/torch_dispatch_mode.h [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/utils/tensor_types.cpp -> /pytorch/torch/csrc/utils/tensor_types.cpp [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/functorch/init.h -> /pytorch/torch/csrc/functorch/init.h [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/functorch/init.cpp -> /pytorch/torch/csrc/functorch/init.cpp [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/kineto_shim.h -> /pytorch/torch/csrc/profiler/kineto_shim.h [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/kineto_client_interface.cpp -> /pytorch/torch/csrc/profiler/kineto_client_interface.cpp [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/perf.h -> /pytorch/torch/csrc/profiler/perf.h [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/util.h -> /pytorch/torch/csrc/profiler/util.h [ok] +#10 33.24 /pytorch/torch/csrc/profiler/perf.cpp -> /pytorch/torch/csrc/profiler/perf.cpp [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/collection.h -> /pytorch/torch/csrc/profiler/collection.h [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/util.cpp -> /pytorch/torch/csrc/profiler/util.cpp [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/events.h -> /pytorch/torch/csrc/profiler/events.h [skipped, already hipified] +#10 33.24 /pytorch/torch/csrc/profiler/data_flow.cpp -> /pytorch/torch/csrc/profiler/data_flow.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/collection.cpp -> /pytorch/torch/csrc/profiler/collection.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/perf-inl.h -> /pytorch/torch/csrc/profiler/perf-inl.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/kineto_shim.cpp -> /pytorch/torch/csrc/profiler/kineto_shim.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/containers.h -> /pytorch/torch/csrc/profiler/containers.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/api.h -> /pytorch/torch/csrc/profiler/api.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/data_flow.h -> /pytorch/torch/csrc/profiler/data_flow.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/standalone/nvtx_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/nvtx_observer.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.h -> /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/standalone/itt_observer.h -> /pytorch/torch/csrc/profiler/standalone/itt_observer.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/standalone/nvtx_observer.h -> /pytorch/torch/csrc/profiler/standalone/nvtx_observer.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/standalone/itt_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/itt_observer.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/stubs/base.cpp -> /pytorch/torch/csrc/profiler/stubs/base.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/stubs/base.h -> /pytorch/torch/csrc/profiler/stubs/base.h [ok] +#10 33.25 /pytorch/torch/csrc/profiler/stubs/itt.cpp -> /pytorch/torch/csrc/profiler/stubs/itt.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/stubs/cuda.cpp -> /pytorch/torch/csrc/profiler/stubs/cuda.cpp [ok] +#10 33.25 /pytorch/torch/csrc/profiler/orchestration/vulkan.h -> /pytorch/torch/csrc/profiler/orchestration/vulkan.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/orchestration/observer.h -> /pytorch/torch/csrc/profiler/orchestration/observer.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/orchestration/python_tracer.h -> /pytorch/torch/csrc/profiler/orchestration/python_tracer.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/orchestration/python_tracer.cpp -> /pytorch/torch/csrc/profiler/orchestration/python_tracer.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/orchestration/observer.cpp -> /pytorch/torch/csrc/profiler/orchestration/observer.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/orchestration/vulkan.cpp -> /pytorch/torch/csrc/profiler/orchestration/vulkan.cpp [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/python/init.h -> /pytorch/torch/csrc/profiler/python/init.h [skipped, already hipified] +#10 33.25 /pytorch/torch/csrc/profiler/python/pybind.h -> /pytorch/torch/csrc/profiler/python/pybind.h [skipped, already hipified] +#10 33.26 /pytorch/torch/csrc/profiler/python/init.cpp -> /pytorch/torch/csrc/profiler/python/init.cpp [skipped, already hipified] +#10 33.26 /pytorch/torch/csrc/cuda/nccl.cpp -> /pytorch/torch/csrc/cuda/nccl.cpp [ok] +#10 33.26 /pytorch/torch/csrc/cuda/python_nccl.cpp -> /pytorch/torch/csrc/cuda/python_nccl.cpp [ok] +#10 33.26 /pytorch/torch/csrc/cuda/Event.h -> /pytorch/torch/csrc/cuda/Event.h [ok] +#10 33.26 /pytorch/torch/csrc/cuda/Graph.cpp -> /pytorch/torch/csrc/cuda/Graph.cpp [ok] +#10 33.26 /pytorch/torch/csrc/cuda/Stream.cpp -> /pytorch/torch/csrc/cuda/Stream.cpp [ok] +#10 33.26 /pytorch/torch/csrc/cuda/nccl.h -> /pytorch/torch/csrc/cuda/nccl.h [ok] +#10 33.26 /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.h -> /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.h [ok] +#10 33.26 /pytorch/torch/csrc/cuda/comm.h -> /pytorch/torch/csrc/cuda/comm.h [ok] +#10 33.26 /pytorch/torch/csrc/cuda/utils.cpp -> /pytorch/torch/csrc/cuda/utils.cpp [ok] +#10 33.26 /pytorch/torch/csrc/cuda/comm.cpp -> /pytorch/torch/csrc/cuda/comm.cpp [ok] +#10 33.26 /pytorch/torch/csrc/cuda/python_comm.h -> /pytorch/torch/csrc/cuda/python_comm.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/Module.cpp -> /pytorch/torch/csrc/cuda/Module.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/memory_snapshot.h -> /pytorch/torch/csrc/cuda/memory_snapshot.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/Stream.h -> /pytorch/torch/csrc/cuda/Stream.h [ok] +#10 33.27 /pytorch/torch/csrc/cuda/python_nccl.h -> /pytorch/torch/csrc/cuda/python_nccl.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/python_comm.cpp -> /pytorch/torch/csrc/cuda/python_comm.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/memory_snapshot.cpp -> /pytorch/torch/csrc/cuda/memory_snapshot.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/THCP.h -> /pytorch/torch/csrc/cuda/THCP.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/Event.cpp -> /pytorch/torch/csrc/cuda/Event.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/device_set.h -> /pytorch/torch/csrc/cuda/device_set.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/Tensor.cpp -> /pytorch/torch/csrc/cuda/Tensor.cpp [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.cpp -> /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/Module.h -> /pytorch/torch/csrc/cuda/Module.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/cuda/shared/cudnn.cpp -> /pytorch/torch/csrc/cuda/shared/cudnn.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/shared/cudart.cpp -> /pytorch/torch/csrc/cuda/shared/cudart.cpp [ok] +#10 33.27 /pytorch/torch/csrc/cuda/shared/nvtx.cpp -> /pytorch/torch/csrc/cuda/shared/nvtx.cpp [ok] +#10 33.27 /pytorch/torch/csrc/jit/jit_log.cpp -> /pytorch/torch/csrc/jit/jit_log.cpp [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/jit/jit_log.h -> /pytorch/torch/csrc/jit/jit_log.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/jit/resource_guard.h -> /pytorch/torch/csrc/jit/resource_guard.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/jit/jit_opt_limit.h -> /pytorch/torch/csrc/jit/jit_opt_limit.h [skipped, already hipified] +#10 33.27 /pytorch/torch/csrc/jit/jit_opt_limit.cpp -> /pytorch/torch/csrc/jit/jit_opt_limit.cpp [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> /pytorch/torch/csrc/jit/serialization/mobile_bytecode_generated.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/export.cpp -> /pytorch/torch/csrc/jit/serialization/export.cpp [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/import_export_constants.h -> /pytorch/torch/csrc/jit/serialization/import_export_constants.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/export.h -> /pytorch/torch/csrc/jit/serialization/export.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/import_export_functions.h -> /pytorch/torch/csrc/jit/serialization/import_export_functions.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/import.h -> /pytorch/torch/csrc/jit/serialization/import.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/source_range_serialization_impl.h -> /pytorch/torch/csrc/jit/serialization/source_range_serialization_impl.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/onnx.h -> /pytorch/torch/csrc/jit/serialization/onnx.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/import_read.h -> /pytorch/torch/csrc/jit/serialization/import_read.h [skipped, already hipified] +#10 33.28 /pytorch/torch/csrc/jit/serialization/import_export_helpers.h -> /pytorch/torch/csrc/jit/serialization/import_export_helpers.h [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/import.cpp -> /pytorch/torch/csrc/jit/serialization/import.cpp [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/source_range_serialization.h -> /pytorch/torch/csrc/jit/serialization/source_range_serialization.h [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/type_name_uniquer.cpp -> /pytorch/torch/csrc/jit/serialization/type_name_uniquer.cpp [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/type_name_uniquer.h -> /pytorch/torch/csrc/jit/serialization/type_name_uniquer.h [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.cpp -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.cpp [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/export_bytecode.h -> /pytorch/torch/csrc/jit/serialization/export_bytecode.h [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/storage_context.h -> /pytorch/torch/csrc/jit/serialization/storage_context.h [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/pickle.h -> /pytorch/torch/csrc/jit/serialization/pickle.h [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/export_module.cpp -> /pytorch/torch/csrc/jit/serialization/export_module.cpp [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/import_read.cpp -> /pytorch/torch/csrc/jit/serialization/import_read.cpp [skipped, already hipified] +#10 33.29 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.cpp -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.cpp [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/python_print.cpp -> /pytorch/torch/csrc/jit/serialization/python_print.cpp [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/onnx.cpp -> /pytorch/torch/csrc/jit/serialization/onnx.cpp [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/import_export_helpers.cpp -> /pytorch/torch/csrc/jit/serialization/import_export_helpers.cpp [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/pickle.cpp -> /pytorch/torch/csrc/jit/serialization/pickle.cpp [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/python_print.h -> /pytorch/torch/csrc/jit/serialization/python_print.h [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp -> /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/pickler.h -> /pytorch/torch/csrc/jit/serialization/pickler.h [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.h -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.h [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/import_legacy.h -> /pytorch/torch/csrc/jit/serialization/import_legacy.h [skipped, already hipified] +#10 33.30 /pytorch/torch/csrc/jit/serialization/pickler.cpp -> /pytorch/torch/csrc/jit/serialization/pickler.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/unpickler.cpp -> /pytorch/torch/csrc/jit/serialization/unpickler.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/source_range_serialization.cpp -> /pytorch/torch/csrc/jit/serialization/source_range_serialization.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/export_bytecode.cpp -> /pytorch/torch/csrc/jit/serialization/export_bytecode.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/unpickler.h -> /pytorch/torch/csrc/jit/serialization/unpickler.h [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/import_legacy.cpp -> /pytorch/torch/csrc/jit/serialization/import_legacy.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/import_source.h -> /pytorch/torch/csrc/jit/serialization/import_source.h [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/serialization/import_source.cpp -> /pytorch/torch/csrc/jit/serialization/import_source.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/tensorexpr/expr.cpp -> /pytorch/torch/csrc/jit/tensorexpr/expr.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.cpp [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/tensorexpr/tensor.h -> /pytorch/torch/csrc/jit/tensorexpr/tensor.h [skipped, already hipified] +#10 33.31 /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp -> /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/half_support.h -> /pytorch/torch/csrc/jit/tensorexpr/half_support.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.h -> /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/codegen.cpp [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/loopnest.h -> /pytorch/torch/csrc/jit/tensorexpr/loopnest.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/ir.h -> /pytorch/torch/csrc/jit/tensorexpr/ir.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/graph_opt.h -> /pytorch/torch/csrc/jit/tensorexpr/graph_opt.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.h -> /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/lowerings.h -> /pytorch/torch/csrc/jit/tensorexpr/lowerings.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/stmt.h -> /pytorch/torch/csrc/jit/tensorexpr/stmt.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.h [skipped, already hipified] +#10 33.32 /pytorch/torch/csrc/jit/tensorexpr/tensor.cpp -> /pytorch/torch/csrc/jit/tensorexpr/tensor.cpp [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.h [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.h [ok] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.cpp -> /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.cpp [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/reduction.cpp -> /pytorch/torch/csrc/jit/tensorexpr/reduction.cpp [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.h [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/types.h -> /pytorch/torch/csrc/jit/tensorexpr/types.h [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/hash_provider.cpp -> /pytorch/torch/csrc/jit/tensorexpr/hash_provider.cpp [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/lowerings.cpp -> /pytorch/torch/csrc/jit/tensorexpr/lowerings.cpp [skipped, already hipified] +#10 33.33 /pytorch/torch/csrc/jit/tensorexpr/codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/codegen.h [skipped, already hipified] +#10 33.34 /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.cpp [skipped, already hipified] +#10 33.34 /pytorch/torch/csrc/jit/tensorexpr/loopnest.cpp -> /pytorch/torch/csrc/jit/tensorexpr/loopnest.cpp [skipped, already hipified] +#10 33.35 /pytorch/torch/csrc/jit/tensorexpr/external_functions.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions.cpp [skipped, already hipified] +#10 33.35 /pytorch/torch/csrc/jit/tensorexpr/hash_provider.h -> /pytorch/torch/csrc/jit/tensorexpr/hash_provider.h [skipped, already hipified] +#10 33.35 /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.cpp -> /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.cpp [skipped, already hipified] +#10 33.35 /pytorch/torch/csrc/jit/tensorexpr/registerizer.h -> /pytorch/torch/csrc/jit/tensorexpr/registerizer.h [skipped, already hipified] +#10 33.36 /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.cpp [skipped, already hipified] +#10 33.36 /pytorch/torch/csrc/jit/tensorexpr/analysis.h -> /pytorch/torch/csrc/jit/tensorexpr/analysis.h [skipped, already hipified] +#10 33.36 /pytorch/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp [skipped, already hipified] +#10 33.36 /pytorch/torch/csrc/jit/tensorexpr/kernel.h -> /pytorch/torch/csrc/jit/tensorexpr/kernel.h [skipped, already hipified] +#10 33.36 /pytorch/torch/csrc/jit/tensorexpr/var_substitutor.h -> /pytorch/torch/csrc/jit/tensorexpr/var_substitutor.h [skipped, already hipified] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.cpp -> /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.cpp [ok] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp -> /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp [skipped, already hipified] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp -> /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp [skipped, already hipified] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.h [skipped, already hipified] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/cuda_random.h -> /pytorch/torch/csrc/jit/tensorexpr/cuda_random.h [skipped, already hipified] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.cpp [skipped, already hipified] +#10 33.37 /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.cpp -> /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.cpp [skipped, already hipified] +#10 33.38 /pytorch/torch/csrc/jit/tensorexpr/eval.cpp -> /pytorch/torch/csrc/jit/tensorexpr/eval.cpp [skipped, already hipified] +#10 33.38 /pytorch/torch/csrc/jit/tensorexpr/kernel.cpp -> /pytorch/torch/csrc/jit/tensorexpr/kernel.cpp [skipped, already hipified] +#10 33.38 /pytorch/torch/csrc/jit/tensorexpr/ir.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir.cpp [skipped, already hipified] +#10 33.38 /pytorch/torch/csrc/jit/tensorexpr/eval.h -> /pytorch/torch/csrc/jit/tensorexpr/eval.h [skipped, already hipified] +#10 33.38 /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.cpp [skipped, already hipified] +#10 33.38 /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.cpp [ok] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.cpp -> /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.cpp [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/reduction.h -> /pytorch/torch/csrc/jit/tensorexpr/reduction.h [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.h [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.cpp [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.h [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.h [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/expr.h -> /pytorch/torch/csrc/jit/tensorexpr/expr.h [skipped, already hipified] +#10 33.39 /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/registerizer.cpp -> /pytorch/torch/csrc/jit/tensorexpr/registerizer.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> /pytorch/torch/csrc/jit/tensorexpr/cpp_intrinsics.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/exceptions.h -> /pytorch/torch/csrc/jit/tensorexpr/exceptions.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/ir_printer.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_printer.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/fwd_decls.h -> /pytorch/torch/csrc/jit/tensorexpr/fwd_decls.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/external_functions.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/types.cpp -> /pytorch/torch/csrc/jit/tensorexpr/types.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/block_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/block_codegen.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.h -> /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.h -> /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/block_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/block_codegen.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/graph_opt.cpp -> /pytorch/torch/csrc/jit/tensorexpr/graph_opt.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/operators/operators.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/operators.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/operators/norm.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/norm.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.h [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/operators/norm.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/norm.cpp [skipped, already hipified] +#10 33.40 /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/misc.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/misc.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/misc.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/misc.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_debug_handler.cpp -> /pytorch/torch/csrc/jit/backends/backend_debug_handler.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_interface.h -> /pytorch/torch/csrc/jit/backends/backend_interface.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_debug_info.h -> /pytorch/torch/csrc/jit/backends/backend_debug_info.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_init.cpp -> /pytorch/torch/csrc/jit/backends/backend_init.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_resolver.cpp -> /pytorch/torch/csrc/jit/backends/backend_resolver.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_init.h -> /pytorch/torch/csrc/jit/backends/backend_init.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_interface.cpp -> /pytorch/torch/csrc/jit/backends/backend_interface.cpp [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend.h -> /pytorch/torch/csrc/jit/backends/backend.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_preprocess.h -> /pytorch/torch/csrc/jit/backends/backend_preprocess.h [skipped, already hipified] +#10 33.41 /pytorch/torch/csrc/jit/backends/backend_resolver.h -> /pytorch/torch/csrc/jit/backends/backend_resolver.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/backend_detail.cpp -> /pytorch/torch/csrc/jit/backends/backend_detail.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/backend_debug_info.cpp -> /pytorch/torch/csrc/jit/backends/backend_debug_info.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/backend_debug_handler.h -> /pytorch/torch/csrc/jit/backends/backend_debug_handler.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/backend_exception.h -> /pytorch/torch/csrc/jit/backends/backend_exception.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/backend_detail.h -> /pytorch/torch/csrc/jit/backends/backend_detail.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/cpp/context.h -> /pytorch/torch/csrc/jit/backends/coreml/cpp/context.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/cpp/backend.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/backend.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/cpp/context.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/context.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/cpp/preprocess.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/preprocess.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_lib.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_lib.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_preprocess.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_preprocess.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> /pytorch/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp -> /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp -> /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/frontend/parser_constants.h -> /pytorch/torch/csrc/jit/frontend/parser_constants.h [skipped, already hipified] +#10 33.42 /pytorch/torch/csrc/jit/frontend/inline_loop_condition.h -> /pytorch/torch/csrc/jit/frontend/inline_loop_condition.h [skipped, already hipified] +#10 33.43 /pytorch/torch/csrc/jit/frontend/schema_matching.cpp -> /pytorch/torch/csrc/jit/frontend/schema_matching.cpp [skipped, already hipified] +#10 33.43 /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp -> /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp [skipped, already hipified] +#10 33.43 /pytorch/torch/csrc/jit/frontend/name_mangler.h -> /pytorch/torch/csrc/jit/frontend/name_mangler.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/ir_emitter.cpp -> /pytorch/torch/csrc/jit/frontend/ir_emitter.cpp [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/script_type_parser.h -> /pytorch/torch/csrc/jit/frontend/script_type_parser.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/convert_to_ssa.cpp -> /pytorch/torch/csrc/jit/frontend/convert_to_ssa.cpp [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/function_schema_parser.cpp -> /pytorch/torch/csrc/jit/frontend/function_schema_parser.cpp [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/function_schema_parser.h -> /pytorch/torch/csrc/jit/frontend/function_schema_parser.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/convert_to_ssa.h -> /pytorch/torch/csrc/jit/frontend/convert_to_ssa.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/edit_distance.h -> /pytorch/torch/csrc/jit/frontend/edit_distance.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/schema_type_parser.h -> /pytorch/torch/csrc/jit/frontend/schema_type_parser.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.h [skipped, already hipified] +#10 33.44 /pytorch/torch/csrc/jit/frontend/concrete_module_type.cpp -> /pytorch/torch/csrc/jit/frontend/concrete_module_type.cpp [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/sugared_value.h -> /pytorch/torch/csrc/jit/frontend/sugared_value.h [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/builtin_functions.h -> /pytorch/torch/csrc/jit/frontend/builtin_functions.h [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/parser.cpp -> /pytorch/torch/csrc/jit/frontend/parser.cpp [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/source_ref.h -> /pytorch/torch/csrc/jit/frontend/source_ref.h [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/sugared_value.cpp -> /pytorch/torch/csrc/jit/frontend/sugared_value.cpp [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/script_type_parser.cpp -> /pytorch/torch/csrc/jit/frontend/script_type_parser.cpp [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/source_range.cpp -> /pytorch/torch/csrc/jit/frontend/source_range.cpp [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/exit_transforms.cpp -> /pytorch/torch/csrc/jit/frontend/exit_transforms.cpp [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/parser.h -> /pytorch/torch/csrc/jit/frontend/parser.h [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/concrete_module_type.h -> /pytorch/torch/csrc/jit/frontend/concrete_module_type.h [skipped, already hipified] +#10 33.45 /pytorch/torch/csrc/jit/frontend/ir_emitter.h -> /pytorch/torch/csrc/jit/frontend/ir_emitter.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/strtod.cpp -> /pytorch/torch/csrc/jit/frontend/strtod.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/lexer.cpp -> /pytorch/torch/csrc/jit/frontend/lexer.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/mini_environment.h -> /pytorch/torch/csrc/jit/frontend/mini_environment.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/name_mangler.cpp -> /pytorch/torch/csrc/jit/frontend/name_mangler.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/versioned_symbols.h -> /pytorch/torch/csrc/jit/frontend/versioned_symbols.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/error_report.h -> /pytorch/torch/csrc/jit/frontend/error_report.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/source_range.h -> /pytorch/torch/csrc/jit/frontend/source_range.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/schema_matching.h -> /pytorch/torch/csrc/jit/frontend/schema_matching.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/builtin_functions.cpp -> /pytorch/torch/csrc/jit/frontend/builtin_functions.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/edit_distance.cpp -> /pytorch/torch/csrc/jit/frontend/edit_distance.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/tracer.h -> /pytorch/torch/csrc/jit/frontend/tracer.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/error_report.cpp -> /pytorch/torch/csrc/jit/frontend/error_report.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/tree_views.cpp -> /pytorch/torch/csrc/jit/frontend/tree_views.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/parse_string_literal.h -> /pytorch/torch/csrc/jit/frontend/parse_string_literal.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/inline_loop_condition.cpp -> /pytorch/torch/csrc/jit/frontend/inline_loop_condition.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/schema_type_parser.cpp -> /pytorch/torch/csrc/jit/frontend/schema_type_parser.cpp [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/tree.h -> /pytorch/torch/csrc/jit/frontend/tree.h [skipped, already hipified] +#10 33.46 /pytorch/torch/csrc/jit/frontend/exit_transforms.h -> /pytorch/torch/csrc/jit/frontend/exit_transforms.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/frontend/tracer.cpp -> /pytorch/torch/csrc/jit/frontend/tracer.cpp [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/frontend/strtod.h -> /pytorch/torch/csrc/jit/frontend/strtod.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/frontend/tree_views.h -> /pytorch/torch/csrc/jit/frontend/tree_views.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/frontend/versioned_symbols.cpp -> /pytorch/torch/csrc/jit/frontend/versioned_symbols.cpp [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/frontend/resolver.h -> /pytorch/torch/csrc/jit/frontend/resolver.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/frontend/lexer.h -> /pytorch/torch/csrc/jit/frontend/lexer.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/cuda/cuda.h -> /pytorch/torch/csrc/jit/cuda/cuda.h [ok] +#10 33.47 /pytorch/torch/csrc/jit/mobile/profiler_edge.h -> /pytorch/torch/csrc/jit/mobile/profiler_edge.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/mobile/type_parser.h -> /pytorch/torch/csrc/jit/mobile/type_parser.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/mobile/module.h -> /pytorch/torch/csrc/jit/mobile/module.h [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.cpp -> /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.cpp [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.cpp -> /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.cpp [skipped, already hipified] +#10 33.47 /pytorch/torch/csrc/jit/mobile/parse_operators.h -> /pytorch/torch/csrc/jit/mobile/parse_operators.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/parse_bytecode.cpp -> /pytorch/torch/csrc/jit/mobile/parse_bytecode.cpp [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.h -> /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/quantization.h -> /pytorch/torch/csrc/jit/mobile/quantization.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/observer.h -> /pytorch/torch/csrc/jit/mobile/observer.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.cpp -> /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.cpp [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/import.h -> /pytorch/torch/csrc/jit/mobile/import.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/code.h -> /pytorch/torch/csrc/jit/mobile/code.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/module.cpp -> /pytorch/torch/csrc/jit/mobile/module.cpp [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/profiler_edge.cpp -> /pytorch/torch/csrc/jit/mobile/profiler_edge.cpp [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/import.cpp -> /pytorch/torch/csrc/jit/mobile/import.cpp [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/import_data.h -> /pytorch/torch/csrc/jit/mobile/import_data.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.h -> /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/upgrader_mobile.h -> /pytorch/torch/csrc/jit/mobile/upgrader_mobile.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/file_format.h -> /pytorch/torch/csrc/jit/mobile/file_format.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/import_export_common.h -> /pytorch/torch/csrc/jit/mobile/import_export_common.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/parse_bytecode.h -> /pytorch/torch/csrc/jit/mobile/parse_bytecode.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/parse_operators.cpp -> /pytorch/torch/csrc/jit/mobile/parse_operators.cpp [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/function.h -> /pytorch/torch/csrc/jit/mobile/function.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/debug_info.h -> /pytorch/torch/csrc/jit/mobile/debug_info.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.h -> /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/prim_ops_registery.h -> /pytorch/torch/csrc/jit/mobile/prim_ops_registery.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/frame.h -> /pytorch/torch/csrc/jit/mobile/frame.h [skipped, already hipified] +#10 33.48 /pytorch/torch/csrc/jit/mobile/prim_ops_registery.cpp -> /pytorch/torch/csrc/jit/mobile/prim_ops_registery.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/upgrader_mobile.cpp -> /pytorch/torch/csrc/jit/mobile/upgrader_mobile.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/quantization.cpp -> /pytorch/torch/csrc/jit/mobile/quantization.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/interpreter.h -> /pytorch/torch/csrc/jit/mobile/interpreter.h [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/method.h -> /pytorch/torch/csrc/jit/mobile/method.h [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/observer.cpp -> /pytorch/torch/csrc/jit/mobile/observer.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/function.cpp -> /pytorch/torch/csrc/jit/mobile/function.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/import_data.cpp -> /pytorch/torch/csrc/jit/mobile/import_data.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/interpreter.cpp -> /pytorch/torch/csrc/jit/mobile/interpreter.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/type_parser.cpp -> /pytorch/torch/csrc/jit/mobile/type_parser.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/debug_info.cpp -> /pytorch/torch/csrc/jit/mobile/debug_info.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/random.cpp -> /pytorch/torch/csrc/jit/mobile/train/random.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/random.h -> /pytorch/torch/csrc/jit/mobile/train/random.h [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/export_data.cpp -> /pytorch/torch/csrc/jit/mobile/train/export_data.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/sequential.h -> /pytorch/torch/csrc/jit/mobile/train/sequential.h [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/export_data.h -> /pytorch/torch/csrc/jit/mobile/train/export_data.h [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/sequential.cpp -> /pytorch/torch/csrc/jit/mobile/train/sequential.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/optim/sgd.h -> /pytorch/torch/csrc/jit/mobile/train/optim/sgd.h [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/train/optim/sgd.cpp -> /pytorch/torch/csrc/jit/mobile/train/optim/sgd.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.cpp [skipped, already hipified] +#10 33.49 /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/tracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/tracer.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/backport.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/backport.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/backport.h -> /pytorch/torch/csrc/jit/mobile/compatibility/backport.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.h -> /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h [skipped, already hipified] +#10 33.50 /pytorch/torch/csrc/jit/mobile/nnc/registry.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/registry.cpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.cpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/mobile/nnc/context.h -> /pytorch/torch/csrc/jit/mobile/nnc/context.h [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.h -> /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.h [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/mobile/nnc/backend.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/backend.cpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/mobile/nnc/registry.h -> /pytorch/torch/csrc/jit/mobile/nnc/registry.h [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/mobile/nnc/context.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/context.cpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/testing/file_check.h -> /pytorch/torch/csrc/jit/testing/file_check.h [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/testing/hooks_for_testing.h -> /pytorch/torch/csrc/jit/testing/hooks_for_testing.h [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/testing/hooks_for_testing.cpp -> /pytorch/torch/csrc/jit/testing/hooks_for_testing.cpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/testing/catch_utils.hpp -> /pytorch/torch/csrc/jit/testing/catch_utils.hpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/testing/file_check.cpp -> /pytorch/torch/csrc/jit/testing/file_check.cpp [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/ir/alias_analysis.h -> /pytorch/torch/csrc/jit/ir/alias_analysis.h [skipped, already hipified] +#10 33.51 /pytorch/torch/csrc/jit/ir/ir.h -> /pytorch/torch/csrc/jit/ir/ir.h [ok] +#10 33.52 /pytorch/torch/csrc/jit/ir/graph_node_list.h -> /pytorch/torch/csrc/jit/ir/graph_node_list.h [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/irparser.h -> /pytorch/torch/csrc/jit/ir/irparser.h [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/constants.cpp -> /pytorch/torch/csrc/jit/ir/constants.cpp [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/graph_utils.h -> /pytorch/torch/csrc/jit/ir/graph_utils.h [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/scope.h -> /pytorch/torch/csrc/jit/ir/scope.h [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/irparser.cpp -> /pytorch/torch/csrc/jit/ir/irparser.cpp [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/node_hashing.cpp -> /pytorch/torch/csrc/jit/ir/node_hashing.cpp [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/attributes.cpp -> /pytorch/torch/csrc/jit/ir/attributes.cpp [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/alias_analysis.cpp -> /pytorch/torch/csrc/jit/ir/alias_analysis.cpp [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/graph_utils.cpp -> /pytorch/torch/csrc/jit/ir/graph_utils.cpp [skipped, already hipified] +#10 33.52 /pytorch/torch/csrc/jit/ir/subgraph_matcher.cpp -> /pytorch/torch/csrc/jit/ir/subgraph_matcher.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/type_hashing.h -> /pytorch/torch/csrc/jit/ir/type_hashing.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/ir.cpp -> /pytorch/torch/csrc/jit/ir/ir.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/named_value.h -> /pytorch/torch/csrc/jit/ir/named_value.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/scope.cpp -> /pytorch/torch/csrc/jit/ir/scope.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/node_hashing.h -> /pytorch/torch/csrc/jit/ir/node_hashing.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/attributes.h -> /pytorch/torch/csrc/jit/ir/attributes.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/subgraph_matcher.h -> /pytorch/torch/csrc/jit/ir/subgraph_matcher.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/type_hashing.cpp -> /pytorch/torch/csrc/jit/ir/type_hashing.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/ir_views.h -> /pytorch/torch/csrc/jit/ir/ir_views.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/ir/constants.h -> /pytorch/torch/csrc/jit/ir/constants.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/utils.h -> /pytorch/torch/csrc/jit/operator_upgraders/utils.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/utils.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/utils.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/version_map.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/version_map.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/upgraders.h -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.h [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/upgraders.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders.cpp [skipped, already hipified] +#10 33.53 /pytorch/torch/csrc/jit/operator_upgraders/version_map.h -> /pytorch/torch/csrc/jit/operator_upgraders/version_map.h [skipped, already hipified] +#10 33.54 /pytorch/torch/csrc/jit/runtime/register_prim_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_prim_ops.cpp [skipped, already hipified] +#10 33.54 /pytorch/torch/csrc/jit/runtime/calculate_necessary_args.h -> /pytorch/torch/csrc/jit/runtime/calculate_necessary_args.h [skipped, already hipified] +#10 33.54 /pytorch/torch/csrc/jit/runtime/graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/graph_executor_impl.h [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp -> /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/graph_executor.h -> /pytorch/torch/csrc/jit/runtime/graph_executor.h [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.cpp -> /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.cpp [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/register_ops_utils.h -> /pytorch/torch/csrc/jit/runtime/register_ops_utils.h [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.h -> /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.h [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/vararg_functions.h -> /pytorch/torch/csrc/jit/runtime/vararg_functions.h [skipped, already hipified] +#10 33.55 /pytorch/torch/csrc/jit/runtime/jit_exception.h -> /pytorch/torch/csrc/jit/runtime/jit_exception.h [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/symbolic_script.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_script.cpp [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/jit_trace.cpp -> /pytorch/torch/csrc/jit/runtime/jit_trace.cpp [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/vararg_functions.cpp -> /pytorch/torch/csrc/jit/runtime/vararg_functions.cpp [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/logging.cpp -> /pytorch/torch/csrc/jit/runtime/logging.cpp [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/instruction.cpp -> /pytorch/torch/csrc/jit/runtime/instruction.cpp [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/decomposition_registry.cpp -> /pytorch/torch/csrc/jit/runtime/decomposition_registry.cpp [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/operator.h -> /pytorch/torch/csrc/jit/runtime/operator.h [skipped, already hipified] +#10 33.56 /pytorch/torch/csrc/jit/runtime/autodiff.cpp -> /pytorch/torch/csrc/jit/runtime/autodiff.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/profiling_record.cpp -> /pytorch/torch/csrc/jit/runtime/profiling_record.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/decomposition_registry.h -> /pytorch/torch/csrc/jit/runtime/decomposition_registry.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/register_c10_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_c10_ops.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/graph_executor.cpp -> /pytorch/torch/csrc/jit/runtime/graph_executor.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/print_handler.h -> /pytorch/torch/csrc/jit/runtime/print_handler.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/argument_spec.h -> /pytorch/torch/csrc/jit/runtime/argument_spec.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.cpp -> /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/register_ops_utils.cpp -> /pytorch/torch/csrc/jit/runtime/register_ops_utils.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/graph_iterator.h -> /pytorch/torch/csrc/jit/runtime/graph_iterator.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/jit_exception.cpp -> /pytorch/torch/csrc/jit/runtime/jit_exception.cpp [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/symbolic_script.h -> /pytorch/torch/csrc/jit/runtime/symbolic_script.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.h [skipped, already hipified] +#10 33.57 /pytorch/torch/csrc/jit/runtime/autodiff.h -> /pytorch/torch/csrc/jit/runtime/autodiff.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp -> /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/shape_function_registry.h -> /pytorch/torch/csrc/jit/runtime/shape_function_registry.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/logging.h -> /pytorch/torch/csrc/jit/runtime/logging.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/custom_operator.h -> /pytorch/torch/csrc/jit/runtime/custom_operator.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/exception_message.h -> /pytorch/torch/csrc/jit/runtime/exception_message.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.h -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/variable_tensor_list.h -> /pytorch/torch/csrc/jit/runtime/variable_tensor_list.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/register_distributed_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_distributed_ops.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/profiling_record.h -> /pytorch/torch/csrc/jit/runtime/profiling_record.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/operator.cpp -> /pytorch/torch/csrc/jit/runtime/operator.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/jit_trace.h -> /pytorch/torch/csrc/jit/runtime/jit_trace.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/print_handler.cpp -> /pytorch/torch/csrc/jit/runtime/print_handler.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.h -> /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp -> /pytorch/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp -> /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/interpreter.h -> /pytorch/torch/csrc/jit/runtime/interpreter.h [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/register_special_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_special_ops.cpp [skipped, already hipified] +#10 33.58 /pytorch/torch/csrc/jit/runtime/instruction.h -> /pytorch/torch/csrc/jit/runtime/instruction.h [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/argument_spec.cpp -> /pytorch/torch/csrc/jit/runtime/argument_spec.cpp [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/interpreter.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter.cpp [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/register_cuda_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_cuda_ops.cpp [ok] +#10 33.59 /pytorch/torch/csrc/jit/runtime/script_profile.cpp -> /pytorch/torch/csrc/jit/runtime/script_profile.cpp [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/script_profile.h -> /pytorch/torch/csrc/jit/runtime/script_profile.h [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.cpp [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/operator_options.h -> /pytorch/torch/csrc/jit/runtime/operator_options.h [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/static/fusion.h -> /pytorch/torch/csrc/jit/runtime/static/fusion.h [skipped, already hipified] +#10 33.59 /pytorch/torch/csrc/jit/runtime/static/fusion.cpp -> /pytorch/torch/csrc/jit/runtime/static/fusion.cpp [skipped, already hipified] +#10 33.60 /pytorch/torch/csrc/jit/runtime/static/impl.cpp -> /pytorch/torch/csrc/jit/runtime/static/impl.cpp [skipped, already hipified] +#10 33.60 /pytorch/torch/csrc/jit/runtime/static/impl.h -> /pytorch/torch/csrc/jit/runtime/static/impl.h [skipped, already hipified] +#10 33.60 /pytorch/torch/csrc/jit/runtime/static/memory_planner.h -> /pytorch/torch/csrc/jit/runtime/static/memory_planner.h [skipped, already hipified] +#10 33.60 /pytorch/torch/csrc/jit/runtime/static/static_method.h -> /pytorch/torch/csrc/jit/runtime/static/static_method.h [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/ops.cpp [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/init.h -> /pytorch/torch/csrc/jit/runtime/static/init.h [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/passes.h -> /pytorch/torch/csrc/jit/runtime/static/passes.h [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/native_ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/native_ops.cpp [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/memory_planner.cpp -> /pytorch/torch/csrc/jit/runtime/static/memory_planner.cpp [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/te_wrapper.h -> /pytorch/torch/csrc/jit/runtime/static/te_wrapper.h [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> /pytorch/torch/csrc/jit/runtime/static/processed_node_wrapper.h [skipped, already hipified] +#10 33.61 /pytorch/torch/csrc/jit/runtime/static/ops.h -> /pytorch/torch/csrc/jit/runtime/static/ops.h [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/static/generated_ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/generated_ops.cpp [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.cpp -> /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.cpp [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/static/te_wrapper.cpp -> /pytorch/torch/csrc/jit/runtime/static/te_wrapper.cpp [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/static/passes.cpp -> /pytorch/torch/csrc/jit/runtime/static/passes.cpp [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/static/init.cpp -> /pytorch/torch/csrc/jit/runtime/static/init.cpp [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> /pytorch/torch/csrc/jit/runtime/interpreter/can_emit_inline.h [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/interpreter/code_impl.h -> /pytorch/torch/csrc/jit/runtime/interpreter/code_impl.h [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/interpreter/frame.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter/frame.cpp [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.h [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/interpreter/frame.h -> /pytorch/torch/csrc/jit/runtime/interpreter/frame.h [skipped, already hipified] +#10 33.63 /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/module.h -> /pytorch/torch/csrc/jit/api/module.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/object.cpp -> /pytorch/torch/csrc/jit/api/object.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/module.cpp -> /pytorch/torch/csrc/jit/api/module.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/function_impl.cpp -> /pytorch/torch/csrc/jit/api/function_impl.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/object.h -> /pytorch/torch/csrc/jit/api/object.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/compilation_unit.h -> /pytorch/torch/csrc/jit/api/compilation_unit.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/function_impl.h -> /pytorch/torch/csrc/jit/api/function_impl.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/method.h -> /pytorch/torch/csrc/jit/api/method.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/api/module_save.cpp -> /pytorch/torch/csrc/jit/api/module_save.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/lower_graph.cpp -> /pytorch/torch/csrc/jit/passes/lower_graph.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/liveness.cpp -> /pytorch/torch/csrc/jit/passes/liveness.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/pass_manager.cpp -> /pytorch/torch/csrc/jit/passes/pass_manager.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.cpp -> /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/lift_closures.cpp -> /pytorch/torch/csrc/jit/passes/lift_closures.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.h -> /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.h -> /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/lift_closures.h -> /pytorch/torch/csrc/jit/passes/lift_closures.h [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/remove_expands.cpp -> /pytorch/torch/csrc/jit/passes/remove_expands.cpp [skipped, already hipified] +#10 33.64 /pytorch/torch/csrc/jit/passes/guard_elimination.h -> /pytorch/torch/csrc/jit/passes/guard_elimination.h [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/peephole_list_idioms.cpp -> /pytorch/torch/csrc/jit/passes/peephole_list_idioms.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/vulkan_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/vulkan_rewrite.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/fuse_relu.h -> /pytorch/torch/csrc/jit/passes/fuse_relu.h [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.cpp -> /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/remove_dropout.cpp -> /pytorch/torch/csrc/jit/passes/remove_dropout.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/concat_opt.cpp -> /pytorch/torch/csrc/jit/passes/concat_opt.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.h -> /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.h [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/clear_profiling.h -> /pytorch/torch/csrc/jit/passes/clear_profiling.h [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.cpp -> /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.cpp [skipped, already hipified] +#10 33.65 /pytorch/torch/csrc/jit/passes/metal_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/metal_rewrite.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/specialize_autogradzero.cpp -> /pytorch/torch/csrc/jit/passes/specialize_autogradzero.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/requires_grad_analysis.h -> /pytorch/torch/csrc/jit/passes/requires_grad_analysis.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/clear_profiling.cpp -> /pytorch/torch/csrc/jit/passes/clear_profiling.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.h -> /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.h -> /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/prepack_folding.cpp -> /pytorch/torch/csrc/jit/passes/prepack_folding.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/peephole_list_idioms.h -> /pytorch/torch/csrc/jit/passes/peephole_list_idioms.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/onnx.h -> /pytorch/torch/csrc/jit/passes/onnx.h [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/frozen_linear_folding.cpp -> /pytorch/torch/csrc/jit/passes/frozen_linear_folding.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/lower_grad_of.cpp -> /pytorch/torch/csrc/jit/passes/lower_grad_of.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/erase_number_types.cpp -> /pytorch/torch/csrc/jit/passes/erase_number_types.cpp [skipped, already hipified] +#10 33.66 /pytorch/torch/csrc/jit/passes/fuse_linear.cpp -> /pytorch/torch/csrc/jit/passes/fuse_linear.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/shape_analysis.cpp -> /pytorch/torch/csrc/jit/passes/shape_analysis.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/loop_unrolling.cpp -> /pytorch/torch/csrc/jit/passes/loop_unrolling.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/fuse_linear.h -> /pytorch/torch/csrc/jit/passes/fuse_linear.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/lower_tuples.cpp -> /pytorch/torch/csrc/jit/passes/lower_tuples.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/decompose_ops.cpp -> /pytorch/torch/csrc/jit/passes/decompose_ops.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/peephole_non_tensor.h -> /pytorch/torch/csrc/jit/passes/peephole_non_tensor.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/shape_analysis.h -> /pytorch/torch/csrc/jit/passes/shape_analysis.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/remove_inplace_ops.h -> /pytorch/torch/csrc/jit/passes/remove_inplace_ops.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/decompose_ops.h -> /pytorch/torch/csrc/jit/passes/decompose_ops.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp -> /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/bailout_graph.h -> /pytorch/torch/csrc/jit/passes/bailout_graph.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/canonicalize.h -> /pytorch/torch/csrc/jit/passes/canonicalize.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/inplace_check.cpp -> /pytorch/torch/csrc/jit/passes/inplace_check.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/inline_fork_wait.h -> /pytorch/torch/csrc/jit/passes/inline_fork_wait.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/value_refinement_utils.h -> /pytorch/torch/csrc/jit/passes/value_refinement_utils.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/prepack_folding.h -> /pytorch/torch/csrc/jit/passes/prepack_folding.h [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/dead_code_elimination.cpp -> /pytorch/torch/csrc/jit/passes/dead_code_elimination.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.cpp [skipped, already hipified] +#10 33.67 /pytorch/torch/csrc/jit/passes/constant_pooling.h -> /pytorch/torch/csrc/jit/passes/constant_pooling.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/constant_propagation.cpp -> /pytorch/torch/csrc/jit/passes/constant_propagation.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/dtype_analysis.cpp -> /pytorch/torch/csrc/jit/passes/dtype_analysis.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/fuse_relu.cpp -> /pytorch/torch/csrc/jit/passes/fuse_relu.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/freeze_module.cpp -> /pytorch/torch/csrc/jit/passes/freeze_module.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/mobile_optimizer_type.h -> /pytorch/torch/csrc/jit/passes/mobile_optimizer_type.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/clear_undefinedness.cpp -> /pytorch/torch/csrc/jit/passes/clear_undefinedness.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/remove_expands.h -> /pytorch/torch/csrc/jit/passes/remove_expands.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/annotate_warns.h -> /pytorch/torch/csrc/jit/passes/annotate_warns.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp -> /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/normalize_ops.cpp -> /pytorch/torch/csrc/jit/passes/normalize_ops.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.h -> /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/subgraph_rewrite.h -> /pytorch/torch/csrc/jit/passes/subgraph_rewrite.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.cpp -> /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/device_type_analysis.cpp -> /pytorch/torch/csrc/jit/passes/device_type_analysis.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.cpp -> /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/autocast.cpp -> /pytorch/torch/csrc/jit/passes/autocast.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/check_strict_fusion.cpp -> /pytorch/torch/csrc/jit/passes/check_strict_fusion.cpp [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/integer_value_refinement.h -> /pytorch/torch/csrc/jit/passes/integer_value_refinement.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/peephole.h -> /pytorch/torch/csrc/jit/passes/peephole.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/loop_unrolling.h -> /pytorch/torch/csrc/jit/passes/loop_unrolling.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/fold_linear_bn.h -> /pytorch/torch/csrc/jit/passes/fold_linear_bn.h [skipped, already hipified] +#10 33.68 /pytorch/torch/csrc/jit/passes/onednn_graph_fuser.h -> /pytorch/torch/csrc/jit/passes/onednn_graph_fuser.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp -> /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/requires_grad_analysis.cpp -> /pytorch/torch/csrc/jit/passes/requires_grad_analysis.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/subgraph_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/subgraph_rewrite.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/insert_guards.cpp -> /pytorch/torch/csrc/jit/passes/insert_guards.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/lower_graph.h -> /pytorch/torch/csrc/jit/passes/lower_graph.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.h -> /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/lower_grad_of.h -> /pytorch/torch/csrc/jit/passes/lower_grad_of.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/guard_elimination.cpp -> /pytorch/torch/csrc/jit/passes/guard_elimination.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/inplace_check.h -> /pytorch/torch/csrc/jit/passes/inplace_check.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/erase_number_types.h -> /pytorch/torch/csrc/jit/passes/erase_number_types.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/inline_fork_wait.cpp -> /pytorch/torch/csrc/jit/passes/inline_fork_wait.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/remove_mutation.h -> /pytorch/torch/csrc/jit/passes/remove_mutation.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/fold_linear_bn.cpp -> /pytorch/torch/csrc/jit/passes/fold_linear_bn.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.h -> /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.h [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/constant_pooling.cpp -> /pytorch/torch/csrc/jit/passes/constant_pooling.cpp [skipped, already hipified] +#10 33.69 /pytorch/torch/csrc/jit/passes/refine_tuple_types.h -> /pytorch/torch/csrc/jit/passes/refine_tuple_types.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.cpp -> /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/dead_code_elimination.h -> /pytorch/torch/csrc/jit/passes/dead_code_elimination.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/peephole_non_tensor.cpp -> /pytorch/torch/csrc/jit/passes/peephole_non_tensor.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/check_strict_fusion.h -> /pytorch/torch/csrc/jit/passes/check_strict_fusion.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.cpp -> /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp -> /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.h -> /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/refine_tuple_types.cpp -> /pytorch/torch/csrc/jit/passes/refine_tuple_types.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.cpp -> /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/frozen_concat_linear.cpp -> /pytorch/torch/csrc/jit/passes/frozen_concat_linear.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/batch_mm.h -> /pytorch/torch/csrc/jit/passes/batch_mm.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.h -> /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/inline_forked_closures.h -> /pytorch/torch/csrc/jit/passes/inline_forked_closures.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/liveness.h -> /pytorch/torch/csrc/jit/passes/liveness.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/variadic_ops.h -> /pytorch/torch/csrc/jit/passes/variadic_ops.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/peephole.cpp -> /pytorch/torch/csrc/jit/passes/peephole.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/canonicalize.cpp -> /pytorch/torch/csrc/jit/passes/canonicalize.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/specialize_autogradzero.h -> /pytorch/torch/csrc/jit/passes/specialize_autogradzero.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/add_if_then_else.h -> /pytorch/torch/csrc/jit/passes/add_if_then_else.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.h -> /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/fold_conv_bn.h -> /pytorch/torch/csrc/jit/passes/fold_conv_bn.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/pass_manager.h -> /pytorch/torch/csrc/jit/passes/pass_manager.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/annotate_warns.cpp -> /pytorch/torch/csrc/jit/passes/annotate_warns.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/inline_forked_closures.cpp -> /pytorch/torch/csrc/jit/passes/inline_forked_closures.cpp [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.h [skipped, already hipified] +#10 33.70 /pytorch/torch/csrc/jit/passes/add_if_then_else.cpp -> /pytorch/torch/csrc/jit/passes/add_if_then_else.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp -> /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/batch_mm.cpp -> /pytorch/torch/csrc/jit/passes/batch_mm.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/normalize_ops.h -> /pytorch/torch/csrc/jit/passes/normalize_ops.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/inliner.cpp -> /pytorch/torch/csrc/jit/passes/inliner.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/constant_propagation.h -> /pytorch/torch/csrc/jit/passes/constant_propagation.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/create_functional_graphs.cpp -> /pytorch/torch/csrc/jit/passes/create_functional_graphs.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/fold_conv_bn.cpp -> /pytorch/torch/csrc/jit/passes/fold_conv_bn.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/freeze_module.h -> /pytorch/torch/csrc/jit/passes/freeze_module.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/restore_mutation.cpp -> /pytorch/torch/csrc/jit/passes/restore_mutation.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/frozen_linear_folding.h -> /pytorch/torch/csrc/jit/passes/frozen_linear_folding.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/restore_mutation.h -> /pytorch/torch/csrc/jit/passes/restore_mutation.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.h -> /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/frozen_conv_folding.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_folding.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/insert_guards.h -> /pytorch/torch/csrc/jit/passes/insert_guards.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/dtype_analysis.h -> /pytorch/torch/csrc/jit/passes/dtype_analysis.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.cpp -> /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.cpp -> /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/bailout_graph.cpp -> /pytorch/torch/csrc/jit/passes/bailout_graph.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/lower_tuples.h -> /pytorch/torch/csrc/jit/passes/lower_tuples.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/integer_value_refinement.cpp -> /pytorch/torch/csrc/jit/passes/integer_value_refinement.cpp [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/frozen_concat_linear.h -> /pytorch/torch/csrc/jit/passes/frozen_concat_linear.h [skipped, already hipified] +#10 33.71 /pytorch/torch/csrc/jit/passes/graph_fuser.h -> /pytorch/torch/csrc/jit/passes/graph_fuser.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/eliminate_no_ops.cpp -> /pytorch/torch/csrc/jit/passes/eliminate_no_ops.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp [ok] +#10 33.72 /pytorch/torch/csrc/jit/passes/eliminate_no_ops.h -> /pytorch/torch/csrc/jit/passes/eliminate_no_ops.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/concat_opt.h -> /pytorch/torch/csrc/jit/passes/concat_opt.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/device_type_analysis.h -> /pytorch/torch/csrc/jit/passes/device_type_analysis.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/remove_mutation.cpp -> /pytorch/torch/csrc/jit/passes/remove_mutation.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.h -> /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/frozen_conv_folding.h -> /pytorch/torch/csrc/jit/passes/frozen_conv_folding.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/metal_rewrite.h -> /pytorch/torch/csrc/jit/passes/metal_rewrite.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/remove_exceptions.h -> /pytorch/torch/csrc/jit/passes/remove_exceptions.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/remove_exceptions.cpp -> /pytorch/torch/csrc/jit/passes/remove_exceptions.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/autocast.h -> /pytorch/torch/csrc/jit/passes/autocast.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/clear_undefinedness.h -> /pytorch/torch/csrc/jit/passes/clear_undefinedness.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/value_refinement_utils.cpp -> /pytorch/torch/csrc/jit/passes/value_refinement_utils.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp -> /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.cpp -> /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.cpp [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/create_functional_graphs.h -> /pytorch/torch/csrc/jit/passes/create_functional_graphs.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/vulkan_rewrite.h -> /pytorch/torch/csrc/jit/passes/vulkan_rewrite.h [skipped, already hipified] +#10 33.72 /pytorch/torch/csrc/jit/passes/variadic_ops.cpp -> /pytorch/torch/csrc/jit/passes/variadic_ops.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/graph_fuser.cpp -> /pytorch/torch/csrc/jit/passes/graph_fuser.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion_cuda.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion_cuda.cpp [ok] +#10 33.73 /pytorch/torch/csrc/jit/passes/remove_inplace_ops.cpp -> /pytorch/torch/csrc/jit/passes/remove_inplace_ops.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/inliner.h -> /pytorch/torch/csrc/jit/passes/inliner.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/remove_dropout.h -> /pytorch/torch/csrc/jit/passes/remove_dropout.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/function_substitution.cpp -> /pytorch/torch/csrc/jit/passes/onnx/function_substitution.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.h -> /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.cpp -> /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/naming.cpp -> /pytorch/torch/csrc/jit/passes/onnx/naming.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp -> /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.cpp -> /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/constant_fold.h -> /pytorch/torch/csrc/jit/passes/onnx/constant_fold.h [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/constant_fold.cpp -> /pytorch/torch/csrc/jit/passes/onnx/constant_fold.cpp [skipped, already hipified] +#10 33.73 /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.h [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp -> /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.cpp -> /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.cpp [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/helper.cpp -> /pytorch/torch/csrc/jit/passes/onnx/helper.cpp [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/naming.h -> /pytorch/torch/csrc/jit/passes/onnx/naming.h [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.cpp -> /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.cpp [skipped, already hipified] +#10 33.74 /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.cpp -> /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.cpp [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/peephole.h -> /pytorch/torch/csrc/jit/passes/onnx/peephole.h [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.h -> /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.h [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.h [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/peephole.cpp -> /pytorch/torch/csrc/jit/passes/onnx/peephole.cpp [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/onnx_log.cpp -> /pytorch/torch/csrc/jit/passes/onnx/onnx_log.cpp [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/function_extraction.cpp -> /pytorch/torch/csrc/jit/passes/onnx/function_extraction.cpp [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/constant_map.h -> /pytorch/torch/csrc/jit/passes/onnx/constant_map.h [skipped, already hipified] +#10 33.75 /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp -> /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/helper.h -> /pytorch/torch/csrc/jit/passes/onnx/helper.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/function_substitution.h -> /pytorch/torch/csrc/jit/passes/onnx/function_substitution.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp -> /pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/onnx_log.h -> /pytorch/torch/csrc/jit/passes/onnx/onnx_log.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/function_extraction.h -> /pytorch/torch/csrc/jit/passes/onnx/function_extraction.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.h -> /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.cpp -> /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.h -> /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.h -> /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.h [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/utils/op_registry.cpp -> /pytorch/torch/csrc/jit/passes/utils/op_registry.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/utils/memory_dag.cpp -> /pytorch/torch/csrc/jit/passes/utils/memory_dag.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/utils/optimization_utils.cpp -> /pytorch/torch/csrc/jit/passes/utils/optimization_utils.cpp [skipped, already hipified] +#10 33.76 /pytorch/torch/csrc/jit/passes/utils/op_registry.h -> /pytorch/torch/csrc/jit/passes/utils/op_registry.h [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/utils/memory_dag.h -> /pytorch/torch/csrc/jit/passes/utils/memory_dag.h [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.cpp -> /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.cpp [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.cpp -> /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.cpp [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/utils/optimization_utils.h -> /pytorch/torch/csrc/jit/passes/utils/optimization_utils.h [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp -> /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/quantization/quantization_type.h -> /pytorch/torch/csrc/jit/passes/quantization/quantization_type.h [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp -> /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h -> /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/quantization/helper.cpp -> /pytorch/torch/csrc/jit/passes/quantization/helper.cpp [skipped, already hipified] +#10 33.77 /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp -> /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.cpp -> /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.cpp [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.h -> /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.h [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.h [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/finalize.h -> /pytorch/torch/csrc/jit/passes/quantization/finalize.h [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/insert_observers.h -> /pytorch/torch/csrc/jit/passes/quantization/insert_observers.h [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/insert_observers.cpp -> /pytorch/torch/csrc/jit/passes/quantization/insert_observers.cpp [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/finalize.cpp -> /pytorch/torch/csrc/jit/passes/quantization/finalize.cpp [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/helper.h -> /pytorch/torch/csrc/jit/passes/quantization/helper.h [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.h [skipped, already hipified] +#10 33.78 /pytorch/torch/csrc/jit/passes/quantization/quantization_type.cpp -> /pytorch/torch/csrc/jit/passes/quantization/quantization_type.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/passes/quantization/quantization_patterns.h -> /pytorch/torch/csrc/jit/passes/quantization/quantization_patterns.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.cpp -> /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/cuda/interface.h -> /pytorch/torch/csrc/jit/codegen/cuda/interface.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/cuda/interface.cpp -> /pytorch/torch/csrc/jit/codegen/cuda/interface.cpp [ok] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/interface.h -> /pytorch/torch/csrc/jit/codegen/onednn/interface.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/register_interface.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/register_interface.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.h -> /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.h -> /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/interface.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/interface.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/operator.h -> /pytorch/torch/csrc/jit/codegen/onednn/operator.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/kernel.h -> /pytorch/torch/csrc/jit/codegen/onednn/kernel.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.h -> /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/kernel.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/kernel.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.h -> /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.h -> /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.h -> /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.h -> /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/interface.h -> /pytorch/torch/csrc/jit/codegen/fuser/interface.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/tensor_info.h -> /pytorch/torch/csrc/jit/codegen/fuser/tensor_info.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/kernel_spec.h -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_spec.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/codegen.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/codegen.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/fallback.h -> /pytorch/torch/csrc/jit/codegen/fuser/fallback.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/compiler.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/compiler.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/interface.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/interface.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/partition_desc.h -> /pytorch/torch/csrc/jit/codegen/fuser/partition_desc.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.h -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/codegen.h -> /pytorch/torch/csrc/jit/codegen/fuser/codegen.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/fallback.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/fallback.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/tensor_desc.h -> /pytorch/torch/csrc/jit/codegen/fuser/tensor_desc.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/arg_spec.h -> /pytorch/torch/csrc/jit/codegen/fuser/arg_spec.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/compiler.h -> /pytorch/torch/csrc/jit/codegen/fuser/compiler.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/fused_kernel.h [ok] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/executor.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/executor.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/executor.h -> /pytorch/torch/csrc/jit/codegen/fuser/executor.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.cpp [ok] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h [ok] +#10 33.80 /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/temp_file.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/python_arg_flatten.h -> /pytorch/torch/csrc/jit/python/python_arg_flatten.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/script_init.cpp -> /pytorch/torch/csrc/jit/python/script_init.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/python_dict.cpp -> /pytorch/torch/csrc/jit/python/python_dict.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/python_ir.h -> /pytorch/torch/csrc/jit/python/python_ir.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/init.h -> /pytorch/torch/csrc/jit/python/init.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/python_list.cpp -> /pytorch/torch/csrc/jit/python/python_list.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/python_interpreter.cpp -> /pytorch/torch/csrc/jit/python/python_interpreter.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/script_init.h -> /pytorch/torch/csrc/jit/python/script_init.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/jit/python/pybind.h -> /pytorch/torch/csrc/jit/python/pybind.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/update_graph_executor_opt.cpp -> /pytorch/torch/csrc/jit/python/update_graph_executor_opt.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_tree_views.h -> /pytorch/torch/csrc/jit/python/python_tree_views.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/module_python.h -> /pytorch/torch/csrc/jit/python/module_python.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_ivalue.h -> /pytorch/torch/csrc/jit/python/python_ivalue.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_tracer.h -> /pytorch/torch/csrc/jit/python/python_tracer.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_dict.h -> /pytorch/torch/csrc/jit/python/python_dict.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/pybind_utils.h -> /pytorch/torch/csrc/jit/python/pybind_utils.h [ok] +#10 33.82 /pytorch/torch/csrc/jit/python/python_custom_class.h -> /pytorch/torch/csrc/jit/python/python_custom_class.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/update_graph_executor_opt.h -> /pytorch/torch/csrc/jit/python/update_graph_executor_opt.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_ir.cpp -> /pytorch/torch/csrc/jit/python/python_ir.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_tracer.cpp -> /pytorch/torch/csrc/jit/python/python_tracer.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/jit/python/python_arg_flatten.cpp -> /pytorch/torch/csrc/jit/python/python_arg_flatten.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/jit/python/python_sugared_value.cpp -> /pytorch/torch/csrc/jit/python/python_sugared_value.cpp [ok] +#10 33.83 /pytorch/torch/csrc/jit/python/python_tree_views.cpp -> /pytorch/torch/csrc/jit/python/python_tree_views.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/jit/python/python_list.h -> /pytorch/torch/csrc/jit/python/python_list.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/jit/python/pybind_utils.cpp -> /pytorch/torch/csrc/jit/python/pybind_utils.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/jit/python/python_custom_class.cpp -> /pytorch/torch/csrc/jit/python/python_custom_class.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/jit/python/python_sugared_value.h -> /pytorch/torch/csrc/jit/python/python_sugared_value.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/jit/python/init.cpp -> /pytorch/torch/csrc/jit/python/init.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/autograd/jit_decomp_interface.cpp -> /pytorch/torch/csrc/autograd/jit_decomp_interface.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/autograd/input_buffer.cpp -> /pytorch/torch/csrc/autograd/input_buffer.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/autograd/forward_grad.cpp -> /pytorch/torch/csrc/autograd/forward_grad.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/autograd/record_function_ops.cpp -> /pytorch/torch/csrc/autograd/record_function_ops.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/FunctionsManual.cpp -> /pytorch/torch/csrc/autograd/FunctionsManual.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/VariableTypeUtils.h -> /pytorch/torch/csrc/autograd/VariableTypeUtils.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/record_function_ops.h -> /pytorch/torch/csrc/autograd/record_function_ops.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/python_engine.cpp -> /pytorch/torch/csrc/autograd/python_engine.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/profiler_python.h -> /pytorch/torch/csrc/autograd/profiler_python.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/edge.h -> /pytorch/torch/csrc/autograd/edge.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/engine.cpp -> /pytorch/torch/csrc/autograd/engine.cpp [ok] +#10 33.86 /pytorch/torch/csrc/autograd/python_anomaly_mode.cpp -> /pytorch/torch/csrc/autograd/python_anomaly_mode.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/python_sparse_functions.h -> /pytorch/torch/csrc/autograd/python_sparse_functions.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/python_saved_variable_hooks.cpp -> /pytorch/torch/csrc/autograd/python_saved_variable_hooks.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/autograd/function_hook.h -> /pytorch/torch/csrc/autograd/function_hook.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/variable.h -> /pytorch/torch/csrc/autograd/variable.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/input_buffer.h -> /pytorch/torch/csrc/autograd/input_buffer.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/python_return_types.h -> /pytorch/torch/csrc/autograd/python_return_types.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/graph_task.h -> /pytorch/torch/csrc/autograd/graph_task.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/cpp_hook.cpp -> /pytorch/torch/csrc/autograd/cpp_hook.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/python_legacy_variable.cpp -> /pytorch/torch/csrc/autograd/python_legacy_variable.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/python_enum_tag.h -> /pytorch/torch/csrc/autograd/python_enum_tag.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/python_nested_functions_manual.cpp -> /pytorch/torch/csrc/autograd/python_nested_functions_manual.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/autograd_meta.cpp -> /pytorch/torch/csrc/autograd/autograd_meta.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/saved_variable.h -> /pytorch/torch/csrc/autograd/saved_variable.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/python_cpp_function.h -> /pytorch/torch/csrc/autograd/python_cpp_function.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/python_fft_functions.h -> /pytorch/torch/csrc/autograd/python_fft_functions.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/profiler.h -> /pytorch/torch/csrc/autograd/profiler.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/engine.h -> /pytorch/torch/csrc/autograd/engine.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/forward_grad.h -> /pytorch/torch/csrc/autograd/forward_grad.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/autograd/variable.cpp -> /pytorch/torch/csrc/autograd/variable.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/python_hook.cpp -> /pytorch/torch/csrc/autograd/python_hook.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/autograd.cpp -> /pytorch/torch/csrc/autograd/autograd.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/python_anomaly_mode.h -> /pytorch/torch/csrc/autograd/python_anomaly_mode.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/symbolic.h -> /pytorch/torch/csrc/autograd/symbolic.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/anomaly_mode.cpp -> /pytorch/torch/csrc/autograd/anomaly_mode.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/python_variable_indexing.cpp -> /pytorch/torch/csrc/autograd/python_variable_indexing.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/python_function.cpp -> /pytorch/torch/csrc/autograd/python_function.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.cpp -> /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/autograd.h -> /pytorch/torch/csrc/autograd/autograd.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/autograd/function.h -> /pytorch/torch/csrc/autograd/function.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/python_function.h -> /pytorch/torch/csrc/autograd/python_function.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/python_engine.h -> /pytorch/torch/csrc/autograd/python_engine.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/python_torch_functions_manual.cpp -> /pytorch/torch/csrc/autograd/python_torch_functions_manual.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/anomaly_mode.h -> /pytorch/torch/csrc/autograd/anomaly_mode.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/custom_function.h -> /pytorch/torch/csrc/autograd/custom_function.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/python_hook.h -> /pytorch/torch/csrc/autograd/python_hook.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/python_cpp_function.cpp -> /pytorch/torch/csrc/autograd/python_cpp_function.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/profiler_python.cpp -> /pytorch/torch/csrc/autograd/profiler_python.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/autograd/VariableTypeManual.cpp -> /pytorch/torch/csrc/autograd/VariableTypeManual.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/FunctionsManual.h -> /pytorch/torch/csrc/autograd/FunctionsManual.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/grad_mode.h -> /pytorch/torch/csrc/autograd/grad_mode.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/profiler_legacy.h -> /pytorch/torch/csrc/autograd/profiler_legacy.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/saved_variable_hooks.h -> /pytorch/torch/csrc/autograd/saved_variable_hooks.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/profiler_legacy.cpp -> /pytorch/torch/csrc/autograd/profiler_legacy.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/jit_decomp_interface.h -> /pytorch/torch/csrc/autograd/jit_decomp_interface.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/input_metadata.h -> /pytorch/torch/csrc/autograd/input_metadata.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/TraceTypeManual.cpp -> /pytorch/torch/csrc/autograd/TraceTypeManual.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/python_nested_functions.h -> /pytorch/torch/csrc/autograd/python_nested_functions.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/python_variable.cpp -> /pytorch/torch/csrc/autograd/python_variable.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/autograd/python_torch_functions.h -> /pytorch/torch/csrc/autograd/python_torch_functions.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_saved_variable_hooks.h -> /pytorch/torch/csrc/autograd/python_saved_variable_hooks.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_special_functions.h -> /pytorch/torch/csrc/autograd/python_special_functions.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/cpp_hook.h -> /pytorch/torch/csrc/autograd/cpp_hook.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/profiler_kineto.cpp -> /pytorch/torch/csrc/autograd/profiler_kineto.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_variable_indexing.h -> /pytorch/torch/csrc/autograd/python_variable_indexing.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_autograd.h -> /pytorch/torch/csrc/autograd/python_autograd.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.h -> /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/function.cpp -> /pytorch/torch/csrc/autograd/function.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/profiler_kineto.h -> /pytorch/torch/csrc/autograd/profiler_kineto.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_legacy_variable.h -> /pytorch/torch/csrc/autograd/python_legacy_variable.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_nn_functions.h -> /pytorch/torch/csrc/autograd/python_nn_functions.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/custom_function.cpp -> /pytorch/torch/csrc/autograd/custom_function.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_linalg_functions.h -> /pytorch/torch/csrc/autograd/python_linalg_functions.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/saved_variable.cpp -> /pytorch/torch/csrc/autograd/saved_variable.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/init.cpp -> /pytorch/torch/csrc/autograd/init.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/InferenceMode.h -> /pytorch/torch/csrc/autograd/InferenceMode.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/python_variable.h -> /pytorch/torch/csrc/autograd/python_variable.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/autograd/utils/error_messages.h -> /pytorch/torch/csrc/autograd/utils/error_messages.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/utils/wrap_outputs.h -> /pytorch/torch/csrc/autograd/utils/wrap_outputs.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/utils/python_arg_parsing.h -> /pytorch/torch/csrc/autograd/utils/python_arg_parsing.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/utils/warnings.h -> /pytorch/torch/csrc/autograd/utils/warnings.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/utils/grad_layout_contract.h -> /pytorch/torch/csrc/autograd/utils/grad_layout_contract.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/utils/warnings.cpp -> /pytorch/torch/csrc/autograd/utils/warnings.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/utils/lambda_post_hook.h -> /pytorch/torch/csrc/autograd/utils/lambda_post_hook.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/tensor.h -> /pytorch/torch/csrc/autograd/functions/tensor.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/utils.h -> /pytorch/torch/csrc/autograd/functions/utils.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/accumulate_grad.h -> /pytorch/torch/csrc/autograd/functions/accumulate_grad.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/tensor.cpp -> /pytorch/torch/csrc/autograd/functions/tensor.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/pybind.h -> /pytorch/torch/csrc/autograd/functions/pybind.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/comm.h -> /pytorch/torch/csrc/autograd/functions/comm.h [ok] +#10 33.92 /pytorch/torch/csrc/autograd/functions/utils.cpp -> /pytorch/torch/csrc/autograd/functions/utils.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/comm.cpp -> /pytorch/torch/csrc/autograd/functions/comm.cpp [ok] +#10 33.92 /pytorch/torch/csrc/autograd/functions/basic_ops.h -> /pytorch/torch/csrc/autograd/functions/basic_ops.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/basic_ops.cpp -> /pytorch/torch/csrc/autograd/functions/basic_ops.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/accumulate_grad.cpp -> /pytorch/torch/csrc/autograd/functions/accumulate_grad.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/autograd/functions/init.cpp -> /pytorch/torch/csrc/autograd/functions/init.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/mps/Module.cpp -> /pytorch/torch/csrc/mps/Module.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/mps/Module.h -> /pytorch/torch/csrc/mps/Module.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/distributed/c10d/TCPStore.cpp -> /pytorch/torch/csrc/distributed/c10d/TCPStore.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/distributed/c10d/Store.hpp -> /pytorch/torch/csrc/distributed/c10d/Store.hpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/socket.cpp -> /pytorch/torch/csrc/distributed/c10d/socket.cpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/Store.cpp -> /pytorch/torch/csrc/distributed/c10d/Store.cpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/UCCUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCUtils.hpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/HashStore.hpp -> /pytorch/torch/csrc/distributed/c10d/HashStore.hpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/UnixSockUtils.hpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/reducer.cpp -> /pytorch/torch/csrc/distributed/c10d/reducer.cpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/c10d.h -> /pytorch/torch/csrc/distributed/c10d/c10d.h [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/logging.cpp -> /pytorch/torch/csrc/distributed/c10d/logging.cpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/TraceUtils.h -> /pytorch/torch/csrc/distributed/c10d/TraceUtils.h [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/TCPStore.hpp -> /pytorch/torch/csrc/distributed/c10d/TCPStore.hpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/NCCLUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/NCCLUtils.hpp [ok] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp [ok] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.hpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/distributed/c10d/debug.h -> /pytorch/torch/csrc/distributed/c10d/debug.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/UCCUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/UCCUtils.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/sequence_num.cpp -> /pytorch/torch/csrc/distributed/c10d/sequence_num.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/Work.cpp -> /pytorch/torch/csrc/distributed/c10d/Work.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/Ops.cpp -> /pytorch/torch/csrc/distributed/c10d/Ops.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp [ok] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/comm.cpp -> /pytorch/torch/csrc/distributed/c10d/comm.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/HashStore.cpp -> /pytorch/torch/csrc/distributed/c10d/HashStore.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.hpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/UCCTracing.cpp -> /pytorch/torch/csrc/distributed/c10d/UCCTracing.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/UCCTracing.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCTracing.hpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/Work.hpp -> /pytorch/torch/csrc/distributed/c10d/Work.hpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/exception.cpp -> /pytorch/torch/csrc/distributed/c10d/exception.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/FileStore.hpp -> /pytorch/torch/csrc/distributed/c10d/FileStore.hpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/comm.hpp -> /pytorch/torch/csrc/distributed/c10d/comm.hpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/reducer.hpp -> /pytorch/torch/csrc/distributed/c10d/reducer.hpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/distributed/c10d/PrefixStore.hpp -> /pytorch/torch/csrc/distributed/c10d/PrefixStore.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp [ok] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> /pytorch/torch/csrc/distributed/c10d/PyProcessGroup.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/ProcessGroup.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroup.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/ProcessGroup.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroup.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/logger.hpp -> /pytorch/torch/csrc/distributed/c10d/logger.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/FileStore.cpp -> /pytorch/torch/csrc/distributed/c10d/FileStore.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/Backend.hpp -> /pytorch/torch/csrc/distributed/c10d/Backend.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/sequence_num.hpp -> /pytorch/torch/csrc/distributed/c10d/sequence_num.hpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/distributed/c10d/error.h -> /pytorch/torch/csrc/distributed/c10d/error.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.cpp [ok] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/python_comm_hook.h -> /pytorch/torch/csrc/distributed/c10d/python_comm_hook.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/logging.h -> /pytorch/torch/csrc/distributed/c10d/logging.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/exception.h -> /pytorch/torch/csrc/distributed/c10d/exception.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/WinSockUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/WinSockUtils.hpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/debug.cpp -> /pytorch/torch/csrc/distributed/c10d/debug.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/Types.hpp -> /pytorch/torch/csrc/distributed/c10d/Types.hpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/reducer_cuda.cpp -> /pytorch/torch/csrc/distributed/c10d/reducer_cuda.cpp [ok] +#10 33.97 /pytorch/torch/csrc/distributed/c10d/PrefixStore.cpp -> /pytorch/torch/csrc/distributed/c10d/PrefixStore.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp -> /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.cpp -> /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/NCCLUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/NCCLUtils.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/socket.h -> /pytorch/torch/csrc/distributed/c10d/socket.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/reducer_timer.hpp -> /pytorch/torch/csrc/distributed/c10d/reducer_timer.hpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/UCCForNCCL.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCForNCCL.hpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/python_comm_hook.cpp -> /pytorch/torch/csrc/distributed/c10d/python_comm_hook.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/distributed/c10d/Utils.hpp -> /pytorch/torch/csrc/distributed/c10d/Utils.hpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/init.cpp -> /pytorch/torch/csrc/distributed/c10d/init.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/Backend.cpp -> /pytorch/torch/csrc/distributed/c10d/Backend.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/logger.cpp -> /pytorch/torch/csrc/distributed/c10d/logger.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/Utils.cpp -> /pytorch/torch/csrc/distributed/c10d/Utils.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/quantization/quantization.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_utils.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/quantization/quantization.cpp -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.cu -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.cu [ok] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/utils.h -> /pytorch/torch/csrc/distributed/autograd/utils.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/utils.cpp -> /pytorch/torch/csrc/distributed/autograd/utils.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/autograd.cpp -> /pytorch/torch/csrc/distributed/autograd/autograd.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/autograd.h -> /pytorch/torch/csrc/distributed/autograd/autograd.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/python_autograd.h -> /pytorch/torch/csrc/distributed/autograd/python_autograd.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/init.cpp -> /pytorch/torch/csrc/distributed/autograd/init.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp -> /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp -> /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/context/context.h -> /pytorch/torch/csrc/distributed/autograd/context/context.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/context/container.h -> /pytorch/torch/csrc/distributed/autograd/context/container.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/context/container.cpp -> /pytorch/torch/csrc/distributed/autograd/context/container.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/distributed/autograd/context/context.cpp -> /pytorch/torch/csrc/distributed/autograd/context/context.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.cpp -> /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.h -> /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/rpc_command_base.h -> /pytorch/torch/csrc/distributed/rpc/rpc_command_base.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/utils.h -> /pytorch/torch/csrc/distributed/rpc/utils.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/rpc_agent.h -> /pytorch/torch/csrc/distributed/rpc/rpc_agent.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/request_callback.h -> /pytorch/torch/csrc/distributed/rpc/request_callback.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/script_call.h -> /pytorch/torch/csrc/distributed/rpc/script_call.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/request_callback_impl.h -> /pytorch/torch/csrc/distributed/rpc/request_callback_impl.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.h -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/rref_proto.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_proto.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/rpc_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/rpc_agent.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/script_call.cpp -> /pytorch/torch/csrc/distributed/rpc/script_call.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/request_callback_impl.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback_impl.cpp [ok] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.h -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/torchscript_functions.h -> /pytorch/torch/csrc/distributed/rpc/torchscript_functions.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/agent_utils.h -> /pytorch/torch/csrc/distributed/rpc/agent_utils.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/utils.cpp -> /pytorch/torch/csrc/distributed/rpc/utils.cpp [ok] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/request_callback.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/types.h -> /pytorch/torch/csrc/distributed/rpc/types.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/python_resp.cpp -> /pytorch/torch/csrc/distributed/rpc/python_resp.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/rref_proto.h -> /pytorch/torch/csrc/distributed/rpc/rref_proto.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.h -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/python_call.h -> /pytorch/torch/csrc/distributed/rpc/python_call.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.h -> /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/python_call.cpp -> /pytorch/torch/csrc/distributed/rpc/python_call.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/rref_context.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_context.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/distributed/rpc/tensorpipe_cuda.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_cuda.cpp [ok] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.cpp [ok] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/script_resp.h -> /pytorch/torch/csrc/distributed/rpc/script_resp.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/python_functions.h -> /pytorch/torch/csrc/distributed/rpc/python_functions.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/python_resp.h -> /pytorch/torch/csrc/distributed/rpc/python_resp.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/py_rref.cpp -> /pytorch/torch/csrc/distributed/rpc/py_rref.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.cpp -> /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/message.h -> /pytorch/torch/csrc/distributed/rpc/message.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/script_resp.cpp -> /pytorch/torch/csrc/distributed/rpc/script_resp.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/script_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/script_remote_call.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/python_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/python_remote_call.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/torchscript_functions.cpp -> /pytorch/torch/csrc/distributed/rpc/torchscript_functions.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/message.cpp -> /pytorch/torch/csrc/distributed/rpc/message.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/rref_impl.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_impl.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/py_rref.h -> /pytorch/torch/csrc/distributed/rpc/py_rref.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/python_functions.cpp -> /pytorch/torch/csrc/distributed/rpc/python_functions.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/distributed/rpc/rpc.h -> /pytorch/torch/csrc/distributed/rpc/rpc.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/rref_context.h -> /pytorch/torch/csrc/distributed/rpc/rref_context.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.cpp -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.h -> /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/script_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/script_remote_call.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/types.cpp -> /pytorch/torch/csrc/distributed/rpc/types.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/agent_utils.cpp -> /pytorch/torch/csrc/distributed/rpc/agent_utils.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/init.cpp -> /pytorch/torch/csrc/distributed/rpc/init.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/rref_impl.h -> /pytorch/torch/csrc/distributed/rpc/rref_impl.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/python_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/python_remote_call.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/metrics/registry.cpp -> /pytorch/torch/csrc/distributed/rpc/metrics/registry.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> /pytorch/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp -> /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp -> /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/testing/testing.h -> /pytorch/torch/csrc/distributed/rpc/testing/testing.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/distributed/rpc/testing/init.cpp -> /pytorch/torch/csrc/distributed/rpc/testing/init.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/api/src/serialize.cpp -> /pytorch/torch/csrc/api/src/serialize.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/api/src/jit.cpp -> /pytorch/torch/csrc/api/src/jit.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/enum.cpp -> /pytorch/torch/csrc/api/src/enum.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/cuda.cpp -> /pytorch/torch/csrc/api/src/cuda.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/imethod.cpp -> /pytorch/torch/csrc/api/src/imethod.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/module.cpp -> /pytorch/torch/csrc/api/src/nn/module.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/init.cpp -> /pytorch/torch/csrc/api/src/nn/init.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/vision.cpp -> /pytorch/torch/csrc/api/src/nn/options/vision.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/padding.cpp -> /pytorch/torch/csrc/api/src/nn/options/padding.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/dropout.cpp -> /pytorch/torch/csrc/api/src/nn/options/dropout.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/adaptive.cpp -> /pytorch/torch/csrc/api/src/nn/options/adaptive.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/normalization.cpp -> /pytorch/torch/csrc/api/src/nn/options/normalization.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/instancenorm.cpp -> /pytorch/torch/csrc/api/src/nn/options/instancenorm.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/activation.cpp -> /pytorch/torch/csrc/api/src/nn/options/activation.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/embedding.cpp -> /pytorch/torch/csrc/api/src/nn/options/embedding.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/conv.cpp -> /pytorch/torch/csrc/api/src/nn/options/conv.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/rnn.cpp -> /pytorch/torch/csrc/api/src/nn/options/rnn.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/batchnorm.cpp -> /pytorch/torch/csrc/api/src/nn/options/batchnorm.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/pooling.cpp -> /pytorch/torch/csrc/api/src/nn/options/pooling.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/linear.cpp -> /pytorch/torch/csrc/api/src/nn/options/linear.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/options/transformer.cpp -> /pytorch/torch/csrc/api/src/nn/options/transformer.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/padding.cpp -> /pytorch/torch/csrc/api/src/nn/modules/padding.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/_functions.cpp -> /pytorch/torch/csrc/api/src/nn/modules/_functions.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/dropout.cpp -> /pytorch/torch/csrc/api/src/nn/modules/dropout.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/pixelshuffle.cpp -> /pytorch/torch/csrc/api/src/nn/modules/pixelshuffle.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/adaptive.cpp -> /pytorch/torch/csrc/api/src/nn/modules/adaptive.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/normalization.cpp -> /pytorch/torch/csrc/api/src/nn/modules/normalization.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/instancenorm.cpp -> /pytorch/torch/csrc/api/src/nn/modules/instancenorm.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/upsampling.cpp -> /pytorch/torch/csrc/api/src/nn/modules/upsampling.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/activation.cpp -> /pytorch/torch/csrc/api/src/nn/modules/activation.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/embedding.cpp -> /pytorch/torch/csrc/api/src/nn/modules/embedding.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/api/src/nn/modules/fold.cpp -> /pytorch/torch/csrc/api/src/nn/modules/fold.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/loss.cpp -> /pytorch/torch/csrc/api/src/nn/modules/loss.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/conv.cpp -> /pytorch/torch/csrc/api/src/nn/modules/conv.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/rnn.cpp -> /pytorch/torch/csrc/api/src/nn/modules/rnn.cpp [ok] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/batchnorm.cpp -> /pytorch/torch/csrc/api/src/nn/modules/batchnorm.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/pooling.cpp -> /pytorch/torch/csrc/api/src/nn/modules/pooling.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/linear.cpp -> /pytorch/torch/csrc/api/src/nn/modules/linear.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/transformer.cpp -> /pytorch/torch/csrc/api/src/nn/modules/transformer.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/distance.cpp -> /pytorch/torch/csrc/api/src/nn/modules/distance.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/nn/modules/container/functional.cpp -> /pytorch/torch/csrc/api/src/nn/modules/container/functional.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/data/datasets/mnist.cpp -> /pytorch/torch/csrc/api/src/data/datasets/mnist.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/data/samplers/random.cpp -> /pytorch/torch/csrc/api/src/data/samplers/random.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/data/samplers/stream.cpp -> /pytorch/torch/csrc/api/src/data/samplers/stream.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/data/samplers/sequential.cpp -> /pytorch/torch/csrc/api/src/data/samplers/sequential.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/data/samplers/distributed.cpp -> /pytorch/torch/csrc/api/src/data/samplers/distributed.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/serialize/output-archive.cpp -> /pytorch/torch/csrc/api/src/serialize/output-archive.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/api/src/serialize/input-archive.cpp -> /pytorch/torch/csrc/api/src/serialize/input-archive.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/adam.cpp -> /pytorch/torch/csrc/api/src/optim/adam.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/rmsprop.cpp -> /pytorch/torch/csrc/api/src/optim/rmsprop.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/optimizer.cpp -> /pytorch/torch/csrc/api/src/optim/optimizer.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/serialize.cpp -> /pytorch/torch/csrc/api/src/optim/serialize.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/adagrad.cpp -> /pytorch/torch/csrc/api/src/optim/adagrad.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/adamw.cpp -> /pytorch/torch/csrc/api/src/optim/adamw.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/sgd.cpp -> /pytorch/torch/csrc/api/src/optim/sgd.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/lbfgs.cpp -> /pytorch/torch/csrc/api/src/optim/lbfgs.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp -> /pytorch/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/optim/schedulers/step_lr.cpp -> /pytorch/torch/csrc/api/src/optim/schedulers/step_lr.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/src/python/init.cpp -> /pytorch/torch/csrc/api/src/python/init.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/include/torch/utils.h -> /pytorch/torch/csrc/api/include/torch/utils.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/include/torch/enum.h -> /pytorch/torch/csrc/api/include/torch/enum.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/api/include/torch/imethod.h -> /pytorch/torch/csrc/api/include/torch/imethod.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/special.h -> /pytorch/torch/csrc/api/include/torch/special.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/sparse.h -> /pytorch/torch/csrc/api/include/torch/sparse.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/linalg.h -> /pytorch/torch/csrc/api/include/torch/linalg.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/nested.h -> /pytorch/torch/csrc/api/include/torch/nested.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/types.h -> /pytorch/torch/csrc/api/include/torch/types.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/jit.h -> /pytorch/torch/csrc/api/include/torch/jit.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/ordered_dict.h -> /pytorch/torch/csrc/api/include/torch/ordered_dict.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/autograd.h -> /pytorch/torch/csrc/api/include/torch/autograd.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/all.h -> /pytorch/torch/csrc/api/include/torch/all.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/arg.h -> /pytorch/torch/csrc/api/include/torch/arg.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/optim.h -> /pytorch/torch/csrc/api/include/torch/optim.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/fft.h -> /pytorch/torch/csrc/api/include/torch/fft.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/expanding_array.h -> /pytorch/torch/csrc/api/include/torch/expanding_array.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/data.h -> /pytorch/torch/csrc/api/include/torch/data.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/nn.h -> /pytorch/torch/csrc/api/include/torch/nn.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/cuda.h -> /pytorch/torch/csrc/api/include/torch/cuda.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/torch.h -> /pytorch/torch/csrc/api/include/torch/torch.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/serialize.h -> /pytorch/torch/csrc/api/include/torch/serialize.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/version.h.in -> /pytorch/torch/csrc/api/include/torch/version.h.in [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/python.h -> /pytorch/torch/csrc/api/include/torch/python.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/api/include/torch/nn/pimpl.h -> /pytorch/torch/csrc/api/include/torch/nn/pimpl.h [ok] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/module.h -> /pytorch/torch/csrc/api/include/torch/nn/module.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/utils.h -> /pytorch/torch/csrc/api/include/torch/nn/utils.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options.h -> /pytorch/torch/csrc/api/include/torch/nn/options.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/init.h -> /pytorch/torch/csrc/api/include/torch/nn/init.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/functional.h -> /pytorch/torch/csrc/api/include/torch/nn/functional.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/modules.h -> /pytorch/torch/csrc/api/include/torch/nn/modules.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/pimpl-inl.h -> /pytorch/torch/csrc/api/include/torch/nn/pimpl-inl.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/cloneable.h -> /pytorch/torch/csrc/api/include/torch/nn/cloneable.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/options/conv.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/options/pixelshuffle.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/options/distance.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/transformercoder.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformercoder.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/options/loss.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/vision.h -> /pytorch/torch/csrc/api/include/torch/nn/options/vision.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/options/rnn.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/options/normalization.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/api/include/torch/nn/options/transformer.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformer.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/options/pooling.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/options/linear.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/options/batchnorm.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/options/embedding.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/options/activation.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/options/padding.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformerlayer.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/adaptive.h -> /pytorch/torch/csrc/api/include/torch/nn/options/adaptive.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/options/fold.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/options/instancenorm.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/options/upsampling.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/options/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/options/dropout.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/convert_parameters.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/utils/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/rnn.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/clip_grad.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/functional/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/conv.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/api/include/torch/nn/functional/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/distance.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/loss.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/vision.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/vision.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/normalization.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/pooling.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/linear.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/batchnorm.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/embedding.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/activation.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/padding.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/fold.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/instancenorm.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/upsampling.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/functional/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/dropout.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/api/include/torch/nn/modules/utils.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/utils.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/conv.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/distance.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformercoder.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/loss.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/rnn.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/common.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/common.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/normalization.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/transformer.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformer.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/pooling.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/linear.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/batchnorm.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/embedding.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/activation.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/padding.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformerlayer.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/adaptive.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/adaptive.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/fold.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/instancenorm.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/upsampling.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/dropout.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/_functions.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/_functions.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/functional.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/functional.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_value.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/sequential.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/modulelist.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/named_any.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/moduledict.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> /pytorch/torch/csrc/api/include/torch/nn/parallel/data_parallel.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/dataloader.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/example.h -> /pytorch/torch/csrc/api/include/torch/data/example.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/iterator.h -> /pytorch/torch/csrc/api/include/torch/data/iterator.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/transforms.h -> /pytorch/torch/csrc/api/include/torch/data/transforms.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers.h -> /pytorch/torch/csrc/api/include/torch/data/samplers.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets.h -> /pytorch/torch/csrc/api/include/torch/data/datasets.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/dataloader_options.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader_options.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/worker_exception.h -> /pytorch/torch/csrc/api/include/torch/data/worker_exception.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/map.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/map.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/stateful.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/stateful.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/tensor.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/tensor.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/shared.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/shared.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/base.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/base.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/chunk.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/chunk.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/datasets/mnist.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/mnist.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/random.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/random.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/base.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/base.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/stream.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/stream.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/sequential.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/sequential.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/serialize.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/serialize.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/api/include/torch/data/samplers/distributed.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/distributed.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/dataloader/stateful.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/stateful.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/dataloader/stateless.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/stateless.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/dataloader/base.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/base.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/transforms/stack.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/stack.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/transforms/tensor.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/tensor.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/transforms/base.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/base.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/transforms/collate.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/collate.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/transforms/lambda.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/lambda.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/detail/sequencers.h -> /pytorch/torch/csrc/api/include/torch/data/detail/sequencers.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/detail/queue.h -> /pytorch/torch/csrc/api/include/torch/data/detail/queue.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> /pytorch/torch/csrc/api/include/torch/data/detail/data_shuttle.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/serialize/tensor.h -> /pytorch/torch/csrc/api/include/torch/serialize/tensor.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/serialize/input-archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/input-archive.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/serialize/archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/archive.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/serialize/output-archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/output-archive.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/rmsprop.h -> /pytorch/torch/csrc/api/include/torch/optim/rmsprop.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/sgd.h -> /pytorch/torch/csrc/api/include/torch/optim/sgd.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/optimizer.h -> /pytorch/torch/csrc/api/include/torch/optim/optimizer.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/adagrad.h -> /pytorch/torch/csrc/api/include/torch/optim/adagrad.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/adam.h -> /pytorch/torch/csrc/api/include/torch/optim/adam.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/adamw.h -> /pytorch/torch/csrc/api/include/torch/optim/adamw.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/serialize.h -> /pytorch/torch/csrc/api/include/torch/optim/serialize.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/lbfgs.h -> /pytorch/torch/csrc/api/include/torch/optim/lbfgs.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> /pytorch/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> /pytorch/torch/csrc/api/include/torch/optim/schedulers/step_lr.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> /pytorch/torch/csrc/api/include/torch/detail/TensorDataContainer.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/api/include/torch/detail/static.h -> /pytorch/torch/csrc/api/include/torch/detail/static.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/api/include/torch/python/init.h -> /pytorch/torch/csrc/api/include/torch/python/init.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/monitor/python_init.h -> /pytorch/torch/csrc/monitor/python_init.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/monitor/events.h -> /pytorch/torch/csrc/monitor/events.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/monitor/counters.cpp -> /pytorch/torch/csrc/monitor/counters.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/monitor/counters.h -> /pytorch/torch/csrc/monitor/counters.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/monitor/events.cpp -> /pytorch/torch/csrc/monitor/events.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/monitor/python_init.cpp -> /pytorch/torch/csrc/monitor/python_init.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/dynamo/init.h -> /pytorch/torch/csrc/dynamo/init.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/dynamo/guards.cpp -> /pytorch/torch/csrc/dynamo/guards.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/dynamo/eval_frame.h -> /pytorch/torch/csrc/dynamo/eval_frame.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/dynamo/eval_frame.c -> /pytorch/torch/csrc/dynamo/eval_frame.c [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/dynamo/guards.h -> /pytorch/torch/csrc/dynamo/guards.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/dynamo/init.cpp -> /pytorch/torch/csrc/dynamo/init.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/tensor/python_tensor.h -> /pytorch/torch/csrc/tensor/python_tensor.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/tensor/python_tensor.cpp -> /pytorch/torch/csrc/tensor/python_tensor.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/utils/data/datapipes/datapipe.pyi.in -> /pytorch/torch/utils/data/datapipes/datapipe.pyi.in [skipped, already hipified] +#10 34.16 /pytorch/torch/utils/benchmark/utils/timeit_template.cpp -> /pytorch/torch/utils/benchmark/utils/timeit_template.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/_inductor/codegen/cpp_prefix.h -> /pytorch/torch/_inductor/codegen/cpp_prefix.h [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm/manager.cpp -> /pytorch/torch/lib/libshm/manager.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm/core.cpp -> /pytorch/torch/lib/libshm/core.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm/err.h -> /pytorch/torch/lib/libshm/err.h [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm/libshm.h -> /pytorch/torch/lib/libshm/libshm.h [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm/socket.h -> /pytorch/torch/lib/libshm/socket.h [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm/alloc_info.h -> /pytorch/torch/lib/libshm/alloc_info.h [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm_windows/core.cpp -> /pytorch/torch/lib/libshm_windows/core.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/lib/libshm_windows/libshm.h -> /pytorch/torch/lib/libshm_windows/libshm.h [skipped, already hipified] +#10 34.17 /pytorch/torch/nn/functional.pyi.in -> /pytorch/torch/nn/functional.pyi.in [skipped, already hipified] +#10 34.17 /pytorch/torch/_C/return_types.pyi.in -> /pytorch/torch/_C/return_types.pyi.in [skipped, already hipified] +#10 34.17 /pytorch/torch/_C/__init__.pyi.in -> /pytorch/torch/_C/__init__.pyi.in [skipped, already hipified] +#10 34.17 /pytorch/torch/_C/_nn.pyi.in -> /pytorch/torch/_C/_nn.pyi.in [skipped, already hipified] +#10 34.17 /pytorch/torch/_C/_VariableFunctions.pyi.in -> /pytorch/torch/_C/_VariableFunctions.pyi.in [skipped, already hipified] +#10 34.17 /pytorch/caffe2/db/create_db_op_gpu.cc -> /pytorch/caffe2/db/hip/create_db_op_gpu.cc [ok] +#10 34.17 /pytorch/caffe2/core/context_gpu.h -> /pytorch/caffe2/core/hip/context_gpu.h [ok] +#10 34.18 /pytorch/caffe2/core/net_gpu_test.cc -> /pytorch/caffe2/core/hip/net_gpu_test.cc [ok] +#10 34.18 /pytorch/caffe2/core/common_gpu.cc -> /pytorch/caffe2/core/hip/common_gpu.cc [ok] +#10 34.18 /pytorch/caffe2/core/event_gpu.cc -> /pytorch/caffe2/core/hip/event_gpu.cc [ok] +#10 34.18 /pytorch/caffe2/core/event_gpu_test.cc -> /pytorch/caffe2/core/hip/event_gpu_test.cc [ok] +#10 34.18 /pytorch/caffe2/core/blob_serialization_gpu.cc -> /pytorch/caffe2/core/hip/blob_serialization_gpu.cc [ok] +#10 34.18 /pytorch/caffe2/core/context_gpu_test.cc -> /pytorch/caffe2/core/hip/context_gpu_test.cc [ok] +#10 34.18 /pytorch/caffe2/core/blob_gpu_test.cc -> /pytorch/caffe2/core/hip/blob_gpu_test.cc [ok] +#10 34.18 /pytorch/caffe2/core/context_gpu.cu -> /pytorch/caffe2/core/hip/context_gpu.hip [ok] +#10 34.18 /pytorch/caffe2/core/common_gpu.h -> /pytorch/caffe2/core/hip/common_gpu.h [ok] +#10 34.18 /pytorch/caffe2/core/operator_gpu_test.cc -> /pytorch/caffe2/core/hip/operator_gpu_test.cc [ok] +#10 34.18 /pytorch/caffe2/utils/GpuAtomics.cuh -> /pytorch/caffe2/utils/hip/GpuAtomics.cuh [ok] +#10 34.18 /pytorch/caffe2/utils/GpuScanUtils.cuh -> /pytorch/caffe2/utils/hip/GpuScanUtils.cuh [ok] +#10 34.18 /pytorch/caffe2/utils/cub_namespace.cuh -> /pytorch/caffe2/utils/hip/cub_namespace.cuh [ok] +#10 34.18 /pytorch/caffe2/utils/math_gpu_test.cc -> /pytorch/caffe2/utils/hip/math_gpu_test.cc [ok] +#10 34.18 /pytorch/caffe2/utils/GpuDefs.cuh -> /pytorch/caffe2/utils/hip/GpuDefs.cuh [ok] +#10 34.19 /pytorch/caffe2/utils/math_gpu.cu -> /pytorch/caffe2/utils/hip/math_gpu.hip [ok] +#10 34.19 /pytorch/caffe2/utils/GpuBitonicSort.cuh -> /pytorch/caffe2/utils/hip/GpuBitonicSort.cuh [ok] +#10 34.19 /pytorch/caffe2/utils/math/reduce.cuh -> /pytorch/caffe2/utils/math/hip/reduce.cuh [ok] +#10 34.19 /pytorch/caffe2/utils/math/broadcast.cu -> /pytorch/caffe2/utils/math/hip/broadcast.hip [ok] +#10 34.19 /pytorch/caffe2/utils/math/transpose.cu -> /pytorch/caffe2/utils/math/hip/transpose.hip [ok] +#10 34.19 /pytorch/caffe2/utils/math/reduce.cu -> /pytorch/caffe2/utils/math/hip/reduce.hip [ok] +#10 34.19 /pytorch/caffe2/utils/math/elementwise.cu -> /pytorch/caffe2/utils/math/hip/elementwise.hip [ok] +#10 34.19 /pytorch/caffe2/mpi/mpi_gpu_test.cc -> /pytorch/caffe2/mpi/hip/mpi_gpu_test.cc [ok] +#10 34.19 /pytorch/caffe2/distributed/redis_store_handler_op_gpu.cc -> /pytorch/caffe2/distributed/hip/redis_store_handler_op_gpu.cc [ok] +#10 34.19 /pytorch/caffe2/distributed/file_store_handler_op_gpu.cc -> /pytorch/caffe2/distributed/hip/file_store_handler_op_gpu.cc [ok] +#10 34.19 /pytorch/caffe2/operators/channel_shuffle_op.cu -> /pytorch/caffe2/operators/hip/channel_shuffle_op.hip [ok] +#10 34.19 /pytorch/caffe2/operators/sparse_normalize_op_gpu.cu -> /pytorch/caffe2/operators/hip/sparse_normalize_op_gpu.hip [ok] +#10 34.19 /pytorch/caffe2/operators/zero_gradient_op_gpu.cc -> /pytorch/caffe2/operators/hip/zero_gradient_op_gpu.cc [ok] +#10 34.19 /pytorch/caffe2/operators/roi_align_rotated_op.cu -> /pytorch/caffe2/operators/hip/roi_align_rotated_op.hip [ok] +#10 34.19 /pytorch/caffe2/operators/batch_sparse_to_dense_op.cu -> /pytorch/caffe2/operators/hip/batch_sparse_to_dense_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/operator_fallback_gpu.h -> /pytorch/caffe2/operators/hip/operator_fallback_gpu.h [ok] +#10 34.20 /pytorch/caffe2/operators/relu_n_op.cu -> /pytorch/caffe2/operators/hip/relu_n_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/mem_query_op.cu -> /pytorch/caffe2/operators/hip/mem_query_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/reduce_front_back_max_ops.cu -> /pytorch/caffe2/operators/hip/reduce_front_back_max_ops.hip [ok] +#10 34.20 /pytorch/caffe2/operators/gather_op.cu -> /pytorch/caffe2/operators/hip/gather_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/half_float_ops.cu -> /pytorch/caffe2/operators/hip/half_float_ops.hip [ok] +#10 34.20 /pytorch/caffe2/operators/max_pool_with_index.cu -> /pytorch/caffe2/operators/hip/max_pool_with_index.hip [ok] +#10 34.20 /pytorch/caffe2/operators/data_couple_gpu.cu -> /pytorch/caffe2/operators/hip/data_couple_gpu.hip [ok] +#10 34.20 /pytorch/caffe2/operators/lengths_pad_op.cu -> /pytorch/caffe2/operators/hip/lengths_pad_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/locally_connected_op_gpu.cc -> /pytorch/caffe2/operators/hip/locally_connected_op_gpu.cc [ok] +#10 34.20 /pytorch/caffe2/operators/sparse_lp_regularizer_op_gpu.cu -> /pytorch/caffe2/operators/hip/sparse_lp_regularizer_op_gpu.hip [ok] +#10 34.20 /pytorch/caffe2/operators/prepend_dim_op_gpu.cc -> /pytorch/caffe2/operators/hip/prepend_dim_op_gpu.cc [ok] +#10 34.20 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu_test.cc -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu_test.cc [ok] +#10 34.20 /pytorch/caffe2/operators/while_op_gpu.cc -> /pytorch/caffe2/operators/hip/while_op_gpu.cc [ok] +#10 34.20 /pytorch/caffe2/operators/fully_connected_op_gpu.cc -> /pytorch/caffe2/operators/hip/fully_connected_op_gpu.cc [ok] +#10 34.20 /pytorch/caffe2/operators/im2col_op_gpu.cc -> /pytorch/caffe2/operators/hip/im2col_op_gpu.cc [ok] +#10 34.20 /pytorch/caffe2/operators/transpose_op.cu -> /pytorch/caffe2/operators/hip/transpose_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/sqrt_op_gpu.cc -> /pytorch/caffe2/operators/hip/sqrt_op_gpu.cc [ok] +#10 34.20 /pytorch/caffe2/operators/instance_norm_op.cu -> /pytorch/caffe2/operators/hip/instance_norm_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/summarize_op.cu -> /pytorch/caffe2/operators/hip/summarize_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/tile_op.cu -> /pytorch/caffe2/operators/hip/tile_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/lp_pool_op.cu -> /pytorch/caffe2/operators/hip/lp_pool_op.hip [ok] +#10 34.20 /pytorch/caffe2/operators/moments_op.cu -> /pytorch/caffe2/operators/hip/moments_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/cosine_embedding_criterion_op.cu -> /pytorch/caffe2/operators/hip/cosine_embedding_criterion_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/roi_align_gradient_op.cu -> /pytorch/caffe2/operators/hip/roi_align_gradient_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/cbrt_op.cu -> /pytorch/caffe2/operators/hip/cbrt_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/segment_reduction_op_gpu.cu -> /pytorch/caffe2/operators/hip/segment_reduction_op_gpu.hip [ok] +#10 34.21 /pytorch/caffe2/operators/batch_permutation_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/batch_permutation_op_gpu_test.cc [ok] +#10 34.21 /pytorch/caffe2/operators/ensure_cpu_output_op.cu -> /pytorch/caffe2/operators/hip/ensure_cpu_output_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/sigmoid_op.cu -> /pytorch/caffe2/operators/hip/sigmoid_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/mod_op.cu -> /pytorch/caffe2/operators/hip/mod_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/reshape_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/reshape_op_gpu_test.cc [ok] +#10 34.21 /pytorch/caffe2/operators/one_hot_ops.cu -> /pytorch/caffe2/operators/hip/one_hot_ops.hip [ok] +#10 34.21 /pytorch/caffe2/operators/elementwise_add_op_gpu.cc -> /pytorch/caffe2/operators/hip/elementwise_add_op_gpu.cc [ok] +#10 34.21 /pytorch/caffe2/operators/normalize_ops.cu -> /pytorch/caffe2/operators/hip/normalize_ops.hip [ok] +#10 34.21 /pytorch/caffe2/operators/sqr_op_gpu.cc -> /pytorch/caffe2/operators/hip/sqr_op_gpu.cc [ok] +#10 34.21 /pytorch/caffe2/operators/negative_op_gpu.cc -> /pytorch/caffe2/operators/hip/negative_op_gpu.cc [ok] +#10 34.21 /pytorch/caffe2/operators/scale_op_gpu.cc -> /pytorch/caffe2/operators/hip/scale_op_gpu.cc [ok] +#10 34.21 /pytorch/caffe2/operators/piecewise_linear_transform_op.cu -> /pytorch/caffe2/operators/hip/piecewise_linear_transform_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/cosh_op.cu -> /pytorch/caffe2/operators/hip/cosh_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/enforce_finite_op.cu -> /pytorch/caffe2/operators/hip/enforce_finite_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/elementwise_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/elementwise_op_gpu_test.cc [ok] +#10 34.21 /pytorch/caffe2/operators/counter_ops_gpu.cc -> /pytorch/caffe2/operators/hip/counter_ops_gpu.cc [ok] +#10 34.21 /pytorch/caffe2/operators/lpnorm_op.cu -> /pytorch/caffe2/operators/hip/lpnorm_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/conv_op_shared_gpu.cc -> /pytorch/caffe2/operators/hip/conv_op_shared_gpu.cc [ok] +#10 34.21 /pytorch/caffe2/operators/sparse_to_dense_op.cu -> /pytorch/caffe2/operators/hip/sparse_to_dense_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/mean_op.cu -> /pytorch/caffe2/operators/hip/mean_op.hip [ok] +#10 34.21 /pytorch/caffe2/operators/resize_op.cu -> /pytorch/caffe2/operators/hip/resize_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/stop_gradient_gpu.cc -> /pytorch/caffe2/operators/hip/stop_gradient_gpu.cc [ok] +#10 34.22 /pytorch/caffe2/operators/deform_conv_op.cu -> /pytorch/caffe2/operators/hip/deform_conv_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/utility_ops_gpu_test.cc -> /pytorch/caffe2/operators/hip/utility_ops_gpu_test.cc [ok] +#10 34.22 /pytorch/caffe2/operators/expand_op_gpu.cc -> /pytorch/caffe2/operators/hip/expand_op_gpu.cc [ok] +#10 34.22 /pytorch/caffe2/operators/reverse_packed_segs_op.cu -> /pytorch/caffe2/operators/hip/reverse_packed_segs_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/lstm_unit_op_gpu.cu -> /pytorch/caffe2/operators/hip/lstm_unit_op_gpu.hip [ok] +#10 34.22 /pytorch/caffe2/operators/conv_op_gpu.cc -> /pytorch/caffe2/operators/hip/conv_op_gpu.cc [ok] +#10 34.22 /pytorch/caffe2/operators/async_net_barrier_op.cu -> /pytorch/caffe2/operators/hip/async_net_barrier_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/pow_op.cu -> /pytorch/caffe2/operators/hip/pow_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/ceil_op.cu -> /pytorch/caffe2/operators/hip/ceil_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/lengths_tile_op.cu -> /pytorch/caffe2/operators/hip/lengths_tile_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/roi_align_rotated_gradient_op.cu -> /pytorch/caffe2/operators/hip/roi_align_rotated_gradient_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/log1p_op.cu -> /pytorch/caffe2/operators/hip/log1p_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/spatial_batch_norm_op.cu -> /pytorch/caffe2/operators/hip/spatial_batch_norm_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/batch_gather_ops.cu -> /pytorch/caffe2/operators/hip/batch_gather_ops.hip [ok] +#10 34.22 /pytorch/caffe2/operators/arg_ops.cu -> /pytorch/caffe2/operators/hip/arg_ops.hip [ok] +#10 34.22 /pytorch/caffe2/operators/leaky_relu_op.cu -> /pytorch/caffe2/operators/hip/leaky_relu_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/generate_proposals_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/generate_proposals_op_gpu_test.cc [ok] +#10 34.22 /pytorch/caffe2/operators/conv_transpose_op_gpu.cc -> /pytorch/caffe2/operators/hip/conv_transpose_op_gpu.cc [ok] +#10 34.22 /pytorch/caffe2/operators/concat_split_op_gpu.cc -> /pytorch/caffe2/operators/hip/concat_split_op_gpu.cc [ok] +#10 34.22 /pytorch/caffe2/operators/margin_ranking_criterion_op.cu -> /pytorch/caffe2/operators/hip/margin_ranking_criterion_op.hip [ok] +#10 34.22 /pytorch/caffe2/operators/acos_op.cu -> /pytorch/caffe2/operators/hip/acos_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/alias_with_name.cu -> /pytorch/caffe2/operators/hip/alias_with_name.hip [ok] +#10 34.23 /pytorch/caffe2/operators/free_op_gpu.cc -> /pytorch/caffe2/operators/hip/free_op_gpu.cc [ok] +#10 34.23 /pytorch/caffe2/operators/gelu_op.cu -> /pytorch/caffe2/operators/hip/gelu_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/loss_op.cu -> /pytorch/caffe2/operators/hip/loss_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/softmax_ops.cu -> /pytorch/caffe2/operators/hip/softmax_ops.hip [ok] +#10 34.23 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.cu -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu.hip [ok] +#10 34.23 /pytorch/caffe2/operators/cross_entropy_op.cu -> /pytorch/caffe2/operators/hip/cross_entropy_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/sequence_ops.cu -> /pytorch/caffe2/operators/hip/sequence_ops.hip [ok] +#10 34.23 /pytorch/caffe2/operators/boolean_mask_ops.cu -> /pytorch/caffe2/operators/hip/boolean_mask_ops.hip [ok] +#10 34.23 /pytorch/caffe2/operators/operator_fallback_gpu_test.cc -> /pytorch/caffe2/operators/hip/operator_fallback_gpu_test.cc [ok] +#10 34.23 /pytorch/caffe2/operators/gather_op.cuh -> /pytorch/caffe2/operators/hip/gather_op.cuh [ok] +#10 34.23 /pytorch/caffe2/operators/channel_stats_op.cu -> /pytorch/caffe2/operators/hip/channel_stats_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/space_batch_op_gpu.cu -> /pytorch/caffe2/operators/hip/space_batch_op_gpu.hip [ok] +#10 34.23 /pytorch/caffe2/operators/cast_op.cu -> /pytorch/caffe2/operators/hip/cast_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/find_op.cu -> /pytorch/caffe2/operators/hip/find_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/unsafe_coalesce.cu -> /pytorch/caffe2/operators/hip/unsafe_coalesce.hip [ok] +#10 34.23 /pytorch/caffe2/operators/elementwise_div_op.cu -> /pytorch/caffe2/operators/hip/elementwise_div_op.hip [ok] +#10 34.23 /pytorch/caffe2/operators/integral_image_op.cu -> /pytorch/caffe2/operators/hip/integral_image_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/exp_op_gpu.cc -> /pytorch/caffe2/operators/hip/exp_op_gpu.cc [ok] +#10 34.24 /pytorch/caffe2/operators/pack_segments.cu -> /pytorch/caffe2/operators/hip/pack_segments.hip [ok] +#10 34.24 /pytorch/caffe2/operators/elementwise_sub_op_gpu.cc -> /pytorch/caffe2/operators/hip/elementwise_sub_op_gpu.cc [ok] +#10 34.24 /pytorch/caffe2/operators/roi_align_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/roi_align_op_gpu_test.cc [ok] +#10 34.24 /pytorch/caffe2/operators/prelu_op.cu -> /pytorch/caffe2/operators/hip/prelu_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/utility_ops.cu -> /pytorch/caffe2/operators/hip/utility_ops.hip [ok] +#10 34.24 /pytorch/caffe2/operators/clip_op.cu -> /pytorch/caffe2/operators/hip/clip_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/reduce_front_back_sum_mean_ops.cu -> /pytorch/caffe2/operators/hip/reduce_front_back_sum_mean_ops.hip [ok] +#10 34.24 /pytorch/caffe2/operators/glu_op.cu -> /pytorch/caffe2/operators/hip/glu_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/roi_pool_op.cu -> /pytorch/caffe2/operators/hip/roi_pool_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/weighted_sample_op.cu -> /pytorch/caffe2/operators/hip/weighted_sample_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/atan_op.cu -> /pytorch/caffe2/operators/hip/atan_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/top_k.cu -> /pytorch/caffe2/operators/hip/top_k.hip [ok] +#10 34.24 /pytorch/caffe2/operators/tensor_protos_db_input_gpu.cc -> /pytorch/caffe2/operators/hip/tensor_protos_db_input_gpu.cc [ok] +#10 34.24 /pytorch/caffe2/operators/rsqrt_op.cu -> /pytorch/caffe2/operators/hip/rsqrt_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/elementwise_linear_op.cu -> /pytorch/caffe2/operators/hip/elementwise_linear_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/segment_reduction_op_gpu.cuh -> /pytorch/caffe2/operators/hip/segment_reduction_op_gpu.cuh [ok] +#10 34.24 /pytorch/caffe2/operators/rmac_regions_op.cu -> /pytorch/caffe2/operators/hip/rmac_regions_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/batch_matmul_op.cu -> /pytorch/caffe2/operators/hip/batch_matmul_op.hip [ok] +#10 34.24 /pytorch/caffe2/operators/spatial_batch_norm_op_impl.cuh -> /pytorch/caffe2/operators/hip/spatial_batch_norm_op_impl.cuh [ok] +#10 34.24 /pytorch/caffe2/operators/do_op_gpu.cc -> /pytorch/caffe2/operators/hip/do_op_gpu.cc [ok] +#10 34.25 /pytorch/caffe2/operators/negate_gradient_op_gpu.cc -> /pytorch/caffe2/operators/hip/negate_gradient_op_gpu.cc [ok] +#10 34.25 /pytorch/caffe2/operators/pad_op_gpu.cu -> /pytorch/caffe2/operators/hip/pad_op_gpu.hip [ok] +#10 34.25 /pytorch/caffe2/operators/pool_op.cu -> /pytorch/caffe2/operators/hip/pool_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/roi_align_op.cu -> /pytorch/caffe2/operators/hip/roi_align_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/stump_func_op.cu -> /pytorch/caffe2/operators/hip/stump_func_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/copy_op.cu -> /pytorch/caffe2/operators/hip/copy_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/load_save_op_gpu.cc -> /pytorch/caffe2/operators/hip/load_save_op_gpu.cc [ok] +#10 34.25 /pytorch/caffe2/operators/expand_squeeze_dims_op_gpu.cc -> /pytorch/caffe2/operators/hip/expand_squeeze_dims_op_gpu.cc [ok] +#10 34.25 /pytorch/caffe2/operators/floor_op.cu -> /pytorch/caffe2/operators/hip/floor_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/bucketize_op.cu -> /pytorch/caffe2/operators/hip/bucketize_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/distance_op.cu -> /pytorch/caffe2/operators/hip/distance_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/reshape_op_gpu.cc -> /pytorch/caffe2/operators/hip/reshape_op_gpu.cc [ok] +#10 34.25 /pytorch/caffe2/operators/logit_op.cu -> /pytorch/caffe2/operators/hip/logit_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/accumulate_op.cu -> /pytorch/caffe2/operators/hip/accumulate_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/elu_op.cu -> /pytorch/caffe2/operators/hip/elu_op.hip [ok] +#10 34.25 /pytorch/caffe2/operators/top_k_heap_selection.cuh -> /pytorch/caffe2/operators/hip/top_k_heap_selection.cuh [ok] +#10 34.25 /pytorch/caffe2/operators/hard_sigmoid_op.cu -> /pytorch/caffe2/operators/hip/hard_sigmoid_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/reciprocal_op.cu -> /pytorch/caffe2/operators/hip/reciprocal_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/accuracy_op.cu -> /pytorch/caffe2/operators/hip/accuracy_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/elementwise_ops.cu -> /pytorch/caffe2/operators/hip/elementwise_ops.hip [ok] +#10 34.26 /pytorch/caffe2/operators/reduction_ops.cu -> /pytorch/caffe2/operators/hip/reduction_ops.hip [ok] +#10 34.26 /pytorch/caffe2/operators/shape_op_gpu.cc -> /pytorch/caffe2/operators/hip/shape_op_gpu.cc [ok] +#10 34.26 /pytorch/caffe2/operators/scale_blobs_op.cu -> /pytorch/caffe2/operators/hip/scale_blobs_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/upsample_op.cu -> /pytorch/caffe2/operators/hip/upsample_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/softsign_op.cu -> /pytorch/caffe2/operators/hip/softsign_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/group_norm_op.cu -> /pytorch/caffe2/operators/hip/group_norm_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/layer_norm_op.cu -> /pytorch/caffe2/operators/hip/layer_norm_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/filler_op.cu -> /pytorch/caffe2/operators/hip/filler_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/minmax_ops.cu -> /pytorch/caffe2/operators/hip/minmax_ops.hip [ok] +#10 34.26 /pytorch/caffe2/operators/local_response_normalization_op.cu -> /pytorch/caffe2/operators/hip/local_response_normalization_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/replace_nan_op.cu -> /pytorch/caffe2/operators/hip/replace_nan_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.h -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu.h [ok] +#10 34.26 /pytorch/caffe2/operators/tanh_op.cu -> /pytorch/caffe2/operators/hip/tanh_op.hip [ok] +#10 34.26 /pytorch/caffe2/operators/generate_proposals_op.cu -> /pytorch/caffe2/operators/hip/generate_proposals_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/erf_op.cu -> /pytorch/caffe2/operators/hip/erf_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/elementwise_mul_op.cu -> /pytorch/caffe2/operators/hip/elementwise_mul_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/order_switch_ops_gpu.cc -> /pytorch/caffe2/operators/hip/order_switch_ops_gpu.cc [ok] +#10 34.27 /pytorch/caffe2/operators/unique_ops.cu -> /pytorch/caffe2/operators/hip/unique_ops.hip [ok] +#10 34.27 /pytorch/caffe2/operators/if_op_gpu.cc -> /pytorch/caffe2/operators/hip/if_op_gpu.cc [ok] +#10 34.27 /pytorch/caffe2/operators/swish_op.cu -> /pytorch/caffe2/operators/hip/swish_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/communicator_op_gpu.cc -> /pytorch/caffe2/operators/hip/communicator_op_gpu.cc [ok] +#10 34.27 /pytorch/caffe2/operators/resize_3d_op.cu -> /pytorch/caffe2/operators/hip/resize_3d_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/given_tensor_fill_op.cu -> /pytorch/caffe2/operators/hip/given_tensor_fill_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/boolean_unmask_ops.cu -> /pytorch/caffe2/operators/hip/boolean_unmask_ops.hip [ok] +#10 34.27 /pytorch/caffe2/operators/thresholded_relu_op.cu -> /pytorch/caffe2/operators/hip/thresholded_relu_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/affine_channel_op.cu -> /pytorch/caffe2/operators/hip/affine_channel_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/sinh_op.cu -> /pytorch/caffe2/operators/hip/sinh_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/batch_permutation_op.cu -> /pytorch/caffe2/operators/hip/batch_permutation_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/slice_op.cu -> /pytorch/caffe2/operators/hip/slice_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/perplexity_op.cu -> /pytorch/caffe2/operators/hip/perplexity_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/cos_op.cu -> /pytorch/caffe2/operators/hip/cos_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/reduce_ops.cu -> /pytorch/caffe2/operators/hip/reduce_ops.hip [ok] +#10 34.27 /pytorch/caffe2/operators/assert_op.cu -> /pytorch/caffe2/operators/hip/assert_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/softplus_op.cu -> /pytorch/caffe2/operators/hip/softplus_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/batch_moments_op.cu -> /pytorch/caffe2/operators/hip/batch_moments_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/relu_op.cu -> /pytorch/caffe2/operators/hip/relu_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/given_tensor_byte_string_to_uint8_fill_op.cu -> /pytorch/caffe2/operators/hip/given_tensor_byte_string_to_uint8_fill_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/dropout_op.cu -> /pytorch/caffe2/operators/hip/dropout_op.hip [ok] +#10 34.27 /pytorch/caffe2/operators/top_k_radix_selection.cuh -> /pytorch/caffe2/operators/hip/top_k_radix_selection.cuh [ok] +#10 34.28 /pytorch/caffe2/operators/rms_norm_op.cu -> /pytorch/caffe2/operators/hip/rms_norm_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/asin_op.cu -> /pytorch/caffe2/operators/hip/asin_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/max_pool_with_index_gpu.h -> /pytorch/caffe2/operators/hip/max_pool_with_index_gpu.h [ok] +#10 34.28 /pytorch/caffe2/operators/multi_class_accuracy_op.cu -> /pytorch/caffe2/operators/hip/multi_class_accuracy_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/matmul_op_gpu.cc -> /pytorch/caffe2/operators/hip/matmul_op_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/operators/gru_unit_op_gpu.cu -> /pytorch/caffe2/operators/hip/gru_unit_op_gpu.hip [ok] +#10 34.28 /pytorch/caffe2/operators/selu_op.cu -> /pytorch/caffe2/operators/hip/selu_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/batch_matmul_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/batch_matmul_op_gpu_test.cc [ok] +#10 34.28 /pytorch/caffe2/operators/log_op_gpu.cc -> /pytorch/caffe2/operators/hip/log_op_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/operators/sin_op.cu -> /pytorch/caffe2/operators/hip/sin_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/abs_op.cu -> /pytorch/caffe2/operators/hip/abs_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/tan_op.cu -> /pytorch/caffe2/operators/hip/tan_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/channel_backprop_stats_op.cu -> /pytorch/caffe2/operators/hip/channel_backprop_stats_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/cube_op.cu -> /pytorch/caffe2/operators/hip/cube_op.hip [ok] +#10 34.28 /pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.cc -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_executor_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/operators/rnn/recurrent_network_op_gpu.cu -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_op_gpu.hip [ok] +#10 34.28 /pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.h -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_executor_gpu.h [ok] +#10 34.28 /pytorch/caffe2/operators/rnn/recurrent_network_blob_fetcher_op_gpu.cc -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_blob_fetcher_op_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/contrib/aten/aten_op_gpu.cc -> /pytorch/caffe2/contrib/aten/hip/aten_op_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/contrib/gloo/broadcast_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/broadcast_ops_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/contrib/gloo/common_world_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/common_world_ops_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/contrib/gloo/allreduce_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/allreduce_ops_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/contrib/nccl/cuda_nccl_op_gpu.cc -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_op_gpu.cc [ok] +#10 34.28 /pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.h -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_gpu.h [ok] +#10 34.29 /pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.cc -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/video/video_input_op_gpu.cc -> /pytorch/caffe2/video/hip/video_input_op_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/queue/queue_ops_gpu.cc -> /pytorch/caffe2/queue/hip/queue_ops_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/sgd/fp32_momentum_sgd_op.cu -> /pytorch/caffe2/sgd/hip/fp32_momentum_sgd_op.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/adam_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adam_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/yellowfin_op_gpu.cu -> /pytorch/caffe2/sgd/hip/yellowfin_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/fp16_momentum_sgd_op.cu -> /pytorch/caffe2/sgd/hip/fp16_momentum_sgd_op.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/learning_rate_op_gpu.cc -> /pytorch/caffe2/sgd/hip/learning_rate_op_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/sgd/momentum_sgd_op_gpu.cu -> /pytorch/caffe2/sgd/hip/momentum_sgd_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/adagrad_fused_op_gpu.cuh -> /pytorch/caffe2/sgd/hip/adagrad_fused_op_gpu.cuh [ok] +#10 34.29 /pytorch/caffe2/sgd/adadelta_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adadelta_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/rmsprop_op_gpu.cu -> /pytorch/caffe2/sgd/hip/rmsprop_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/lars_op_gpu.cu -> /pytorch/caffe2/sgd/hip/lars_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/weight_scale_op_gpu.cc -> /pytorch/caffe2/sgd/hip/weight_scale_op_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/sgd/adagrad_fused_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adagrad_fused_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/adagrad_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adagrad_op_gpu.hip [ok] +#10 34.29 /pytorch/caffe2/sgd/iter_op_gpu.cc -> /pytorch/caffe2/sgd/hip/iter_op_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/image/transform_gpu.h -> /pytorch/caffe2/image/hip/transform_gpu.h [ok] +#10 34.29 /pytorch/caffe2/image/image_input_op_gpu.cc -> /pytorch/caffe2/image/hip/image_input_op_gpu.cc [ok] +#10 34.29 /pytorch/caffe2/image/transform_gpu.cu -> /pytorch/caffe2/image/hip/transform_gpu.hip [ok] +#10 34.30 /pytorch/modules/detectron/roi_pool_f_op.cu -> /pytorch/modules/detectron/hip/roi_pool_f_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/group_spatial_softmax_op.cu -> /pytorch/modules/detectron/hip/group_spatial_softmax_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/sigmoid_focal_loss_op.cu -> /pytorch/modules/detectron/hip/sigmoid_focal_loss_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/sample_as_op.cu -> /pytorch/modules/detectron/hip/sample_as_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/sigmoid_cross_entropy_loss_op.cu -> /pytorch/modules/detectron/hip/sigmoid_cross_entropy_loss_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/smooth_l1_loss_op.cu -> /pytorch/modules/detectron/hip/smooth_l1_loss_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/select_smooth_l1_loss_op.cu -> /pytorch/modules/detectron/hip/select_smooth_l1_loss_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/ps_roi_pool_op.cu -> /pytorch/modules/detectron/hip/ps_roi_pool_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/softmax_focal_loss_op.cu -> /pytorch/modules/detectron/hip/softmax_focal_loss_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/upsample_nearest_op.cu -> /pytorch/modules/detectron/hip/upsample_nearest_op.hip [ok] +#10 34.30 /pytorch/modules/detectron/spatial_narrow_as_op.cu -> /pytorch/modules/detectron/hip/spatial_narrow_as_op.hip [ok] +#10 34.30 /pytorch/c10/cuda/CUDAFunctions.cpp -> /pytorch/c10/hip/HIPFunctions.cpp [ok] +#10 34.30 /pytorch/c10/cuda/CUDAMathCompat.h -> /pytorch/c10/hip/HIPMathCompat.h [ok] +#10 34.30 /pytorch/c10/cuda/CUDAStream.h -> /pytorch/c10/hip/HIPStream.h [ok] +#10 34.30 /pytorch/c10/cuda/CUDAException.cpp -> /pytorch/c10/hip/HIPException.cpp [ok] +#10 34.30 /pytorch/c10/cuda/CUDAStream.cpp -> /pytorch/c10/hip/HIPStream.cpp [ok] +#10 34.30 /pytorch/c10/cuda/CUDAGraphsC10Utils.h -> /pytorch/c10/hip/HIPGraphsC10Utils.h [ok] +#10 34.30 /pytorch/c10/cuda/CUDAMiscFunctions.h -> /pytorch/c10/hip/HIPMiscFunctions.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDADeviceAssertion.h -> /pytorch/c10/hip/HIPDeviceAssertion.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDACachingAllocator.h -> /pytorch/c10/hip/HIPCachingAllocator.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDAAlgorithm.h -> /pytorch/c10/hip/HIPAlgorithm.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDAMiscFunctions.cpp -> /pytorch/c10/hip/HIPMiscFunctions.cpp [ok] +#10 34.31 /pytorch/c10/cuda/CUDADeviceAssertionHost.cpp -> /pytorch/c10/hip/HIPDeviceAssertionHost.cpp [ok] +#10 34.31 /pytorch/c10/cuda/CUDACachingAllocator.cpp -> /pytorch/c10/hip/HIPCachingAllocator.cpp [ok] +#10 34.31 /pytorch/c10/cuda/CUDAMacros.h -> /pytorch/c10/hip/HIPMacros.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDAFunctions.h -> /pytorch/c10/hip/HIPFunctions.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDAMallocAsyncAllocator.cpp -> /pytorch/c10/hip/HIPMallocAsyncAllocator.cpp [ok] +#10 34.31 /pytorch/c10/cuda/CUDAException.h -> /pytorch/c10/hip/HIPException.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDAGuard.h -> /pytorch/c10/hip/HIPGuard.h [ok] +#10 34.31 /pytorch/c10/cuda/CUDADeviceAssertionHost.h -> /pytorch/c10/hip/HIPDeviceAssertionHost.h [ok] +#10 34.31 /pytorch/c10/cuda/impl/CUDATest.h -> /pytorch/c10/hip/impl/HIPTest.h [ok] +#10 34.31 /pytorch/c10/cuda/impl/CUDAGuardImpl.cpp -> /pytorch/c10/hip/impl/HIPGuardImpl.cpp [ok] +#10 34.31 /pytorch/c10/cuda/impl/CUDAGuardImpl.h -> /pytorch/c10/hip/impl/HIPGuardImpl.h [ok] +#10 34.31 /pytorch/c10/cuda/impl/cuda_cmake_macros.h.in -> /pytorch/c10/hip/impl/hip_cmake_macros.h.in [ok] +#10 34.32 /pytorch/c10/cuda/impl/CUDATest.cpp -> /pytorch/c10/hip/impl/HIPTest.cpp [ok] +#10 34.32 /pytorch/c10/cuda/test/CMakeLists.txt -> /pytorch/c10/hip/test/CMakeLists.txt [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_multiple_blocks.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_same_block.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_same_block.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_from_2_processes.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_from_2_processes.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_1_var_test.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_1_var_test.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_catches_stream.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_catches_stream.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_catches_thread_and_block_and_device.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_catches_thread_and_block_and_device.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_blocks_and_threads.hip [ok] +#10 34.32 /pytorch/c10/cuda/test/impl/CUDATest.cpp -> /pytorch/c10/hip/test/impl/HIPTest.cpp [ok] +#10 34.32 /pytorch/third_party/nvfuser/csrc/partition.cpp -> /pytorch/third_party/nvfuser/csrc/partition.cpp [ok] +#10 34.32 /pytorch/third_party/nvfuser/csrc/lower_validation.h -> /pytorch/third_party/nvfuser/csrc/lower_validation.h [skipped, already hipified] +#10 34.32 /pytorch/third_party/nvfuser/csrc/manager.h -> /pytorch/third_party/nvfuser/csrc/manager.h [skipped, already hipified] +#10 34.32 /pytorch/third_party/nvfuser/csrc/iter_visitor.cpp -> /pytorch/third_party/nvfuser/csrc/iter_visitor.cpp [skipped, already hipified] +#10 34.32 /pytorch/third_party/nvfuser/csrc/lower_allocation.h -> /pytorch/third_party/nvfuser/csrc/lower_allocation.h [skipped, already hipified] +#10 34.32 /pytorch/third_party/nvfuser/csrc/inlining.h -> /pytorch/third_party/nvfuser/csrc/inlining.h [skipped, already hipified] +#10 34.32 /pytorch/third_party/nvfuser/csrc/lower_double_buffer.h -> /pytorch/third_party/nvfuser/csrc/lower_double_buffer.h [ok] +#10 34.32 /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.cpp [skipped, already hipified] +#10 34.32 /pytorch/third_party/nvfuser/csrc/lower_shift.h -> /pytorch/third_party/nvfuser/csrc/lower_shift.h [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/lower2device.cpp -> /pytorch/third_party/nvfuser/csrc/lower2device.cpp [ok] +#10 34.33 /pytorch/third_party/nvfuser/csrc/inlining.cpp -> /pytorch/third_party/nvfuser/csrc/inlining.cpp [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.cpp -> /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.cpp [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/fusion.h -> /pytorch/third_party/nvfuser/csrc/fusion.h [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/lower_index_compute.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index_compute.cpp [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/register_interface.cpp -> /pytorch/third_party/nvfuser/csrc/register_interface.cpp [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/fusion.cpp -> /pytorch/third_party/nvfuser/csrc/fusion.cpp [skipped, already hipified] +#10 34.33 /pytorch/third_party/nvfuser/csrc/utils.h -> /pytorch/third_party/nvfuser/csrc/utils.h [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/lower_shift.cpp -> /pytorch/third_party/nvfuser/csrc/lower_shift.cpp [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/type_inference.cpp -> /pytorch/third_party/nvfuser/csrc/type_inference.cpp [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/kernel_ir.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_ir.cpp [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/iter_visitor.h -> /pytorch/third_party/nvfuser/csrc/iter_visitor.h [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.cpp -> /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.cpp [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/ir_graphviz.cpp -> /pytorch/third_party/nvfuser/csrc/ir_graphviz.cpp [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/ir_container.h -> /pytorch/third_party/nvfuser/csrc/ir_container.h [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/manager.cpp -> /pytorch/third_party/nvfuser/csrc/manager.cpp [skipped, already hipified] +#10 34.34 /pytorch/third_party/nvfuser/csrc/lower_magic_zero.cpp -> /pytorch/third_party/nvfuser/csrc/lower_magic_zero.cpp [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/type_promotion.cpp -> /pytorch/third_party/nvfuser/csrc/type_promotion.cpp [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/root_domain_map.cpp -> /pytorch/third_party/nvfuser/csrc/root_domain_map.cpp [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/lower2device.h -> /pytorch/third_party/nvfuser/csrc/lower2device.h [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/non_divisible_split.h -> /pytorch/third_party/nvfuser/csrc/non_divisible_split.h [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/lower_predicate.h -> /pytorch/third_party/nvfuser/csrc/lower_predicate.h [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/ir_iostream.h -> /pytorch/third_party/nvfuser/csrc/ir_iostream.h [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/ir_internal_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_internal_nodes.h [skipped, already hipified] +#10 34.35 /pytorch/third_party/nvfuser/csrc/grouped_reduction.cpp -> /pytorch/third_party/nvfuser/csrc/grouped_reduction.cpp [skipped, already hipified] +#10 34.36 /pytorch/third_party/nvfuser/csrc/ir_nodes.cpp -> /pytorch/third_party/nvfuser/csrc/ir_nodes.cpp [skipped, already hipified] +#10 34.36 /pytorch/third_party/nvfuser/csrc/partial_split_map.h -> /pytorch/third_party/nvfuser/csrc/partial_split_map.h [skipped, already hipified] +#10 34.36 /pytorch/third_party/nvfuser/csrc/lower_validation.cpp -> /pytorch/third_party/nvfuser/csrc/lower_validation.cpp [ok] +#10 34.36 /pytorch/third_party/nvfuser/csrc/mutator.cpp -> /pytorch/third_party/nvfuser/csrc/mutator.cpp [skipped, already hipified] +#10 34.36 /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.cpp -> /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.cpp [ok] +#10 34.37 /pytorch/third_party/nvfuser/csrc/ir_container.cpp -> /pytorch/third_party/nvfuser/csrc/ir_container.cpp [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_divisible_split.h -> /pytorch/third_party/nvfuser/csrc/lower_divisible_split.h [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_sync_information.h -> /pytorch/third_party/nvfuser/csrc/lower_sync_information.h [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/dispatch.cpp -> /pytorch/third_party/nvfuser/csrc/dispatch.cpp [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_unroll.h -> /pytorch/third_party/nvfuser/csrc/lower_unroll.h [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_index_hoist.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index_hoist.cpp [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.cpp [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/ir_base_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_base_nodes.h [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.h -> /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.h [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/partial_split_map.cpp -> /pytorch/third_party/nvfuser/csrc/partial_split_map.cpp [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_expr_sort.h -> /pytorch/third_party/nvfuser/csrc/lower_expr_sort.h [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/lower_alias_memory.cpp -> /pytorch/third_party/nvfuser/csrc/lower_alias_memory.cpp [skipped, already hipified] +#10 34.37 /pytorch/third_party/nvfuser/csrc/expr_evaluator.h -> /pytorch/third_party/nvfuser/csrc/expr_evaluator.h [skipped, already hipified] +#10 34.38 /pytorch/third_party/nvfuser/csrc/lower_predicate.cpp -> /pytorch/third_party/nvfuser/csrc/lower_predicate.cpp [skipped, already hipified] +#10 34.38 /pytorch/third_party/nvfuser/csrc/index_compute.cpp -> /pytorch/third_party/nvfuser/csrc/index_compute.cpp [skipped, already hipified] +#10 34.38 /pytorch/third_party/nvfuser/csrc/predicate_compute.h -> /pytorch/third_party/nvfuser/csrc/predicate_compute.h [skipped, already hipified] +#10 34.38 /pytorch/third_party/nvfuser/csrc/compute_at_map.h -> /pytorch/third_party/nvfuser/csrc/compute_at_map.h [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/executor_utils.cpp -> /pytorch/third_party/nvfuser/csrc/executor_utils.cpp [ok] +#10 34.39 /pytorch/third_party/nvfuser/csrc/predicate_compute.cpp -> /pytorch/third_party/nvfuser/csrc/predicate_compute.cpp [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/register_interface.h -> /pytorch/third_party/nvfuser/csrc/register_interface.h [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/lower_index.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index.cpp [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/type_promotion.h -> /pytorch/third_party/nvfuser/csrc/type_promotion.h [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.h -> /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.h [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.h -> /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.h [skipped, already hipified] +#10 34.39 /pytorch/third_party/nvfuser/csrc/type.cpp -> /pytorch/third_party/nvfuser/csrc/type.cpp [ok] +#10 34.40 /pytorch/third_party/nvfuser/csrc/arith.cpp -> /pytorch/third_party/nvfuser/csrc/arith.cpp [skipped, already hipified] +#10 34.40 /pytorch/third_party/nvfuser/csrc/ir_graphviz.h -> /pytorch/third_party/nvfuser/csrc/ir_graphviz.h [skipped, already hipified] +#10 34.40 /pytorch/third_party/nvfuser/csrc/ir_iostream.cpp -> /pytorch/third_party/nvfuser/csrc/ir_iostream.cpp [skipped, already hipified] +#10 34.40 /pytorch/third_party/nvfuser/csrc/ir_utils.cpp -> /pytorch/third_party/nvfuser/csrc/ir_utils.cpp [skipped, already hipified] +#10 34.41 /pytorch/third_party/nvfuser/csrc/lower_loops.cpp -> /pytorch/third_party/nvfuser/csrc/lower_loops.cpp [skipped, already hipified] +#10 34.41 /pytorch/third_party/nvfuser/csrc/transform_rfactor.cpp -> /pytorch/third_party/nvfuser/csrc/transform_rfactor.cpp [skipped, already hipified] +#10 34.41 /pytorch/third_party/nvfuser/csrc/kernel_cache.h -> /pytorch/third_party/nvfuser/csrc/kernel_cache.h [skipped, already hipified] +#10 34.41 /pytorch/third_party/nvfuser/csrc/disjoint_set.h -> /pytorch/third_party/nvfuser/csrc/disjoint_set.h [skipped, already hipified] +#10 34.41 /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.cpp -> /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.cpp [skipped, already hipified] +#10 34.41 /pytorch/third_party/nvfuser/csrc/utils.cpp -> /pytorch/third_party/nvfuser/csrc/utils.cpp [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/parser.cpp -> /pytorch/third_party/nvfuser/csrc/parser.cpp [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/lower_replace_size.cpp -> /pytorch/third_party/nvfuser/csrc/lower_replace_size.cpp [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.h -> /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.h [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/transform_view.h -> /pytorch/third_party/nvfuser/csrc/transform_view.h [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/type_inference.h -> /pytorch/third_party/nvfuser/csrc/type_inference.h [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/type.h -> /pytorch/third_party/nvfuser/csrc/type.h [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/transform_iter.h -> /pytorch/third_party/nvfuser/csrc/transform_iter.h [skipped, already hipified] +#10 34.42 /pytorch/third_party/nvfuser/csrc/lower_magic_zero.h -> /pytorch/third_party/nvfuser/csrc/lower_magic_zero.h [skipped, already hipified] +#10 34.43 /pytorch/third_party/nvfuser/csrc/expr_evaluator.cpp -> /pytorch/third_party/nvfuser/csrc/expr_evaluator.cpp [skipped, already hipified] +#10 34.43 /pytorch/third_party/nvfuser/csrc/compute_at_map.cpp -> /pytorch/third_party/nvfuser/csrc/compute_at_map.cpp [skipped, already hipified] +#10 34.43 /pytorch/third_party/nvfuser/csrc/codegen.h -> /pytorch/third_party/nvfuser/csrc/codegen.h [skipped, already hipified] +#10 34.43 /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.h -> /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.h [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/fusion_segmenter.cpp -> /pytorch/third_party/nvfuser/csrc/fusion_segmenter.cpp [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/compute_at.cpp -> /pytorch/third_party/nvfuser/csrc/compute_at.cpp [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.cpp -> /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.cpp [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.cpp -> /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.cpp [ok] +#10 34.44 /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.cpp -> /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.cpp [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.h -> /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.h [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/parser.h -> /pytorch/third_party/nvfuser/csrc/parser.h [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/vectorization_info.h -> /pytorch/third_party/nvfuser/csrc/vectorization_info.h [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/dynamic_type.h -> /pytorch/third_party/nvfuser/csrc/dynamic_type.h [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/lower_unroll.cpp -> /pytorch/third_party/nvfuser/csrc/lower_unroll.cpp [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/kernel.h -> /pytorch/third_party/nvfuser/csrc/kernel.h [skipped, already hipified] +#10 34.44 /pytorch/third_party/nvfuser/csrc/lower_utils.cpp -> /pytorch/third_party/nvfuser/csrc/lower_utils.cpp [ok] +#10 34.44 /pytorch/third_party/nvfuser/csrc/instrumentation.cpp -> /pytorch/third_party/nvfuser/csrc/instrumentation.cpp [skipped, already hipified] +#10 34.45 /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.cpp -> /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.cpp [ok] +#10 34.45 /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.cpp -> /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.cpp [ok] +#10 34.45 /pytorch/third_party/nvfuser/csrc/kernel_cache.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_cache.cpp [ok] +#10 34.45 /pytorch/third_party/nvfuser/csrc/executor_launch_params.h -> /pytorch/third_party/nvfuser/csrc/executor_launch_params.h [skipped, already hipified] +#10 34.45 /pytorch/third_party/nvfuser/csrc/evaluator_common.h -> /pytorch/third_party/nvfuser/csrc/evaluator_common.h [skipped, already hipified] +#10 34.45 /pytorch/third_party/nvfuser/csrc/ir_cloner.cpp -> /pytorch/third_party/nvfuser/csrc/ir_cloner.cpp [skipped, already hipified] +#10 34.45 /pytorch/third_party/nvfuser/csrc/lower_double_buffer.cpp -> /pytorch/third_party/nvfuser/csrc/lower_double_buffer.cpp [skipped, already hipified] +#10 34.45 /pytorch/third_party/nvfuser/csrc/ir_utils.h -> /pytorch/third_party/nvfuser/csrc/ir_utils.h [skipped, already hipified] +#10 34.45 /pytorch/third_party/nvfuser/csrc/ir_builder.h -> /pytorch/third_party/nvfuser/csrc/ir_builder.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/lower_instrument.cpp -> /pytorch/third_party/nvfuser/csrc/lower_instrument.cpp [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/transform_view.cpp -> /pytorch/third_party/nvfuser/csrc/transform_view.cpp [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/lower_loops.h -> /pytorch/third_party/nvfuser/csrc/lower_loops.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.cpp -> /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.cpp [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/kernel.cpp -> /pytorch/third_party/nvfuser/csrc/kernel.cpp [ok] +#10 34.46 /pytorch/third_party/nvfuser/csrc/lower_index_compute.h -> /pytorch/third_party/nvfuser/csrc/lower_index_compute.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/compute_at.h -> /pytorch/third_party/nvfuser/csrc/compute_at.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/transform_replay.h -> /pytorch/third_party/nvfuser/csrc/transform_replay.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.h -> /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/instrumentation.h -> /pytorch/third_party/nvfuser/csrc/instrumentation.h [ok] +#10 34.46 /pytorch/third_party/nvfuser/csrc/mutator.h -> /pytorch/third_party/nvfuser/csrc/mutator.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/fusion_segmenter.h -> /pytorch/third_party/nvfuser/csrc/fusion_segmenter.h [skipped, already hipified] +#10 34.46 /pytorch/third_party/nvfuser/csrc/lower_instrument.h -> /pytorch/third_party/nvfuser/csrc/lower_instrument.h [skipped, already hipified] +#10 34.47 /pytorch/third_party/nvfuser/csrc/root_domain_map.h -> /pytorch/third_party/nvfuser/csrc/root_domain_map.h [skipped, already hipified] +#10 34.47 /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.h -> /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.h [skipped, already hipified] +#10 34.47 /pytorch/third_party/nvfuser/csrc/lower_expr_sort.cpp -> /pytorch/third_party/nvfuser/csrc/lower_expr_sort.cpp [skipped, already hipified] +#10 34.47 /pytorch/third_party/nvfuser/csrc/contiguity.cpp -> /pytorch/third_party/nvfuser/csrc/contiguity.cpp [skipped, already hipified] +#10 34.47 /pytorch/third_party/nvfuser/csrc/lower_replace_size.h -> /pytorch/third_party/nvfuser/csrc/lower_replace_size.h [skipped, already hipified] +#10 34.47 /pytorch/third_party/nvfuser/csrc/executor.cpp -> /pytorch/third_party/nvfuser/csrc/executor.cpp [ok] +#10 34.47 /pytorch/third_party/nvfuser/csrc/ir_cloner.h -> /pytorch/third_party/nvfuser/csrc/ir_cloner.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/tensor_view.cpp -> /pytorch/third_party/nvfuser/csrc/tensor_view.cpp [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/mma_type.h -> /pytorch/third_party/nvfuser/csrc/mma_type.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/ir_printer.h -> /pytorch/third_party/nvfuser/csrc/ir_printer.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/evaluator_common.cpp -> /pytorch/third_party/nvfuser/csrc/evaluator_common.cpp [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.cpp -> /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.cpp [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/ir_all_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_all_nodes.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.cpp -> /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.cpp [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/lower_utils.h -> /pytorch/third_party/nvfuser/csrc/lower_utils.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.h -> /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/non_divisible_split.cpp -> /pytorch/third_party/nvfuser/csrc/non_divisible_split.cpp [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/mma_type.cpp -> /pytorch/third_party/nvfuser/csrc/mma_type.cpp [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/contiguity.h -> /pytorch/third_party/nvfuser/csrc/contiguity.h [skipped, already hipified] +#10 34.48 /pytorch/third_party/nvfuser/csrc/executor_launch_params.cpp -> /pytorch/third_party/nvfuser/csrc/executor_launch_params.cpp [ok] +#10 34.48 /pytorch/third_party/nvfuser/csrc/dispatch.h -> /pytorch/third_party/nvfuser/csrc/dispatch.h [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/lower_sync_information.cpp -> /pytorch/third_party/nvfuser/csrc/lower_sync_information.cpp [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/lower_divisible_split.cpp -> /pytorch/third_party/nvfuser/csrc/lower_divisible_split.cpp [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/arith.h -> /pytorch/third_party/nvfuser/csrc/arith.h [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/executor.h -> /pytorch/third_party/nvfuser/csrc/executor.h [ok] +#10 34.49 /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.h -> /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.h [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/transform_iter.cpp -> /pytorch/third_party/nvfuser/csrc/transform_iter.cpp [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/kernel_ir.h -> /pytorch/third_party/nvfuser/csrc/kernel_ir.h [skipped, already hipified] +#10 34.49 /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.h -> /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/ir_base_nodes.cpp -> /pytorch/third_party/nvfuser/csrc/ir_base_nodes.cpp [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/lower_index.h -> /pytorch/third_party/nvfuser/csrc/lower_index.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/grouped_reduction.h -> /pytorch/third_party/nvfuser/csrc/grouped_reduction.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/partition.h -> /pytorch/third_party/nvfuser/csrc/partition.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/lower_alias_memory.h -> /pytorch/third_party/nvfuser/csrc/lower_alias_memory.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.h -> /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.h -> /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/lower_index_hoist.h -> /pytorch/third_party/nvfuser/csrc/lower_index_hoist.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/transform_rfactor.h -> /pytorch/third_party/nvfuser/csrc/transform_rfactor.h [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.h -> /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.h [ok] +#10 34.50 /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.cpp -> /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.cpp [skipped, already hipified] +#10 34.50 /pytorch/third_party/nvfuser/csrc/executor_utils.h -> /pytorch/third_party/nvfuser/csrc/executor_utils.h [ok] +#10 34.50 /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.h -> /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.h [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/graph_fuser.cpp -> /pytorch/third_party/nvfuser/csrc/graph_fuser.cpp [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/ir_builder.cpp -> /pytorch/third_party/nvfuser/csrc/ir_builder.cpp [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/index_compute.h -> /pytorch/third_party/nvfuser/csrc/index_compute.h [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/ir_interface_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_interface_nodes.h [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.h -> /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.h [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/transform_replay.cpp -> /pytorch/third_party/nvfuser/csrc/transform_replay.cpp [skipped, already hipified] +#10 34.51 /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.cpp -> /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.cpp [skipped, already hipified] +#10 34.52 /pytorch/third_party/nvfuser/csrc/lower_allocation.cpp -> /pytorch/third_party/nvfuser/csrc/lower_allocation.cpp [skipped, already hipified] +#10 34.52 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.h [skipped, already hipified] +#10 34.52 /pytorch/third_party/nvfuser/csrc/scheduler/utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/utils.h [skipped, already hipified] +#10 34.52 /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.cpp [skipped, already hipified] +#10 34.52 /pytorch/third_party/nvfuser/csrc/scheduler/registry.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/registry.cpp [ok] +#10 34.53 /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.cpp [skipped, already hipified] +#10 34.53 /pytorch/third_party/nvfuser/csrc/scheduler/transpose.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose.cpp [ok] +#10 34.53 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.cpp [ok] +#10 34.53 /pytorch/third_party/nvfuser/csrc/scheduler/matmul.h -> /pytorch/third_party/nvfuser/csrc/scheduler/matmul.h [skipped, already hipified] +#10 34.53 /pytorch/third_party/nvfuser/csrc/scheduler/reduction.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction.cpp [ok] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/utils.cpp [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/debug_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/debug_utils.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/normalization.h -> /pytorch/third_party/nvfuser/csrc/scheduler/normalization.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/normalization.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/normalization.cpp [ok] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_heuristic.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/registry.h -> /pytorch/third_party/nvfuser/csrc/scheduler/registry.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/transpose_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose_heuristic.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_heuristic.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/heuristic.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/reduction.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/all_schedulers.h -> /pytorch/third_party/nvfuser/csrc/scheduler/all_schedulers.h [skipped, already hipified] +#10 34.54 /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.h -> /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.h [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.cpp [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.cpp [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/compile_time_info.h -> /pytorch/third_party/nvfuser/csrc/scheduler/compile_time_info.h [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.h [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/matmul.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/matmul.cpp [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/transpose.h -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose.h [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.h [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.h [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.cpp [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings_extension.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings_extension.cpp [skipped, already hipified] +#10 34.55 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.cpp [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.cpp [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_record.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_record.h [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.h [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.h [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.h [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.cpp [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.h [skipped, already hipified] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_cache.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_cache.cpp [ok] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_definition.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_definition.cpp [ok] +#10 34.56 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_record.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_record.cpp [ok] +#10 34.56 /pytorch/third_party/nvfuser/csrc/ops/composite.h -> /pytorch/third_party/nvfuser/csrc/ops/composite.h [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/ops/normalization.h -> /pytorch/third_party/nvfuser/csrc/ops/normalization.h [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/ops/normalization.cpp -> /pytorch/third_party/nvfuser/csrc/ops/normalization.cpp [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/ops/composite.cpp -> /pytorch/third_party/nvfuser/csrc/ops/composite.cpp [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/ops/all_ops.h -> /pytorch/third_party/nvfuser/csrc/ops/all_ops.h [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/ops/alias.h -> /pytorch/third_party/nvfuser/csrc/ops/alias.h [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/ops/alias.cpp -> /pytorch/third_party/nvfuser/csrc/ops/alias.cpp [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/csrc/docs/documentation.h -> /pytorch/third_party/nvfuser/csrc/docs/documentation.h [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/examples/sinh_extension/main.cpp -> /pytorch/third_party/nvfuser/examples/sinh_extension/main.cpp [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/examples/sinh_libtorch/main.cpp -> /pytorch/third_party/nvfuser/examples/sinh_libtorch/main.cpp [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/fp16_support.cu -> /pytorch/third_party/nvfuser/runtime/fp16_support.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/welford.cu -> /pytorch/third_party/nvfuser/runtime/welford.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/swizzle.cu -> /pytorch/third_party/nvfuser/runtime/swizzle.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/tensorcore.cu -> /pytorch/third_party/nvfuser/runtime/tensorcore.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/grid_sync.cu -> /pytorch/third_party/nvfuser/runtime/grid_sync.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/array_rocm.cu -> /pytorch/third_party/nvfuser/runtime/array_rocm.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/tensor.cu -> /pytorch/third_party/nvfuser/runtime/tensor.cu [skipped, already hipified] +#10 34.57 /pytorch/third_party/nvfuser/runtime/random_numbers.cu -> /pytorch/third_party/nvfuser/runtime/random_numbers.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/tuple.cu -> /pytorch/third_party/nvfuser/runtime/tuple.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/block_sync_default.cu -> /pytorch/third_party/nvfuser/runtime/block_sync_default.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/array.cu -> /pytorch/third_party/nvfuser/runtime/array.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/warp_rocm.cu -> /pytorch/third_party/nvfuser/runtime/warp_rocm.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/type_traits.cu -> /pytorch/third_party/nvfuser/runtime/type_traits.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/bf16_support.cu -> /pytorch/third_party/nvfuser/runtime/bf16_support.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/memory.cu -> /pytorch/third_party/nvfuser/runtime/memory.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/warp.cu -> /pytorch/third_party/nvfuser/runtime/warp.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/fused_reduction.cu -> /pytorch/third_party/nvfuser/runtime/fused_reduction.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/grid_broadcast.cu -> /pytorch/third_party/nvfuser/runtime/grid_broadcast.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/fused_welford_helper.cu -> /pytorch/third_party/nvfuser/runtime/fused_welford_helper.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/fused_welford_impl.cu -> /pytorch/third_party/nvfuser/runtime/fused_welford_impl.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/index_utils.cu -> /pytorch/third_party/nvfuser/runtime/index_utils.cu [skipped, already hipified] +#10 34.58 /pytorch/third_party/nvfuser/runtime/bf16_support_rocm.cu -> /pytorch/third_party/nvfuser/runtime/bf16_support_rocm.cu [skipped, already hipified] +#10 34.60 /pytorch/third_party/nvfuser/test/test_gpu2.cpp -> /pytorch/third_party/nvfuser/test/test_gpu2.cpp [ok] +#10 34.60 /pytorch/third_party/nvfuser/test/test_gpu_tensor_factories.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_tensor_factories.cpp [ok] +#10 34.61 /pytorch/third_party/nvfuser/test/test_gpu3.cpp -> /pytorch/third_party/nvfuser/test/test_gpu3.cpp [ok] +#10 34.61 /pytorch/third_party/nvfuser/test/test_utils.h -> /pytorch/third_party/nvfuser/test/test_utils.h [ok] +#10 34.61 /pytorch/third_party/nvfuser/test/test_gpu_transpose.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_transpose.cpp [ok] +#10 34.62 /pytorch/third_party/nvfuser/test/test_gpu_shift.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_shift.cpp [ok] +#10 34.63 /pytorch/third_party/nvfuser/test/test_gpu_tensorcore.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_tensorcore.cpp [ok] +#10 34.63 /pytorch/third_party/nvfuser/test/test_gpu_validator.h -> /pytorch/third_party/nvfuser/test/test_gpu_validator.h [ok] +#10 34.64 /pytorch/third_party/nvfuser/test/test_gpu_fused_reduction.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_fused_reduction.cpp [ok] +#10 34.64 /pytorch/third_party/nvfuser/test/test_gpu_utils.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_utils.cpp [ok] +#10 34.64 /pytorch/third_party/nvfuser/test/test_gpu_view.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_view.cpp [ok] +#10 34.64 /pytorch/third_party/nvfuser/test/test_gpu_rng.cu -> /pytorch/third_party/nvfuser/test/test_gpu_rng.cu [ok] +#10 34.66 /pytorch/third_party/nvfuser/test/test_gpu1.cpp -> /pytorch/third_party/nvfuser/test/test_gpu1.cpp [ok] +#10 34.66 Successfully preprocessed all matching files. +#10 34.68 Running setup.py bdist_wheel... +#10 34.84 Building wheel torch-2.0.0a0+gite9ebda2 +#10 34.90 -- Building version 2.0.0a0+gite9ebda2 +#10 34.91 cmake -GNinja -DBUILD_PYTHON=True -DBUILD_TEST=True -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/pytorch/torch -DCMAKE_POLICY_VERSION_MINIMUM=3.18 -DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages -DNUMPY_INCLUDE_DIR=/usr/local/lib/python3.10/dist-packages/numpy/core/include -DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.10 -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 -DTORCH_BUILD_VERSION=2.0.0a0+gite9ebda2 -DUSE_NINJA=1 -DUSE_NUMPY=True /pytorch +#10 34.99 -- The CXX compiler identification is GNU 11.3.0 +#10 35.02 -- The C compiler identification is GNU 11.3.0 +#10 35.03 -- Detecting CXX compiler ABI info +#10 35.08 -- Detecting CXX compiler ABI info - done +#10 35.09 -- Check for working CXX compiler: /usr/bin/c++ - skipped +#10 35.09 -- Detecting CXX compile features +#10 35.09 -- Detecting CXX compile features - done +#10 35.09 -- Detecting C compiler ABI info +#10 35.13 -- Detecting C compiler ABI info - done +#10 35.14 -- Check for working C compiler: /usr/bin/cc - skipped +#10 35.14 -- Detecting C compile features +#10 35.14 -- Detecting C compile features - done +#10 35.14 -- /usr/bin/c++ /pytorch/torch/abi-check.cpp -o /pytorch/build/abi-check +#10 35.37 -- Determined _GLIBCXX_USE_CXX11_ABI=1 +#10 35.37 -- Not forcing any particular BLAS to be found +#10 35.37 -- Could not find ccache. Consider installing ccache to speed up compilation. +#10 35.37 -- Performing Test COMPILER_WORKS +#10 35.41 -- Performing Test COMPILER_WORKS - Success +#10 35.42 -- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING +#10 35.44 -- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING - Failed +#10 35.44 -- Turning off deprecation warning due to glog. +#10 35.44 -- Performing Test C_HAS_AVX_1 +#10 35.60 -- Performing Test C_HAS_AVX_1 - Failed +#10 35.60 -- Performing Test C_HAS_AVX_2 +#10 35.78 -- Performing Test C_HAS_AVX_2 - Success +#10 35.78 -- Performing Test C_HAS_AVX2_1 +#10 35.94 -- Performing Test C_HAS_AVX2_1 - Failed +#10 35.94 -- Performing Test C_HAS_AVX2_2 +#10 36.12 -- Performing Test C_HAS_AVX2_2 - Success +#10 36.12 -- Performing Test C_HAS_AVX512_1 +#10 36.28 -- Performing Test C_HAS_AVX512_1 - Failed +#10 36.28 -- Performing Test C_HAS_AVX512_2 +#10 36.43 -- Performing Test C_HAS_AVX512_2 - Failed +#10 36.43 -- Performing Test C_HAS_AVX512_3 +#10 36.59 -- Performing Test C_HAS_AVX512_3 - Failed +#10 36.59 -- Performing Test CXX_HAS_AVX_1 +#10 36.75 -- Performing Test CXX_HAS_AVX_1 - Failed +#10 36.75 -- Performing Test CXX_HAS_AVX_2 +#10 36.93 -- Performing Test CXX_HAS_AVX_2 - Success +#10 36.93 -- Performing Test CXX_HAS_AVX2_1 +#10 37.10 -- Performing Test CXX_HAS_AVX2_1 - Failed +#10 37.10 -- Performing Test CXX_HAS_AVX2_2 +#10 37.28 -- Performing Test CXX_HAS_AVX2_2 - Success +#10 37.28 -- Performing Test CXX_HAS_AVX512_1 +#10 37.45 -- Performing Test CXX_HAS_AVX512_1 - Failed +#10 37.45 -- Performing Test CXX_HAS_AVX512_2 +#10 37.59 -- Performing Test CXX_HAS_AVX512_2 - Failed +#10 37.59 -- Performing Test CXX_HAS_AVX512_3 +#10 37.76 -- Performing Test CXX_HAS_AVX512_3 - Failed +#10 37.76 -- Current compiler supports avx2 extension. Will build perfkernels. +#10 37.76 -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS +#10 37.99 -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success +#10 37.99 -- Current compiler supports avx512f extension. Will build fbgemm. +#10 37.99 -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY +#10 38.04 -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success +#10 38.05 -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY +#10 38.10 -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success +#10 38.10 -- Performing Test COMPILER_SUPPORTS_RDYNAMIC +#10 38.15 -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success +#10 38.16 CUDA_TOOLKIT_ROOT_DIR not found or specified +#10 38.17 -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) +#10 38.17 CMake Warning at cmake/public/cuda.cmake:31 (message): +#10 38.17 Caffe2: CUDA cannot be found. Depending on whether you are building Caffe2 +#10 38.17 or a Caffe2 dependent library, the next warning / error will give you more +#10 38.17 info. +#10 38.17 Call Stack (most recent call first): +#10 38.17 cmake/Dependencies.cmake:43 (include) +#10 38.17 CMakeLists.txt:717 (include) +#10 38.17 +#10 38.17 +#10 38.17 CMake Warning at cmake/Dependencies.cmake:66 (message): +#10 38.17 Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. +#10 38.17 Call Stack (most recent call first): +#10 38.17 CMakeLists.txt:717 (include) +#10 38.17 +#10 38.17 +#10 38.17 -- Building using own protobuf under third_party per request. +#10 38.17 -- Use custom protobuf build. +#10 38.17 -- +#10 38.17 -- 3.13.0.0 +#10 38.17 -- Looking for pthread.h +#10 38.22 -- Looking for pthread.h - found +#10 38.22 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +#10 38.26 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +#10 38.27 -- Found Threads: TRUE +#10 38.27 -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS +#10 38.35 -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success +#10 38.36 -- Caffe2 protobuf include directory: $$ +#10 38.36 -- Trying to find preferred BLAS backend of choice: MKL +#10 38.36 -- MKL_THREADING = OMP +#10 38.36 -- Looking for sys/types.h +#10 38.41 -- Looking for sys/types.h - found +#10 38.41 -- Looking for stdint.h +#10 38.45 -- Looking for stdint.h - found +#10 38.45 -- Looking for stddef.h +#10 38.49 -- Looking for stddef.h - found +#10 38.49 -- Check size of void* +#10 38.53 -- Check size of void* - done +#10 38.55 -- MKL_THREADING = OMP +#10 38.57 CMake Warning at cmake/Dependencies.cmake:226 (message): +#10 38.57 MKL could not be found. Defaulting to Eigen +#10 38.57 Call Stack (most recent call first): +#10 38.57 CMakeLists.txt:717 (include) +#10 38.57 +#10 38.57 +#10 38.57 CMake Warning at cmake/Dependencies.cmake:263 (message): +#10 38.57 Preferred BLAS (MKL) cannot be found, now searching for a general BLAS +#10 38.57 library +#10 38.57 Call Stack (most recent call first): +#10 38.57 CMakeLists.txt:717 (include) +#10 38.57 +#10 38.57 +#10 38.57 -- MKL_THREADING = OMP +#10 38.57 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 38.57 -- Library mkl_intel_lp64: not found +#10 38.57 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_intel_lp64: not found +#10 38.58 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_intel: not found +#10 38.58 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_intel: not found +#10 38.58 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_gf_lp64: not found +#10 38.58 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_gf_lp64: not found +#10 38.58 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_gf: not found +#10 38.58 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 38.58 -- Library mkl_gf: not found +#10 38.58 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_intel_lp64: not found +#10 38.58 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_intel_lp64: not found +#10 38.58 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_intel: not found +#10 38.58 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_intel: not found +#10 38.58 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_gf_lp64: not found +#10 38.58 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_gf_lp64: not found +#10 38.58 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_gf: not found +#10 38.58 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 38.58 -- Library mkl_gf: not found +#10 38.58 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 38.58 -- Library mkl_intel_lp64: not found +#10 38.58 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 38.58 -- Library mkl_intel_lp64: not found +#10 38.58 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 38.58 -- Library mkl_intel: not found +#10 38.58 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 38.58 -- Library mkl_intel: not found +#10 38.59 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 38.59 -- Library mkl_gf_lp64: not found +#10 38.59 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 38.59 -- Library mkl_gf_lp64: not found +#10 38.59 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 38.59 -- Library mkl_gf: not found +#10 38.59 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 38.59 -- Library mkl_gf: not found +#10 38.59 -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m - dl] +#10 38.59 -- Library mkl_intel_lp64: not found +#10 38.59 -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] +#10 38.59 -- Library mkl_intel: not found +#10 38.59 -- Checking for [mkl_gf_lp64 - mkl_sequential - mkl_core - m - dl] +#10 38.59 -- Library mkl_gf_lp64: not found +#10 38.59 -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] +#10 38.59 -- Library mkl_gf: not found +#10 38.59 -- Checking for [mkl_intel_lp64 - mkl_core - gomp - pthread - m - dl] +#10 38.59 -- Library mkl_intel_lp64: not found +#10 38.59 -- Checking for [mkl_intel - mkl_core - gomp - pthread - m - dl] +#10 38.59 -- Library mkl_intel: not found +#10 38.59 -- Checking for [mkl_gf_lp64 - mkl_core - gomp - pthread - m - dl] +#10 38.59 -- Library mkl_gf_lp64: not found +#10 38.59 -- Checking for [mkl_gf - mkl_core - gomp - pthread - m - dl] +#10 38.59 -- Library mkl_gf: not found +#10 38.59 -- Checking for [mkl_intel_lp64 - mkl_core - iomp5 - pthread - m - dl] +#10 38.59 -- Library mkl_intel_lp64: not found +#10 38.59 -- Checking for [mkl_intel - mkl_core - iomp5 - pthread - m - dl] +#10 38.59 -- Library mkl_intel: not found +#10 38.59 -- Checking for [mkl_gf_lp64 - mkl_core - iomp5 - pthread - m - dl] +#10 38.59 -- Library mkl_gf_lp64: not found +#10 38.59 -- Checking for [mkl_gf - mkl_core - iomp5 - pthread - m - dl] +#10 38.59 -- Library mkl_gf: not found +#10 38.59 -- Checking for [mkl_intel_lp64 - mkl_core - pthread - m - dl] +#10 38.59 -- Library mkl_intel_lp64: not found +#10 38.59 -- Checking for [mkl_intel - mkl_core - pthread - m - dl] +#10 38.59 -- Library mkl_intel: not found +#10 38.59 -- Checking for [mkl_gf_lp64 - mkl_core - pthread - m - dl] +#10 38.60 -- Library mkl_gf_lp64: not found +#10 38.60 -- Checking for [mkl_gf - mkl_core - pthread - m - dl] +#10 38.60 -- Library mkl_gf: not found +#10 38.60 -- Checking for [mkl - guide - pthread - m] +#10 38.60 -- Library mkl: not found +#10 38.60 -- MKL library not found +#10 38.60 -- Checking for [blis] +#10 38.60 -- Library blis: BLAS_blis_LIBRARY-NOTFOUND +#10 38.60 -- Checking for [Accelerate] +#10 38.60 -- Library Accelerate: BLAS_Accelerate_LIBRARY-NOTFOUND +#10 38.60 -- Checking for [vecLib] +#10 38.60 -- Library vecLib: BLAS_vecLib_LIBRARY-NOTFOUND +#10 38.60 -- Checking for [flexiblas] +#10 38.60 -- Library flexiblas: BLAS_flexiblas_LIBRARY-NOTFOUND +#10 38.60 -- Checking for [openblas] +#10 38.60 -- Library openblas: /usr/lib/x86_64-linux-gnu/libopenblas.so +#10 38.60 -- Looking for sgemm_ +#10 38.66 -- Looking for sgemm_ - found +#10 38.66 -- Performing Test BLAS_F2C_DOUBLE_WORKS +#10 38.74 -- Performing Test BLAS_F2C_DOUBLE_WORKS - Failed +#10 38.74 -- Performing Test BLAS_F2C_FLOAT_WORKS +#10 38.81 -- Performing Test BLAS_F2C_FLOAT_WORKS - Success +#10 38.81 -- Performing Test BLAS_USE_CBLAS_DOT +#10 38.88 -- Performing Test BLAS_USE_CBLAS_DOT - Success +#10 38.88 -- Looking for sbgemm_ +#10 38.93 -- Looking for sbgemm_ - not found +#10 38.93 -- Found a library with BLAS API (open). Full path: (/usr/lib/x86_64-linux-gnu/libopenblas.so) +#10 38.93 -- Using pocketfft in directory: /pytorch/third_party/pocketfft/ +#10 38.95 -- The ASM compiler identification is GNU +#10 38.95 -- Found assembler: /usr/bin/cc +#10 38.97 -- Brace yourself, we are building NNPACK +#10 38.97 -- Performing Test NNPACK_ARCH_IS_X86_32 +#10 38.99 -- Performing Test NNPACK_ARCH_IS_X86_32 - Failed +#10 39.00 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 39.00 -- NNPACK backend is x86-64 +#10 39.30 -- Found Python: /usr/bin/python3.10 (found version "3.10.12") found components: Interpreter +#10 39.31 -- Failed to find LLVM FileCheck +#10 39.31 -- Found Git: /usr/bin/git (found version "2.34.1") +#10 39.33 -- git version: v1.6.1 normalized to 1.6.1 +#10 39.33 -- Version: 1.6.1 +#10 39.33 -- Looking for shm_open in rt +#10 39.37 -- Looking for shm_open in rt - found +#10 39.37 -- Performing Test HAVE_CXX_FLAG_STD_CXX11 +#10 39.42 -- Performing Test HAVE_CXX_FLAG_STD_CXX11 - Success +#10 39.42 -- Performing Test HAVE_CXX_FLAG_WALL +#10 39.47 -- Performing Test HAVE_CXX_FLAG_WALL - Success +#10 39.47 -- Performing Test HAVE_CXX_FLAG_WEXTRA +#10 39.52 -- Performing Test HAVE_CXX_FLAG_WEXTRA - Success +#10 39.53 -- Performing Test HAVE_CXX_FLAG_WSHADOW +#10 39.58 -- Performing Test HAVE_CXX_FLAG_WSHADOW - Success +#10 39.58 -- Performing Test HAVE_CXX_FLAG_WERROR +#10 39.63 -- Performing Test HAVE_CXX_FLAG_WERROR - Success +#10 39.63 -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE +#10 39.68 -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE - Success +#10 39.68 -- Performing Test HAVE_CXX_FLAG_PEDANTIC +#10 39.73 -- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success +#10 39.73 -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS +#10 39.78 -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success +#10 39.78 -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 +#10 39.81 -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Failed +#10 39.81 -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING +#10 39.86 -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success +#10 39.86 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS +#10 39.92 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success +#10 39.92 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED +#10 39.97 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED - Success +#10 39.97 -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING +#10 40.02 -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success +#10 40.02 -- Performing Test HAVE_CXX_FLAG_WD654 +#10 40.04 -- Performing Test HAVE_CXX_FLAG_WD654 - Failed +#10 40.04 -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY +#10 40.07 -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Failed +#10 40.07 -- Performing Test HAVE_CXX_FLAG_COVERAGE +#10 40.12 -- Performing Test HAVE_CXX_FLAG_COVERAGE - Success +#10 40.12 -- Performing Test HAVE_STD_REGEX +#10 40.12 -- Performing Test HAVE_STD_REGEX +#10 41.71 -- Performing Test HAVE_STD_REGEX -- success +#10 41.71 -- Performing Test HAVE_GNU_POSIX_REGEX +#10 41.71 -- Performing Test HAVE_GNU_POSIX_REGEX +#10 41.73 -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile +#10 41.73 -- Performing Test HAVE_POSIX_REGEX +#10 41.73 -- Performing Test HAVE_POSIX_REGEX +#10 41.89 -- Performing Test HAVE_POSIX_REGEX -- success +#10 41.89 -- Performing Test HAVE_STEADY_CLOCK +#10 41.89 -- Performing Test HAVE_STEADY_CLOCK +#10 41.99 -- Performing Test HAVE_STEADY_CLOCK -- success +#10 42.01 -- Performing Test COMPILER_SUPPORTS_AVX512 +#10 42.07 -- Performing Test COMPILER_SUPPORTS_AVX512 - Success +#10 42.22 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 42.22 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 42.22 does not match the name of the calling package (OpenMP). This can lead to +#10 42.22 problems in calling code that expects `find_package` result variables +#10 42.22 (e.g., `_FOUND`) to follow a certain pattern. +#10 42.22 Call Stack (most recent call first): +#10 42.22 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 42.22 third_party/fbgemm/CMakeLists.txt:85 (find_package) +#10 42.22 This warning is for project developers. Use -Wno-dev to suppress it. +#10 42.22 +#10 42.22 -- Found OpenMP_C: -fopenmp (found version "4.5") +#10 42.28 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 42.28 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 42.28 does not match the name of the calling package (OpenMP). This can lead to +#10 42.28 problems in calling code that expects `find_package` result variables +#10 42.28 (e.g., `_FOUND`) to follow a certain pattern. +#10 42.28 Call Stack (most recent call first): +#10 42.28 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 42.28 third_party/fbgemm/CMakeLists.txt:85 (find_package) +#10 42.28 This warning is for project developers. Use -Wno-dev to suppress it. +#10 42.28 +#10 42.28 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#10 42.28 -- Found OpenMP: TRUE (found version "4.5") +#10 42.28 CMake Warning at third_party/fbgemm/CMakeLists.txt:87 (message): +#10 42.28 OpenMP found! OpenMP_C_INCLUDE_DIRS = +#10 42.28 +#10 42.28 +#10 42.35 CMake Warning at third_party/fbgemm/CMakeLists.txt:186 (message): +#10 42.35 ========== +#10 42.35 +#10 42.35 +#10 42.35 CMake Warning at third_party/fbgemm/CMakeLists.txt:187 (message): +#10 42.35 CMAKE_BUILD_TYPE = Release +#10 42.35 +#10 42.35 +#10 42.35 CMake Warning at third_party/fbgemm/CMakeLists.txt:188 (message): +#10 42.35 CMAKE_CXX_FLAGS_DEBUG is -g +#10 42.35 +#10 42.35 +#10 42.35 CMake Warning at third_party/fbgemm/CMakeLists.txt:189 (message): +#10 42.35 CMAKE_CXX_FLAGS_RELEASE is -O3 -DNDEBUG +#10 42.35 +#10 42.35 +#10 42.35 CMake Warning at third_party/fbgemm/CMakeLists.txt:190 (message): +#10 42.35 ========== +#10 42.35 +#10 42.35 +#10 42.35 -- Performing Test __CxxFlag__fno_threadsafe_statics +#10 42.40 -- Performing Test __CxxFlag__fno_threadsafe_statics - Success +#10 42.40 -- Performing Test __CxxFlag__fno_semantic_interposition +#10 42.45 -- Performing Test __CxxFlag__fno_semantic_interposition - Success +#10 42.46 -- Performing Test __CxxFlag__fmerge_all_constants +#10 42.51 -- Performing Test __CxxFlag__fmerge_all_constants - Success +#10 42.51 -- Performing Test __CxxFlag__fno_enforce_eh_specs +#10 42.56 -- Performing Test __CxxFlag__fno_enforce_eh_specs - Success +#10 42.56 ** AsmJit Summary ** +#10 42.56 ASMJIT_DIR=/pytorch/third_party/fbgemm/third_party/asmjit +#10 42.56 ASMJIT_TEST=FALSE +#10 42.56 ASMJIT_TARGET_TYPE=STATIC +#10 42.56 ASMJIT_DEPS=pthread;rt +#10 42.56 ASMJIT_LIBS=asmjit;pthread;rt +#10 42.56 ASMJIT_CFLAGS=-DASMJIT_STATIC +#10 42.56 ASMJIT_PRIVATE_CFLAGS=-Wall;-Wextra;-Wconversion;-fno-math-errno;-fno-threadsafe-statics;-fno-semantic-interposition;-DASMJIT_STATIC +#10 42.56 ASMJIT_PRIVATE_CFLAGS_DBG= +#10 42.56 ASMJIT_PRIVATE_CFLAGS_REL=-O2;-fmerge-all-constants;-fno-enforce-eh-specs +#10 42.57 -- Found Numa: /usr/include +#10 42.57 -- Found Numa (include: /usr/include, library: /usr/lib/x86_64-linux-gnu/libnuma.so) +#10 42.57 -- Using third party subdirectory Eigen. +#10 42.58 -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.12", minimum required is "3.0") +#10 42.59 -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 (found suitable version "3.10.12", minimum required is "3.0") +#10 42.59 -- Using third_party/pybind11. +#10 42.59 -- pybind11 include dirs: /pytorch/cmake/../third_party/pybind11/include +#10 42.64 -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) +#10 42.70 -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) +#10 42.70 -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) +#10 42.70 CMake Warning at cmake/Dependencies.cmake:1179 (message): +#10 42.70 Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF +#10 42.70 Call Stack (most recent call first): +#10 42.70 CMakeLists.txt:717 (include) +#10 42.70 +#10 42.70 +#10 42.70 -- Found OpenMP_C: -fopenmp +#10 42.70 -- Found OpenMP_CXX: -fopenmp +#10 42.70 -- Found OpenMP: TRUE +#10 42.70 -- Adding OpenMP CXX_FLAGS: -fopenmp +#10 42.70 -- Will link against OpenMP libraries: /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so;/usr/lib/x86_64-linux-gnu/libpthread.a +#10 42.70 -- Disabling kernel asserts for ROCm +#10 42.70 Building PyTorch for GPU arch: gfx803 +#10 42.88 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#10 42.89 HIP VERSION: 5.4.22803-474e8620 +#10 42.94 -- Caffe2: Header version is: 5.4.2 +#10 42.94 +#10 42.94 ***** ROCm version from rocm_version.h **** +#10 42.94 +#10 42.94 ROCM_VERSION_DEV: 5.4.2 +#10 42.94 ROCM_VERSION_DEV_MAJOR: 5 +#10 42.94 ROCM_VERSION_DEV_MINOR: 4 +#10 42.94 ROCM_VERSION_DEV_PATCH: 2 +#10 42.94 ROCM_VERSION_DEV_INT: 50402 +#10 42.94 HIP_VERSION_MAJOR: 5 +#10 42.94 HIP_VERSION_MINOR: 4 +#10 42.94 TORCH_HIP_VERSION: 504 +#10 42.94 +#10 42.94 ***** Library versions from dpkg ***** +#10 42.94 +#10 42.95 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#10 42.95 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#10 42.96 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#10 42.96 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#10 42.97 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#10 42.99 +#10 42.99 ***** Library versions from cmake find_package ***** +#10 42.99 +#10 43.00 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.00 hip VERSION: 5.4.22505 +#10 43.00 hsa-runtime64 VERSION: 1.7.50402 +#10 43.00 amd_comgr VERSION: 2.4.0 +#10 43.00 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.00 rocrand VERSION: 2.10.9 +#10 43.01 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.01 hiprand VERSION: 2.10.9 +#10 43.01 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.01 rocblas VERSION: 2.46.0 +#10 43.02 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.02 miopen VERSION: 2.19.0 +#10 43.03 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.03 hipfft VERSION: 1.0.10 +#10 43.03 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.03 hipsparse VERSION: 2.3.3 +#10 43.04 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.04 rccl VERSION: 2.13.4 +#10 43.05 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.05 rocprim VERSION: 2.10.9 +#10 43.05 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.05 hipcub VERSION: 2.10.12 +#10 43.06 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.06 rocthrust VERSION: 2.10.9 +#10 43.06 HIP library name: amdhip64 +#10 43.06 INFOCompiling with HIP for AMD. +#10 43.06 INFOForcing USE_SYSTEM_NCCL to ON since it's required by using RCCL +#10 43.06 TORCH_HIP_VERSION=504 is added as a compiler defines +#10 43.06 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.07 -- RCCL Found! +#10 43.08 -- Performing Test UV_LINT_W4 +#10 43.11 -- Performing Test UV_LINT_W4 - Failed +#10 43.11 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER_MSVC +#10 43.14 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER_MSVC - Failed +#10 43.14 -- Performing Test UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC +#10 43.16 -- Performing Test UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC - Failed +#10 43.17 -- Performing Test UV_LINT_NO_NONSTANDARD_MSVC +#10 43.19 -- Performing Test UV_LINT_NO_NONSTANDARD_MSVC - Failed +#10 43.19 -- Performing Test UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC +#10 43.22 -- Performing Test UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC - Failed +#10 43.22 -- Performing Test UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC +#10 43.25 -- Performing Test UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC - Failed +#10 43.25 -- Performing Test UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC +#10 43.27 -- Performing Test UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC - Failed +#10 43.27 -- Performing Test UV_LINT_NO_HIDES_LOCAL +#10 43.30 -- Performing Test UV_LINT_NO_HIDES_LOCAL - Failed +#10 43.30 -- Performing Test UV_LINT_NO_HIDES_PARAM +#10 43.33 -- Performing Test UV_LINT_NO_HIDES_PARAM - Failed +#10 43.33 -- Performing Test UV_LINT_NO_HIDES_GLOBAL +#10 43.35 -- Performing Test UV_LINT_NO_HIDES_GLOBAL - Failed +#10 43.35 -- Performing Test UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC +#10 43.38 -- Performing Test UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC - Failed +#10 43.38 -- Performing Test UV_LINT_NO_UNSAFE_MSVC +#10 43.41 -- Performing Test UV_LINT_NO_UNSAFE_MSVC - Failed +#10 43.41 -- Performing Test UV_LINT_WALL +#10 43.45 -- Performing Test UV_LINT_WALL - Success +#10 43.45 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER +#10 43.49 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER - Success +#10 43.49 -- Performing Test UV_LINT_STRICT_PROTOTYPES +#10 43.53 -- Performing Test UV_LINT_STRICT_PROTOTYPES - Success +#10 43.54 -- Performing Test UV_LINT_EXTRA +#10 43.58 -- Performing Test UV_LINT_EXTRA - Success +#10 43.58 -- Performing Test UV_LINT_UTF8_MSVC +#10 43.61 -- Performing Test UV_LINT_UTF8_MSVC - Failed +#10 43.61 -- Performing Test UV_F_STRICT_ALIASING +#10 43.65 -- Performing Test UV_F_STRICT_ALIASING - Success +#10 43.65 -- summary of build options: +#10 43.65 Install prefix: /pytorch/torch +#10 43.65 Target system: Linux +#10 43.65 Compiler: +#10 43.65 C compiler: /usr/bin/cc +#10 43.65 CFLAGS: +#10 43.65 +#10 43.66 -- Found uv: 1.38.1 (found version "1.38.1") +#10 43.66 CMake Warning at cmake/Dependencies.cmake:1404 (message): +#10 43.66 TensorPipe doesn't yet support ROCm +#10 43.66 Call Stack (most recent call first): +#10 43.66 CMakeLists.txt:717 (include) +#10 43.66 +#10 43.66 +#10 43.66 CMake Warning (dev) at third_party/gloo/CMakeLists.txt:21 (option): +#10 43.66 Policy CMP0077 is not set: option() honors normal variables. Run "cmake +#10 43.66 --help-policy CMP0077" for policy details. Use the cmake_policy command to +#10 43.66 set the policy and suppress this warning. +#10 43.66 +#10 43.66 For compatibility with older versions of CMake, option is clearing the +#10 43.66 normal variable 'BUILD_BENCHMARK'. +#10 43.66 This warning is for project developers. Use -Wno-dev to suppress it. +#10 43.66 +#10 43.66 -- Gloo build as SHARED library +#10 43.66 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#10 43.66 HIP library name: amdhip64 +#10 43.86 Successfully preprocessed all matching files. +#10 43.87 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 43.87 The package name passed to `find_package_handle_standard_args` (RCCL) does +#10 43.87 not match the name of the calling package (rccl). This can lead to +#10 43.87 problems in calling code that expects `find_package` result variables +#10 43.87 (e.g., `_FOUND`) to follow a certain pattern. +#10 43.87 Call Stack (most recent call first): +#10 43.87 third_party/gloo/cmake/Modules/Findrccl.cmake:43 (find_package_handle_standard_args) +#10 43.87 third_party/gloo/cmake/Dependencies.cmake:181 (find_package) +#10 43.87 third_party/gloo/CMakeLists.txt:111 (include) +#10 43.87 This warning is for project developers. Use -Wno-dev to suppress it. +#10 43.87 +#10 43.87 -- Found RCCL: /opt/rocm-5.4.2/include +#10 43.87 -- Determining RCCL version from the header file: /opt/rocm-5.4.2/include/rccl.h +#10 43.87 -- Found RCCL (include: /opt/rocm-5.4.2/include, library: /opt/rocm/lib/librccl.so) +#10 43.89 CMake Warning at cmake/Dependencies.cmake:1500 (message): +#10 43.89 Metal is only used in ios builds. +#10 43.89 Call Stack (most recent call first): +#10 43.89 CMakeLists.txt:717 (include) +#10 43.89 +#10 43.89 +#10 43.91 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 43.91 Generated: /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 43.91 Generated: /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 43.91 Generated: /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 44.14 -- +#10 44.14 -- ******** Summary ******** +#10 44.14 -- CMake version : 3.20.2 +#10 44.14 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 44.14 -- System : Linux +#10 44.14 -- C++ compiler : /usr/bin/c++ +#10 44.14 -- C++ compiler version : 11.3.0 +#10 44.14 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor +#10 44.14 -- Build type : Release +#10 44.14 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS +#10 44.14 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 44.14 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 44.14 -- CMAKE_MODULE_PATH : /opt/rocm/hip/cmake;/pytorch/cmake/Modules;/pytorch/cmake/public/../Modules_CUDA_fix +#10 44.14 -- +#10 44.14 -- ONNX version : 1.13.1rc2 +#10 44.14 -- ONNX NAMESPACE : onnx_torch +#10 44.14 -- ONNX_USE_LITE_PROTO : OFF +#10 44.14 -- USE_PROTOBUF_SHARED_LIBS : OFF +#10 44.14 -- Protobuf_USE_STATIC_LIBS : ON +#10 44.14 -- ONNX_DISABLE_EXCEPTIONS : OFF +#10 44.14 -- ONNX_WERROR : OFF +#10 44.14 -- ONNX_BUILD_TESTS : OFF +#10 44.14 -- ONNX_BUILD_BENCHMARKS : OFF +#10 44.14 -- +#10 44.14 -- Protobuf compiler : +#10 44.14 -- Protobuf includes : +#10 44.14 -- Protobuf libraries : +#10 44.14 -- BUILD_ONNX_PYTHON : OFF +#10 44.14 -- +#10 44.14 -- ******** Summary ******** +#10 44.14 -- CMake version : 3.20.2 +#10 44.14 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 44.14 -- System : Linux +#10 44.14 -- C++ compiler : /usr/bin/c++ +#10 44.14 -- C++ compiler version : 11.3.0 +#10 44.14 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor +#10 44.14 -- Build type : Release +#10 44.14 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 +#10 44.14 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 44.14 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 44.14 -- CMAKE_MODULE_PATH : /opt/rocm/hip/cmake;/pytorch/cmake/Modules;/pytorch/cmake/public/../Modules_CUDA_fix +#10 44.14 -- +#10 44.14 -- ONNX version : 1.4.1 +#10 44.14 -- ONNX NAMESPACE : onnx_torch +#10 44.14 -- ONNX_BUILD_TESTS : OFF +#10 44.14 -- ONNX_BUILD_BENCHMARKS : OFF +#10 44.14 -- ONNX_USE_LITE_PROTO : OFF +#10 44.14 -- ONNXIFI_DUMMY_BACKEND : +#10 44.14 -- +#10 44.14 -- Protobuf compiler : +#10 44.14 -- Protobuf includes : +#10 44.14 -- Protobuf libraries : +#10 44.14 -- BUILD_ONNX_PYTHON : OFF +#10 44.14 -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor +#10 44.14 -- Adding -DNDEBUG to compile flags +#10 44.14 -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 +#10 44.17 -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False +#10 44.17 CMake Warning at cmake/Dependencies.cmake:1689 (message): +#10 44.17 Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. +#10 44.17 Call Stack (most recent call first): +#10 44.17 CMakeLists.txt:717 (include) +#10 44.17 +#10 44.17 +#10 44.17 -- Could not find hardware support for NEON on this machine. +#10 44.17 -- No OMAP3 processor on this machine. +#10 44.17 -- No OMAP4 processor on this machine. +#10 44.17 -- Looking for cheev_ +#10 44.24 -- Looking for cheev_ - found +#10 44.24 -- Looking for cgesdd_ +#10 44.30 -- Looking for cgesdd_ - found +#10 44.30 -- Found a library with LAPACK API (open). +#10 44.30 disabling CUDA because NOT USE_CUDA is set +#10 44.30 -- Will build oneDNN Graph +#10 44.30 -- MKLDNN_CPU_RUNTIME = OMP +#10 44.30 -- cmake version: 3.20.2 +#10 44.30 CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:36 (cmake_policy): +#10 44.30 The OLD behavior for policy CMP0025 will be removed from a future version +#10 44.30 of CMake. +#10 44.30 +#10 44.30 The cmake-policies(7) manual explains that the OLD behaviors of all +#10 44.30 policies are deprecated and that a policy should be set to OLD only under +#10 44.30 specific short-term circumstances. Projects should be ported to the NEW +#10 44.30 behavior and not rely on setting a policy to OLD. +#10 44.30 +#10 44.30 +#10 44.31 -- DNNL_TARGET_ARCH: X64 +#10 44.31 -- DNNL_LIBRARY_NAME: dnnl +#10 44.31 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.31 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 44.31 does not match the name of the calling package (OpenMP). This can lead to +#10 44.31 problems in calling code that expects `find_package` result variables +#10 44.31 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.31 Call Stack (most recent call first): +#10 44.31 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 44.31 third_party/ideep/mkl-dnn/third_party/oneDNN/cmake/OpenMP.cmake:69 (find_package) +#10 44.31 third_party/ideep/mkl-dnn/third_party/oneDNN/CMakeLists.txt:117 (include) +#10 44.31 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.31 +#10 44.31 -- Found OpenMP_C: -fopenmp +#10 44.31 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.31 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 44.31 does not match the name of the calling package (OpenMP). This can lead to +#10 44.31 problems in calling code that expects `find_package` result variables +#10 44.31 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.31 Call Stack (most recent call first): +#10 44.31 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 44.31 third_party/ideep/mkl-dnn/third_party/oneDNN/cmake/OpenMP.cmake:69 (find_package) +#10 44.31 third_party/ideep/mkl-dnn/third_party/oneDNN/CMakeLists.txt:117 (include) +#10 44.31 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.31 +#10 44.31 -- Found OpenMP_CXX: -fopenmp +#10 44.32 -- Could NOT find Doxyrest (missing: DOXYREST_EXECUTABLE) +#10 44.33 -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.12", minimum required is "2.7") +#10 44.33 -- Could NOT find Sphinx (missing: SPHINX_EXECUTABLE) +#10 44.34 -- Enabled workload: TRAINING +#10 44.34 -- Enabled primitives: ALL +#10 44.34 -- Enabled primitive CPU ISA: ALL +#10 44.34 -- Enabled primitive GPU ISA: ALL +#10 44.34 -- Primitive cache is enabled +#10 44.37 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.h +#10 44.41 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.h - found +#10 44.41 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph_types.h +#10 44.46 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph_types.h - found +#10 44.46 -- Looking for C++ include /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.hpp +#10 44.79 -- Looking for C++ include /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.hpp - found +#10 44.80 -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) +#10 44.80 -- Cannot find Doxygen package +#10 44.80 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.80 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 44.80 does not match the name of the calling package (OpenMP). This can lead to +#10 44.80 problems in calling code that expects `find_package` result variables +#10 44.80 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.80 Call Stack (most recent call first): +#10 44.80 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 44.80 third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:62 (find_package) +#10 44.80 third_party/ideep/mkl-dnn/CMakeLists.txt:179 (include) +#10 44.80 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.80 +#10 44.80 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.80 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 44.80 does not match the name of the calling package (OpenMP). This can lead to +#10 44.80 problems in calling code that expects `find_package` result variables +#10 44.80 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.80 Call Stack (most recent call first): +#10 44.80 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 44.80 third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:62 (find_package) +#10 44.80 third_party/ideep/mkl-dnn/CMakeLists.txt:179 (include) +#10 44.80 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.80 +#10 44.81 -- DNNL_GRAPH_BUILD_FOR_CI is set to be OFF +#10 44.81 -- Compiling oneDNN Graph with CPU runtime OMP support +#10 44.81 -- Compiling oneDNN Graph with GPU runtime NONE support +#10 44.81 -- Graph compiler backend is disabled. +#10 44.81 -- Set version definitions to /pytorch/third_party/ideep/mkl-dnn/src/utils/verbose.cpp +#10 44.81 -- Compiled partition cache is enabled +#10 44.82 -- Found MKL-DNN: TRUE +#10 44.82 -- Looking for clock_gettime in rt +#10 44.86 -- Looking for clock_gettime in rt - found +#10 44.86 -- Looking for mmap +#10 44.90 -- Looking for mmap - found +#10 44.90 -- Looking for shm_open +#10 44.95 -- Looking for shm_open - found +#10 44.95 -- Looking for shm_unlink +#10 44.99 -- Looking for shm_unlink - found +#10 44.99 -- Looking for malloc_usable_size +#10 45.03 -- Looking for malloc_usable_size - found +#10 45.03 -- Performing Test C_HAS_THREAD +#10 45.08 -- Performing Test C_HAS_THREAD - Success +#10 45.08 -- Module support is disabled. +#10 45.08 -- Version: 9.1.0 +#10 45.08 -- Build type: Release +#10 45.08 -- CXX_STANDARD: 17 +#10 45.08 -- Performing Test has_std_17_flag +#10 45.13 -- Performing Test has_std_17_flag - Success +#10 45.13 -- Performing Test has_std_1z_flag +#10 45.18 -- Performing Test has_std_1z_flag - Success +#10 45.18 -- Required features: cxx_variadic_templates +#10 45.18 -- Using Kineto with Roctracer support +#10 45.18 -- Configuring Kineto dependency: +#10 45.18 -- KINETO_SOURCE_DIR = /pytorch/third_party/kineto/libkineto +#10 45.18 -- KINETO_BUILD_TESTS = OFF +#10 45.18 -- KINETO_LIBRARY_TYPE = static +#10 45.20 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 45.20 INFO CUDA_SOURCE_DIR = +#10 45.20 INFO ROCM_SOURCE_DIR = /opt/rocm +#10 45.21 INFO Building with roctracer +#10 45.24 -- Kineto: FMT_SOURCE_DIR = /pytorch/third_party/fmt +#10 45.24 -- Kineto: FMT_INCLUDE_DIR = /pytorch/third_party/fmt/include +#10 45.24 INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include +#10 45.24 INFO ROCTRACER_INCLUDE_DIR = /opt/rocm/include/roctracer +#10 45.24 INFO DYNOLOG_INCLUDE_DIR = /pytorch/third_party/kineto/libkineto/third_party/dynolog/ +#10 45.24 INFO IPCFABRIC_INCLUDE_DIR = /pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ +#10 45.24 -- Configured Kineto +#10 45.24 -- GCC 11.3.0: Adding gcc and gcc_s libs to link line +#10 45.24 -- Performing Test HAS_WERROR_RETURN_TYPE +#10 45.29 -- Performing Test HAS_WERROR_RETURN_TYPE - Success +#10 45.29 -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR +#10 45.35 -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success +#10 45.35 -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT +#10 45.37 -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Failed +#10 45.37 -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT +#10 45.43 -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success +#10 45.43 -- Performing Test HAS_WERROR_BOOL_OPERATION +#10 45.48 -- Performing Test HAS_WERROR_BOOL_OPERATION - Success +#10 45.48 -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE +#10 45.51 -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Failed +#10 45.51 -- Performing Test HAS_WNARROWING +#10 45.56 -- Performing Test HAS_WNARROWING - Success +#10 45.56 -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS +#10 45.62 -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success +#10 45.62 -- Performing Test HAS_WNO_TYPE_LIMITS +#10 45.67 -- Performing Test HAS_WNO_TYPE_LIMITS - Success +#10 45.67 -- Performing Test HAS_WNO_ARRAY_BOUNDS +#10 45.73 -- Performing Test HAS_WNO_ARRAY_BOUNDS - Success +#10 45.73 -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS +#10 45.78 -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success +#10 45.78 -- Performing Test HAS_WUNUSED_LOCAL_TYPEDEFS +#10 45.83 -- Performing Test HAS_WUNUSED_LOCAL_TYPEDEFS - Success +#10 45.83 -- Performing Test HAS_WNO_UNUSED_PARAMETER +#10 45.89 -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success +#10 45.89 -- Performing Test HAS_WNO_UNUSED_FUNCTION +#10 45.94 -- Performing Test HAS_WNO_UNUSED_FUNCTION - Success +#10 45.94 -- Performing Test HAS_WNO_UNUSED_RESULT +#10 45.99 -- Performing Test HAS_WNO_UNUSED_RESULT - Success +#10 45.99 -- Performing Test HAS_WNO_STRICT_OVERFLOW +#10 46.05 -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success +#10 46.05 -- Performing Test HAS_WNO_STRICT_ALIASING +#10 46.10 -- Performing Test HAS_WNO_STRICT_ALIASING - Success +#10 46.10 -- Performing Test HAS_WNO_ERROR_DEPRECATED_DECLARATIONS +#10 46.15 -- Performing Test HAS_WNO_ERROR_DEPRECATED_DECLARATIONS - Success +#10 46.16 -- Performing Test HAS_WVLA_EXTENSION +#10 46.18 -- Performing Test HAS_WVLA_EXTENSION - Failed +#10 46.18 -- Performing Test HAS_WNO_ERROR_PEDANTIC +#10 46.23 -- Performing Test HAS_WNO_ERROR_PEDANTIC - Success +#10 46.23 -- Performing Test HAS_WNO_ERROR_REDUNDANT_DECLS +#10 46.28 -- Performing Test HAS_WNO_ERROR_REDUNDANT_DECLS - Success +#10 46.29 -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST +#10 46.34 -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success +#10 46.34 -- Performing Test HAS_FCOLOR_DIAGNOSTICS +#10 46.36 -- Performing Test HAS_FCOLOR_DIAGNOSTICS - Failed +#10 46.36 -- Performing Test HAS_FDIAGNOSTICS_COLOR_ALWAYS +#10 46.42 -- Performing Test HAS_FDIAGNOSTICS_COLOR_ALWAYS - Success +#10 46.42 -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE +#10 46.47 -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE - Success +#10 46.47 -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED +#10 46.52 -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Success +#10 46.52 -- Performing Test HAS_FNO_MATH_ERRNO +#10 46.58 -- Performing Test HAS_FNO_MATH_ERRNO - Success +#10 46.58 -- Performing Test HAS_FNO_TRAPPING_MATH +#10 46.63 -- Performing Test HAS_FNO_TRAPPING_MATH - Success +#10 46.63 -- Performing Test HAS_WERROR_FORMAT +#10 46.74 -- Performing Test HAS_WERROR_FORMAT - Success +#10 46.74 -- Performing Test HAS_WERROR_CAST_FUNCTION_TYPE +#10 46.79 -- Performing Test HAS_WERROR_CAST_FUNCTION_TYPE - Success +#10 46.79 -- Performing Test HAS_WNO_STRINGOP_OVERFLOW +#10 46.85 -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Success +#10 46.85 -- Looking for backtrace +#10 46.90 -- Looking for backtrace - found +#10 46.90 -- backtrace facility detected in default set of libraries +#10 46.90 -- Found Backtrace: /usr/include +#10 46.90 -- NUMA paths: +#10 46.90 -- /usr/include +#10 46.90 -- /usr/lib/x86_64-linux-gnu/libnuma.so +#10 49.22 -- headers outputs: +#10 54.10 -- sources outputs: +#10 55.08 -- declarations_yaml outputs: +#10 55.08 -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT +#10 55.14 -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Success +#10 55.17 -- Using ATen parallel backend: OMP +#10 55.17 Building PyTorch for GPU arch: gfx803 +#10 55.17 HIP VERSION: 5.4.22803-474e8620 +#10 55.24 +#10 55.24 ***** ROCm version from rocm_version.h **** +#10 55.24 +#10 55.24 -- Caffe2: Header version is: 5.4.2 +#10 55.24 ROCM_VERSION_DEV: 5.4.2 +#10 55.24 ROCM_VERSION_DEV_MAJOR: 5 +#10 55.24 ROCM_VERSION_DEV_MINOR: 4 +#10 55.24 ROCM_VERSION_DEV_PATCH: 2 +#10 55.24 ROCM_VERSION_DEV_INT: 50402 +#10 55.24 HIP_VERSION_MAJOR: 5 +#10 55.24 HIP_VERSION_MINOR: 4 +#10 55.24 TORCH_HIP_VERSION: 504 +#10 55.24 +#10 55.24 ***** Library versions from dpkg ***** +#10 55.24 +#10 55.24 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#10 55.24 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#10 55.25 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#10 55.26 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#10 55.27 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#10 55.29 +#10 55.29 ***** Library versions from cmake find_package ***** +#10 55.29 +#10 55.29 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.29 hip VERSION: 5.4.22505 +#10 55.30 hsa-runtime64 VERSION: 1.7.50402 +#10 55.30 amd_comgr VERSION: 2.4.0 +#10 55.30 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.30 rocrand VERSION: 2.10.9 +#10 55.31 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.31 hiprand VERSION: 2.10.9 +#10 55.31 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.31 rocblas VERSION: 2.46.0 +#10 55.32 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.32 miopen VERSION: 2.19.0 +#10 55.32 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.33 hipfft VERSION: 1.0.10 +#10 55.33 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.33 hipsparse VERSION: 2.3.3 +#10 55.34 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.34 rccl VERSION: 2.13.4 +#10 55.34 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.34 rocprim VERSION: 2.10.9 +#10 55.35 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.35 hipcub VERSION: 2.10.12 +#10 55.36 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.36 rocthrust VERSION: 2.10.9 +#10 55.36 HIP library name: amdhip64 +#10 55.36 ROCm is enabled. +#10 55.41 CMake Deprecation Warning at third_party/sleef/CMakeLists.txt:91 (cmake_policy): +#10 55.41 The OLD behavior for policy CMP0066 will be removed from a future version +#10 55.41 of CMake. +#10 55.41 +#10 55.41 The cmake-policies(7) manual explains that the OLD behaviors of all +#10 55.41 policies are deprecated and that a policy should be set to OLD only under +#10 55.41 specific short-term circumstances. Projects should be ported to the NEW +#10 55.41 behavior and not rely on setting a policy to OLD. +#10 55.41 +#10 55.41 +#10 55.42 -- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) +#10 55.43 -- Check size of long double +#10 55.47 -- Check size of long double - done +#10 55.47 -- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE +#10 55.52 -- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE - Success +#10 55.52 -- Performing Test COMPILER_SUPPORTS_FLOAT128 +#10 55.57 -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Success +#10 55.57 -- Performing Test COMPILER_SUPPORTS_SSE2 +#10 55.76 -- Performing Test COMPILER_SUPPORTS_SSE2 - Success +#10 55.76 -- Performing Test COMPILER_SUPPORTS_SSE4 +#10 55.96 -- Performing Test COMPILER_SUPPORTS_SSE4 - Success +#10 55.96 -- Performing Test COMPILER_SUPPORTS_AVX +#10 56.15 -- Performing Test COMPILER_SUPPORTS_AVX - Success +#10 56.15 -- Performing Test COMPILER_SUPPORTS_FMA4 +#10 56.33 -- Performing Test COMPILER_SUPPORTS_FMA4 - Success +#10 56.33 -- Performing Test COMPILER_SUPPORTS_AVX2 +#10 56.51 -- Performing Test COMPILER_SUPPORTS_AVX2 - Success +#10 56.51 -- Performing Test COMPILER_SUPPORTS_AVX512F +#10 56.69 -- Performing Test COMPILER_SUPPORTS_AVX512F - Success +#10 56.69 -- Found OpenMP_C: -fopenmp (found version "4.5") +#10 56.69 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#10 56.69 -- Found OpenMP: TRUE (found version "4.5") +#10 56.69 -- Performing Test COMPILER_SUPPORTS_OPENMP +#10 56.74 -- Performing Test COMPILER_SUPPORTS_OPENMP - Success +#10 56.74 -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES +#10 56.79 -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Success +#10 56.79 -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH +#10 56.84 -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success +#10 56.84 -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM +#10 56.89 -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Success +#10 56.90 -- Configuring build for SLEEF-v3.6.0 +#10 56.90 Target system: Linux-6.1.0-34-amd64 +#10 56.90 Target processor: x86_64 +#10 56.90 Host system: Linux-6.1.0-34-amd64 +#10 56.90 Host processor: x86_64 +#10 56.90 Detected C compiler: GNU @ /usr/bin/cc +#10 56.90 CMake: 3.20.2 +#10 56.90 Make program: /usr/bin/ninja +#10 56.90 -- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -Wno-psabi -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef +#10 56.90 -- Building shared libs : OFF +#10 56.90 -- Building static test bins: OFF +#10 56.90 -- MPFR : LIB_MPFR-NOTFOUND +#10 56.90 -- GMP : LIBGMP-NOTFOUND +#10 56.90 -- RT : /usr/lib/x86_64-linux-gnu/librt.a +#10 56.90 -- FFTW3 : LIBFFTW3-NOTFOUND +#10 56.90 -- OPENSSL : +#10 56.90 -- SDE : SDE_COMMAND-NOTFOUND +#10 56.90 -- RUNNING_ON_TRAVIS : +#10 56.90 -- COMPILER_SUPPORTS_OPENMP : 1 +#10 56.91 AT_INSTALL_INCLUDE_DIR include/ATen/core +#10 56.91 core header install: /pytorch/build/aten/src/ATen/core/TensorBody.h +#10 56.91 core header install: /pytorch/build/aten/src/ATen/core/aten_interned_strings.h +#10 56.91 core header install: /pytorch/build/aten/src/ATen/core/enum_tag.h +#10 57.31 -- Generating sources for unboxing kernels /usr/bin/python3;-m;torchgen.gen_executorch;--source-path=/pytorch/test/edge/../../test/edge;--install-dir=/pytorch/build/out;--tags-path=/pytorch/test/edge/../../aten/src/ATen/native/tags.yaml;--aten-yaml-path=/pytorch/test/edge/../../aten/src/ATen/native/native_functions.yaml;--use-aten-lib;--op-selection-yaml-path=/pytorch/test/edge/../../test/edge/selected_operators.yaml;--custom-ops-yaml-path=/pytorch/test/edge/../../test/edge/custom_ops.yaml +#10 57.33 -- Performing Test HAS_WNO_UNUSED_VARIABLE +#10 57.39 -- Performing Test HAS_WNO_UNUSED_VARIABLE - Success +#10 57.40 -- Performing Test HAS_WNO_MISSING_BRACES +#10 57.45 -- Performing Test HAS_WNO_MISSING_BRACES - Success +#10 57.45 -- Performing Test HAS_WNO_UNUSED_BUT_SET_PARAMETER +#10 57.51 -- Performing Test HAS_WNO_UNUSED_BUT_SET_PARAMETER - Success +#10 57.51 -- _GLIBCXX_USE_CXX11_ABI=1 is already defined as a cmake variable +#10 57.52 CMake Warning (dev) at torch/CMakeLists.txt:387: +#10 57.52 Syntax Warning in cmake code at column 107 +#10 57.52 +#10 57.52 Argument not separated from preceding token by whitespace. +#10 57.52 This warning is for project developers. Use -Wno-dev to suppress it. +#10 57.52 +#10 57.52 CMake Warning (dev) at torch/CMakeLists.txt:387: +#10 57.52 Syntax Warning in cmake code at column 115 +#10 57.52 +#10 57.52 Argument not separated from preceding token by whitespace. +#10 57.52 This warning is for project developers. Use -Wno-dev to suppress it. +#10 57.52 +#10 57.61 -- Using lib/python3.10/dist-packages as python relative installation path +#10 57.64 CMake Warning at CMakeLists.txt:1078 (message): +#10 57.64 Generated cmake files are only fully tested if one builds with system glog, +#10 57.64 gflags, and protobuf. Other settings may generate files that are not well +#10 57.64 tested. +#10 57.64 +#10 57.64 +#10 58.44 -- +#10 58.44 -- ******** Summary ******** +#10 58.44 -- General: +#10 58.44 -- CMake version : 3.20.2 +#10 58.44 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 58.44 -- System : Linux +#10 58.44 -- C++ compiler : /usr/bin/c++ +#10 58.44 -- C++ compiler id : GNU +#10 58.44 -- C++ compiler version : 11.3.0 +#10 58.44 -- Using ccache if found : ON +#10 58.44 -- Found ccache : CCACHE_PROGRAM-NOTFOUND +#10 58.44 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wunused-local-typedefs -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format -Werror=cast-function-type -Wno-stringop-overflow +#10 58.44 -- Build type : Release +#10 58.44 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;HAVE_MALLOC_USABLE_SIZE=1;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS +#10 58.44 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 58.44 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 58.44 -- USE_GOLD_LINKER : OFF +#10 58.44 -- +#10 58.44 -- TORCH_VERSION : 2.0.0 +#10 58.44 -- CAFFE2_VERSION : 2.0.0 +#10 58.44 -- BUILD_CAFFE2 : OFF +#10 58.44 -- BUILD_CAFFE2_OPS : OFF +#10 58.44 -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF +#10 58.44 -- BUILD_TENSOREXPR_BENCHMARK: OFF +#10 58.44 -- BUILD_NVFUSER_BENCHMARK: OFF +#10 58.44 -- BUILD_BINARY : OFF +#10 58.44 -- BUILD_CUSTOM_PROTOBUF : ON +#10 58.44 -- Link local protobuf : ON +#10 58.44 -- BUILD_DOCS : OFF +#10 58.44 -- BUILD_PYTHON : True +#10 58.44 -- Python version : 3.10.12 +#10 58.44 -- Python executable : /usr/bin/python3 +#10 58.44 -- Pythonlibs version : 3.10.12 +#10 58.44 -- Python library : /usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 +#10 58.44 -- Python includes : /usr/include/python3.10 +#10 58.44 -- Python site-packages: lib/python3.10/dist-packages +#10 58.44 -- BUILD_SHARED_LIBS : ON +#10 58.44 -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF +#10 58.44 -- BUILD_TEST : True +#10 58.44 -- BUILD_JNI : OFF +#10 58.44 -- BUILD_MOBILE_AUTOGRAD : OFF +#10 58.44 -- BUILD_LITE_INTERPRETER: OFF +#10 58.44 -- INTERN_BUILD_MOBILE : +#10 58.44 -- TRACING_BASED : OFF +#10 58.44 -- USE_BLAS : 1 +#10 58.44 -- BLAS : open +#10 58.44 -- BLAS_HAS_SBGEMM : +#10 58.44 -- USE_LAPACK : 1 +#10 58.44 -- LAPACK : open +#10 58.44 -- USE_ASAN : OFF +#10 58.44 -- USE_TSAN : OFF +#10 58.44 -- USE_CPP_CODE_COVERAGE : OFF +#10 58.44 -- USE_CUDA : OFF +#10 58.44 -- USE_ROCM : ON +#10 58.44 -- ROCM_VERSION : +#10 58.44 -- BUILD_NVFUSER : ON +#10 58.44 -- USE_EIGEN_FOR_BLAS : ON +#10 58.44 -- USE_FBGEMM : ON +#10 58.44 -- USE_FAKELOWP : OFF +#10 58.44 -- USE_KINETO : ON +#10 58.44 -- USE_FFMPEG : OFF +#10 58.44 -- USE_GFLAGS : OFF +#10 58.44 -- USE_GLOG : OFF +#10 58.44 -- USE_LEVELDB : OFF +#10 58.44 -- USE_LITE_PROTO : OFF +#10 58.44 -- USE_LMDB : OFF +#10 58.44 -- USE_METAL : OFF +#10 58.44 -- USE_PYTORCH_METAL : OFF +#10 58.44 -- USE_PYTORCH_METAL_EXPORT : OFF +#10 58.44 -- USE_MPS : OFF +#10 58.44 -- USE_FFTW : OFF +#10 58.44 -- USE_MKL : OFF +#10 58.44 -- USE_MKLDNN : ON +#10 58.44 -- USE_MKLDNN_ACL : OFF +#10 58.44 -- USE_MKLDNN_CBLAS : OFF +#10 58.44 -- USE_UCC : OFF +#10 58.44 -- USE_ITT : ON +#10 58.44 -- USE_NCCL : ON +#10 58.44 -- USE_SYSTEM_NCCL : ON +#10 58.44 -- USE_NCCL_WITH_UCC : OFF +#10 58.44 -- USE_NNPACK : ON +#10 58.44 -- USE_NUMPY : ON +#10 58.44 -- USE_OBSERVERS : ON +#10 58.44 -- USE_OPENCL : OFF +#10 58.44 -- USE_OPENCV : OFF +#10 58.44 -- USE_OPENMP : ON +#10 58.44 -- USE_TBB : OFF +#10 58.44 -- USE_VULKAN : OFF +#10 58.44 -- USE_PROF : OFF +#10 58.44 -- USE_QNNPACK : ON +#10 58.44 -- USE_PYTORCH_QNNPACK : ON +#10 58.44 -- USE_XNNPACK : ON +#10 58.44 -- USE_REDIS : OFF +#10 58.44 -- USE_ROCKSDB : OFF +#10 58.44 -- USE_ZMQ : OFF +#10 58.44 -- USE_DISTRIBUTED : ON +#10 58.44 -- USE_MPI : OFF +#10 58.44 -- USE_GLOO : ON +#10 58.44 -- USE_GLOO_WITH_OPENSSL : OFF +#10 58.44 -- USE_TENSORPIPE : ON +#10 58.44 -- Public Dependencies : +#10 58.44 -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;qnnpack;pytorch_qnnpack;nnpack;XNNPACK;fbgemm;/usr/lib/x86_64-linux-gnu/libnuma.so;ittnotify;fp16;caffe2::openmp;tensorpipe;gloo;foxi_loader;rt;fmt::fmt-header-only;kineto;gcc_s;gcc;dl +#10 58.44 -- USE_COREML_DELEGATE : OFF +#10 58.44 -- BUILD_LAZY_TS_BACKEND : ON +#10 58.44 -- TORCH_DISABLE_GPU_ASSERTS : ON +#10 58.45 -- Configuring done +#10 59.76 -- Generating done +#10 59.86 CMake Warning: +#10 59.86 Manually-specified variables were not used by the project: +#10 59.86 +#10 59.86 CMAKE_POLICY_VERSION_MINIMUM +#10 59.86 USE_NINJA +#10 59.86 +#10 59.86 +#10 59.86 -- Build files have been written to: /pytorch/build +#10 59.93 cmake --build . --target install --config Release -- -j 14 +#10 63.32 [1/4] Generating ATen declarations_yaml +#10 65.50 [2/4] Generating ATen headers +#10 66.19 [3/4] Generating ATen sources +#10 66.31 [1/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o +#10 66.91 [2/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o +#10 66.99 [3/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o +#10 67.06 [4/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o +#10 67.10 [5/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o +#10 67.14 [6/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o +#10 67.15 [7/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o +#10 67.39 [8/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o +#10 67.46 [9/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o +#10 67.72 [10/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o +#10 67.73 [11/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o +#10 67.77 [12/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o +#10 67.80 [13/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o +#10 67.83 [14/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o +#10 67.89 [15/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o +#10 68.05 [16/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o +#10 68.05 In file included from /usr/include/string.h:535, +#10 68.05 from ../third_party/protobuf/src/google/protobuf/stubs/port.h:39, +#10 68.05 from ../third_party/protobuf/src/google/protobuf/stubs/macros.h:34, +#10 68.05 from ../third_party/protobuf/src/google/protobuf/stubs/common.h:46, +#10 68.05 from ../third_party/protobuf/src/google/protobuf/message_lite.h:45, +#10 68.05 from ../third_party/protobuf/src/google/protobuf/message_lite.cc:36: +#10 68.05 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 68.05 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 68.05 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 68.05 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30, +#10 68.05 inlined from ‘bool google::protobuf::MessageLite::SerializeToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:403:42: +#10 68.05 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 68.05 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 68.05 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 68.05 30 | __glibc_objsize0 (__dest)); +#10 68.05 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 68.05 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 68.05 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 68.05 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 68.05 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30: +#10 68.05 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 68.05 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 68.05 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 68.05 30 | __glibc_objsize0 (__dest)); +#10 68.05 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 68.11 [17/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o +#10 68.14 [18/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o +#10 68.15 [19/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o +#10 68.48 [20/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o +#10 68.50 [21/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o +#10 68.93 [22/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o +#10 68.99 [23/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o +#10 69.00 [24/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o +#10 69.23 [25/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o +#10 69.33 [26/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o +#10 69.44 [27/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o +#10 69.51 [28/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o +#10 69.64 [29/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o +#10 69.65 [30/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o +#10 69.66 [31/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o +#10 69.68 [32/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o +#10 69.72 [33/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o +#10 69.83 [34/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o +#10 70.05 [35/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o +#10 70.08 [36/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o +#10 70.16 [37/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o +#10 70.30 [38/6823] Linking CXX static library lib/libprotobuf-lite.a +#10 70.43 [39/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o +#10 70.45 [40/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o +#10 70.46 [41/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o +#10 70.52 [42/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o +#10 70.63 [43/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o +#10 70.70 [44/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o +#10 70.79 [45/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o +#10 70.87 [46/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o +#10 70.99 [47/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o +#10 71.09 [48/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o +#10 71.09 In file included from /usr/include/string.h:535, +#10 71.09 from ../third_party/protobuf/src/google/protobuf/stubs/port.h:39, +#10 71.09 from ../third_party/protobuf/src/google/protobuf/stubs/macros.h:34, +#10 71.09 from ../third_party/protobuf/src/google/protobuf/stubs/common.h:46, +#10 71.09 from ../third_party/protobuf/src/google/protobuf/message_lite.h:45, +#10 71.09 from ../third_party/protobuf/src/google/protobuf/message_lite.cc:36: +#10 71.09 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 71.09 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 71.09 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 71.09 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30, +#10 71.09 inlined from ‘bool google::protobuf::MessageLite::SerializeToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:403:42: +#10 71.09 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 71.09 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 71.09 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 71.09 30 | __glibc_objsize0 (__dest)); +#10 71.09 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 71.09 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 71.09 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 71.09 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 71.09 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30: +#10 71.09 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 71.09 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 71.09 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 71.09 30 | __glibc_objsize0 (__dest)); +#10 71.09 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 71.13 [49/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o +#10 71.34 [50/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o +#10 71.35 [51/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o +#10 71.43 [52/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o +#10 71.63 [53/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o +#10 71.87 [54/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o +#10 72.13 [55/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o +#10 72.52 [56/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o +#10 72.59 [57/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o +#10 72.60 [58/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o +#10 72.63 [59/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o +#10 72.66 [60/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o +#10 72.66 [61/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o +#10 73.04 [62/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o +#10 73.24 [63/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o +#10 73.52 [64/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o +#10 73.62 [65/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o +#10 73.88 [66/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o +#10 74.03 [67/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o +#10 74.40 [68/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o +#10 74.56 [69/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o +#10 74.76 [70/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o +#10 75.07 [71/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o +#10 75.49 [72/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o +#10 75.63 [73/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o +#10 75.64 [74/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o +#10 75.74 [75/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o +#10 75.89 [76/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o +#10 75.95 [77/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o +#10 76.16 [78/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o +#10 76.22 [79/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o +#10 76.61 [80/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o +#10 76.66 [81/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o +#10 76.89 [82/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o +#10 77.02 [83/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o +#10 77.30 [84/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o +#10 77.68 [85/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o +#10 77.71 [86/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o +#10 77.77 [87/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o +#10 77.85 [88/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o +#10 78.05 [89/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o +#10 78.11 [90/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o +#10 78.19 [91/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o +#10 78.69 [92/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o +#10 78.90 [93/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o +#10 79.11 [94/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o +#10 79.20 [95/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o +#10 79.22 [96/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o +#10 79.50 [97/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o +#10 79.58 [98/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o +#10 79.59 [99/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o +#10 79.71 [100/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o +#10 79.88 [101/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o +#10 80.30 [102/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o +#10 80.66 [103/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o +#10 80.77 [104/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o +#10 81.07 [105/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o +#10 81.79 [106/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o +#10 81.90 [107/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o +#10 82.21 [108/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o +#10 82.52 [109/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o +#10 82.62 [110/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o +#10 82.87 [111/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o +#10 82.95 [112/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o +#10 83.51 [113/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o +#10 83.85 [114/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o +#10 84.27 [115/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o +#10 84.42 [116/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o +#10 84.61 [117/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o +#10 84.74 [118/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o +#10 84.78 [119/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o +#10 84.79 [120/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/add.c.o +#10 84.80 [121/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o +#10 84.87 [122/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o +#10 84.88 [123/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/average-pooling.c.o +#10 84.99 [124/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o +#10 85.30 [125/6823] Linking CXX static library lib/libprotobuf.a +#10 85.57 [126/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o +#10 85.61 [127/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o +#10 85.73 [128/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o +#10 86.03 [129/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o +#10 86.20 [130/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o +#10 86.37 [131/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o +#10 86.46 [132/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o +#10 86.47 [133/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o +#10 86.48 [134/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o +#10 86.79 [135/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o +#10 86.94 [136/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o +#10 86.96 [137/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o +#10 87.03 [138/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o +#10 87.09 [139/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o +#10 87.62 [140/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o +#10 87.81 [141/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o +#10 88.08 [142/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o +#10 88.19 [143/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o +#10 88.60 [144/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o +#10 88.74 [145/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o +#10 88.80 [146/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o +#10 89.01 [147/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o +#10 89.02 [148/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o +#10 89.09 [149/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o +#10 89.18 [150/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o +#10 89.24 [151/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o +#10 89.49 [152/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o +#10 89.62 [153/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o +#10 90.42 [154/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o +#10 90.61 [155/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o +#10 90.75 [156/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o +#10 90.76 [157/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o +#10 90.79 [158/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o +#10 90.87 [159/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o +#10 91.01 [160/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o +#10 91.21 [161/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o +#10 91.40 [162/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o +#10 92.12 [163/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o +#10 92.18 [164/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o +#10 92.36 [165/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o +#10 92.46 [166/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o +#10 92.70 [167/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o +#10 92.71 [168/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o +#10 92.75 [169/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o +#10 92.78 [170/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o +#10 93.05 [171/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o +#10 93.09 [172/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o +#10 93.55 [173/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o +#10 93.81 [174/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o +#10 93.89 [175/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o +#10 94.35 [176/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o +#10 94.58 [177/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o +#10 94.61 [178/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o +#10 94.70 [179/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o +#10 94.99 [180/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o +#10 95.06 [181/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o +#10 95.09 [182/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o +#10 95.15 [183/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o +#10 95.22 [184/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o +#10 95.29 [185/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o +#10 95.36 [186/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o +#10 95.40 [187/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o +#10 95.46 [188/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o +#10 95.50 [189/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o +#10 95.51 [190/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o +#10 95.52 [191/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o +#10 95.52 [192/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o +#10 95.52 [193/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o +#10 95.56 [194/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o +#10 95.56 [195/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o +#10 95.59 [196/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o +#10 95.65 [197/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o +#10 95.68 [198/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o +#10 95.69 [199/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o +#10 95.70 [200/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o +#10 95.70 [201/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o +#10 95.71 [202/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o +#10 95.77 [203/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o +#10 95.79 [204/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o +#10 95.81 [205/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o +#10 95.82 [206/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o +#10 95.84 [207/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o +#10 95.85 [208/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o +#10 95.85 [209/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o +#10 95.88 [210/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o +#10 95.90 [211/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o +#10 95.90 [212/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o +#10 95.92 [213/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o +#10 95.93 [214/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o +#10 95.95 [215/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o +#10 95.99 [216/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o +#10 96.03 [217/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o +#10 96.03 [218/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o +#10 96.04 [219/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o +#10 96.07 [220/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o +#10 96.08 [221/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o +#10 96.09 [222/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o +#10 96.10 [223/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o +#10 96.10 [224/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o +#10 96.15 [225/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o +#10 96.16 [226/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o +#10 96.20 [227/6823] Building C object confu-deps/cpuinfo/deps/clog/CMakeFiles/clog.dir/src/clog.c.o +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’: +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c:117:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 96.20 117 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 96.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_error’: +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c:195:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 96.20 195 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 96.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_warning’: +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c:273:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 96.20 273 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 96.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_info’: +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c:351:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 96.20 351 | write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 96.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_debug’: +#10 96.20 ../third_party/cpuinfo/deps/clog/src/clog.c:429:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 96.20 429 | write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 96.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 96.22 [228/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o +#10 96.22 [229/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o +#10 96.23 [230/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o +#10 96.24 [231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o +#10 96.25 [232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o +#10 96.25 [233/6823] Linking C static library lib/libclog.a +#10 96.26 [234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o +#10 96.29 [235/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/channel-shuffle.c.o +#10 96.30 [236/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/clamp.c.o +#10 96.30 [237/6823] Linking C static library lib/libcpuinfo_internals.a +#10 96.33 [238/6823] Linking C static library lib/libcpuinfo.a +#10 96.33 [239/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o +#10 96.36 [240/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o +#10 96.38 [241/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/leaky-relu.c.o +#10 96.39 [242/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/global-average-pooling.c.o +#10 96.40 [243/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o +#10 96.41 [244/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o +#10 96.41 [245/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sigmoid.c.o +#10 96.41 [246/6823] Linking C static library lib/libpthreadpool.a +#10 96.42 [247/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/max-pooling.c.o +#10 96.43 [248/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o +#10 96.44 [249/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/softargmax.c.o +#10 96.44 [250/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/operator-delete.c.o +#10 96.45 [251/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8lut/scalar.c.o +#10 96.46 [252/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o +#10 96.48 [253/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8lut32norm/scalar.c.o +#10 96.51 [254/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o +#10 96.52 [255/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/up8xm-sse2.c.o +#10 96.52 [256/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o +#10 96.57 [257/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/up8x9-sse2.c.o +#10 96.58 [258/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/indirection.c.o +#10 96.60 [259/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/mp8x9p8q-sse2.c.o +#10 96.65 [260/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/operator-run.c.o +#10 96.65 [261/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/up8x7-sse2.c.o +#10 96.65 [262/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/up8xm-sse2.c.o +#10 96.69 [263/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8clamp/sse2.c.o +#10 96.70 [264/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/mp8x7p7q-sse2.c.o +#10 96.74 [265/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8maxpool/sub16-sse2.c.o +#10 96.74 [266/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8rmax/sse2.c.o +#10 96.76 [267/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8maxpool/16x9p8q-sse2.c.o +#10 96.80 [268/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x4-sse2.c.o +#10 96.82 [269/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x2-sse2.c.o +#10 96.83 [270/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/xm-sse2.c.o +#10 96.84 [271/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x3-sse2.c.o +#10 96.86 [272/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o +#10 96.86 [273/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o +#10 96.92 [274/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o +#10 96.92 [275/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o +#10 96.93 [276/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o +#10 96.93 [277/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o +#10 96.94 [278/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dwconv/up8x9-sse2.c.o +#10 96.95 [279/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o +#10 97.01 [280/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o +#10 97.03 [281/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dwconv/mp8x25-sse2.c.o +#10 97.04 [282/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o +#10 97.06 [283/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o +#10 97.06 [284/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8vadd/sse2.c.o +#10 97.09 [285/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o +#10 97.09 [286/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o +#10 97.10 [287/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o +#10 97.10 [288/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o +#10 97.11 [289/6823] Linking C static library lib/libqnnpack.a +#10 97.11 [290/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o +#10 97.12 [291/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o +#10 97.14 [292/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o +#10 97.15 [293/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o +#10 97.15 [294/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o +#10 97.17 [295/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o +#10 97.18 [296/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o +#10 97.19 [297/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o +#10 97.20 [298/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o +#10 97.21 [299/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o +#10 97.22 [300/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o +#10 97.22 [301/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o +#10 97.27 [302/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o +#10 97.28 [303/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o +#10 97.28 [304/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o +#10 97.32 [305/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-sse2.c.o +#10 97.33 [306/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o +#10 97.34 [307/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-sse2.c.o +#10 97.43 [308/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-sse2.c.o +#10 97.44 [309/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o +#10 97.46 [310/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o +#10 97.49 [311/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o +#10 97.53 [312/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-sse2.c.o +#10 97.54 [313/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o +#10 97.56 [314/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o +#10 97.58 [315/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-sse2.c.o +#10 97.58 [316/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-sse2.c.o +#10 97.66 [317/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x4c2-sse2.c.o +#10 97.73 [318/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/sse2.c.o +#10 97.76 [319/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-sse2.c.o +#10 97.76 [320/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-sse2.c.o +#10 97.77 [321/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-sse2.c.o +#10 97.84 [322/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-sse2.c.o +#10 97.84 [323/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-sse2.c.o +#10 97.84 [324/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-sse2.c.o +#10 97.86 [325/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/sse2.c.o +#10 97.88 [326/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-sse2-per-channel.c.o +#10 97.90 [327/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-sse2-per-channel.c.o +#10 97.93 [328/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-sse2.c.o +#10 97.93 [329/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x4c2-dq-sse2.c.o +#10 97.94 [330/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-sse2.c.o +#10 97.94 [331/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o +#10 97.94 [332/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o +#10 97.95 [333/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o +#10 97.95 [334/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-sse2.c.o +#10 97.97 [335/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/sse2.c.o +#10 97.98 [336/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o +#10 97.98 [337/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o +#10 97.98 [338/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o +#10 97.98 [339/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o +#10 97.99 [340/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o +#10 98.00 [341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o +#10 98.00 [342/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o +#10 98.01 [343/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o +#10 98.01 [344/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-sse2.c.o +#10 98.01 [345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o +#10 98.01 [346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o +#10 98.03 [347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o +#10 98.03 [348/6823] Linking C static library lib/libnnpack_reference_layers.a +#10 98.03 [349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o +#10 98.06 [350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 98.09 [351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o +#10 98.10 [352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/hardware-config.c.o +#10 98.11 [353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 98.12 [354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o +#10 98.12 [355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o +#10 98.13 [356/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4c1x4-dq-packedA-sse2.c.o +#10 98.18 [357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples1-scalar.c.o +#10 98.18 [358/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/assembler.cc.o +#10 98.18 [359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x1.c.o +#10 98.19 [360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x1.c.o +#10 98.19 [361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples4-scalar.c.o +#10 98.20 [362/6823] Linking CXX static library lib/libpytorch_qnnpack.a +#10 98.23 [363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x2.c.o +#10 98.24 [364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x2.c.o +#10 98.24 [365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x4.c.o +#10 98.25 [366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x2.c.o +#10 98.25 [367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x3.c.o +#10 98.26 [368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x1.c.o +#10 98.28 [369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x4.c.o +#10 98.29 [370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x1.c.o +#10 98.29 [371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x2.c.o +#10 98.30 [372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o +#10 98.31 [373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x4.c.o +#10 98.32 [374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x3.c.o +#10 98.33 [375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x4.c.o +#10 98.34 [376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o +#10 98.35 [377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o +#10 98.39 [378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o +#10 98.40 [379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o +#10 98.44 [380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o +#10 98.45 [381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.o +#10 98.45 [382/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch32-assembler.cc.o +#10 98.45 [383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.o +#10 98.46 [384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o +#10 98.47 [385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o +#10 98.47 [386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o +#10 98.48 [387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.o +#10 98.50 [388/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch64-assembler.cc.o +#10 98.53 [389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o +#10 98.53 [390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o +#10 98.54 [391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o +#10 98.55 [392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o +#10 98.56 [393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o +#10 98.57 [394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o +#10 98.58 [395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o +#10 98.58 [396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.o +#10 98.58 [397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o +#10 98.59 [398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o +#10 98.61 [399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.o +#10 98.62 [400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o +#10 98.64 [401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o +#10 98.66 [402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o +#10 98.66 [403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.o +#10 98.66 [404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o +#10 98.67 [405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.o +#10 98.70 [406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o +#10 98.70 [407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o +#10 98.70 [408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.o +#10 98.76 [409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o +#10 98.76 [410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.o +#10 98.76 [411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o +#10 98.77 [412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.o +#10 98.77 [413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.o +#10 98.79 [414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.o +#10 98.80 [415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o +#10 98.82 [416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.o +#10 98.84 [417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o +#10 98.85 [418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o +#10 98.86 [419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o +#10 98.86 [420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o +#10 98.88 [421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o +#10 98.89 [422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o +#10 98.91 [423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.o +#10 98.91 [424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o +#10 98.91 [425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o +#10 98.91 [426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o +#10 98.92 [427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.o +#10 98.95 [428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o +#10 98.95 [429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o +#10 98.95 [430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o +#10 98.95 [431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o +#10 98.96 [432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o +#10 98.97 [433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o +#10 98.97 [434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o +#10 98.99 [435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o +#10 99.00 [436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o +#10 99.01 [437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o +#10 99.02 [438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o +#10 99.03 [439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o +#10 99.04 [440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o +#10 99.04 [441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o +#10 99.04 [442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o +#10 99.05 [443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o +#10 99.08 [444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o +#10 99.09 [445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o +#10 99.09 [446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o +#10 99.11 [447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o +#10 99.11 [448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o +#10 99.14 [449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o +#10 99.14 [450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x2.c.o +#10 99.14 [451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o +#10 99.15 [452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o +#10 99.17 [453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x1.c.o +#10 99.17 [454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x3.c.o +#10 99.21 [455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x4.c.o +#10 99.21 [456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o +#10 99.21 [457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x3.c.o +#10 99.21 [458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o +#10 99.21 [459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x2.c.o +#10 99.21 [460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x1.c.o +#10 99.21 [461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x4.c.o +#10 99.23 [462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o +#10 99.23 [463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o +#10 99.24 [464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-scalar-x1.c.o +#10 99.25 [465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-scalar-c1.c.o +#10 99.26 [466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-scalar-c1.c.o +#10 99.29 [467/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o +#10 99.29 [468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 99.29 [469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o +#10 99.30 [470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o +#10 99.30 [471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 99.32 [472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 99.32 [473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 99.34 [474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 99.34 [475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o +#10 99.34 [476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 99.35 [477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o +#10 99.35 [478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o +#10 99.38 [479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o +#10 99.38 [480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o +#10 99.40 [481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o +#10 99.41 [482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o +#10 99.41 [483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o +#10 99.41 [484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o +#10 99.41 [485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o +#10 99.41 [486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o +#10 99.43 [487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x4-minmax-scalar.c.o +#10 99.43 [488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o +#10 99.43 [489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o +#10 99.44 [490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-2x4-minmax-scalar.c.o +#10 99.44 [491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x4-minmax-scalar.c.o +#10 99.45 [492/6823] Linking CXX static library lib/libprotoc.a +#10 99.47 [493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o +#10 99.48 [494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o +#10 99.49 [495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/packing.c.o +#10 99.49 [496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o +#10 99.50 [497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o +#10 99.51 [498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o +#10 99.51 [499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o +#10 99.52 [500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o +#10 99.52 [501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o +#10 99.53 [502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o +#10 99.53 [503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o +#10 99.54 [504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o +#10 99.56 [505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o +#10 99.57 [506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o +#10 99.57 [507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o +#10 99.57 [508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o +#10 99.57 [509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x1.c.o +#10 99.57 [510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o +#10 99.57 [511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o +#10 99.58 [512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o +#10 99.58 [513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o +#10 99.60 [514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x1.c.o +#10 99.60 [515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x4.c.o +#10 99.61 [516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x2.c.o +#10 99.61 [517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o +#10 99.61 [518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x1.c.o +#10 99.61 [519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x2.c.o +#10 99.62 [520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x3.c.o +#10 99.63 [521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x3.c.o +#10 99.64 [522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x1.c.o +#10 99.65 [523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x4.c.o +#10 99.65 [524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x4.c.o +#10 99.65 [525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x2.c.o +#10 99.65 [526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x1.c.o +#10 99.65 [527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x2.c.o +#10 99.66 [528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x3.c.o +#10 99.66 [529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x3.c.o +#10 99.66 [530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x1.c.o +#10 99.66 [531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x4.c.o +#10 99.67 [532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x4.c.o +#10 99.68 [533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x2.c.o +#10 99.70 [534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x4.c.o +#10 99.70 [535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x3.c.o +#10 99.70 [536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x1.c.o +#10 99.70 [537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x2.c.o +#10 99.71 [538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x2.c.o +#10 99.71 [539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x2-acc2.c.o +#10 99.71 [540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x1.c.o +#10 99.72 [541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x3.c.o +#10 99.74 [542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4-acc2.c.o +#10 99.74 [543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x4.c.o +#10 99.75 [544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x1.c.o +#10 99.75 [545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-scalar.c.o +#10 99.75 [546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4.c.o +#10 99.76 [547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4-acc2.c.o +#10 99.76 [548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x2.c.o +#10 99.76 [549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4-acc4.c.o +#10 99.77 [550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4-acc4.c.o +#10 99.77 [551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x2-acc2.c.o +#10 99.77 [552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o +#10 99.78 [553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4.c.o +#10 99.79 [554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o +#10 99.80 [555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o +#10 99.80 [556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o +#10 99.82 [557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o +#10 99.82 [558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x1.c.o +#10 99.83 [559/6823] Linking CXX executable bin/protoc-3.13.0.0 +#10 99.83 [560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o +#10 99.83 [561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x2.c.o +#10 99.84 [562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x4.c.o +#10 99.84 [563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x1.c.o +#10 99.84 [564/6823] Creating executable symlink bin/protoc +#10 99.85 [565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o +#10 99.85 [566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o +#10 99.87 [567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x8.c.o +#10 99.87 [568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x1.c.o +#10 99.88 [569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x4.c.o +#10 99.88 [570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x2.c.o +#10 99.89 [571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x2.c.o +#10 99.89 [572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x8.c.o +#10 99.90 [573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x2.c.o +#10 99.90 [574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x4.c.o +#10 99.90 [575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x1.c.o +#10 99.90 [576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x4.c.o +#10 99.90 [577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x8.c.o +#10 99.93 [578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x4.c.o +#10 99.93 [579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x1.c.o +#10 99.93 [580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x8.c.o +#10 99.93 [581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x8.c.o +#10 99.94 [582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o +#10 99.94 [583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x2.c.o +#10 99.94 [584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x2.c.o +#10 99.95 [585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x8.c.o +#10 99.95 [586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x4.c.o +#10 99.95 [587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x2.c.o +#10 99.96 [588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x1.c.o +#10 99.97 [589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x1.c.o +#10 99.98 [590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x2.c.o +#10 99.98 [591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x1.c.o +#10 99.98 [592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x4.c.o +#10 99.99 [593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x4.c.o +#10 99.99 [594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x1.c.o +#10 99.99 [595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x8.c.o +#10 100.00 [596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x4.c.o +#10 100.0 [597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x8.c.o +#10 100.0 [598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x8.c.o +#10 100.0 [599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x2.c.o +#10 100.0 [600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x1.c.o +#10 100.0 [601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x2.c.o +#10 100.0 [602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x2.c.o +#10 100.0 [603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x4.c.o +#10 100.0 [604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x4.c.o +#10 100.0 [605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x8.c.o +#10 100.0 [606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x1.c.o +#10 100.0 [607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x8.c.o +#10 100.1 [608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o +#10 100.1 [609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x1.c.o +#10 100.1 [610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x2.c.o +#10 100.1 [611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x4.c.o +#10 100.1 [612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x1.c.o +#10 100.1 [613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x2.c.o +#10 100.1 [614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x4.c.o +#10 100.1 [615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x1.c.o +#10 100.1 [616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x4.c.o +#10 100.1 [617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x8.c.o +#10 100.1 [618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x8.c.o +#10 100.1 [619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x2.c.o +#10 100.1 [620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x1.c.o +#10 100.1 [621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x2.c.o +#10 100.1 [622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x8.c.o +#10 100.1 [623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x1.c.o +#10 100.1 [624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x4.c.o +#10 100.1 [625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x8.c.o +#10 100.1 [626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x2.c.o +#10 100.1 [627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x4.c.o +#10 100.1 [628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x8.c.o +#10 100.1 [629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x1.c.o +#10 100.1 [630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x4.c.o +#10 100.1 [631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x1.c.o +#10 100.2 [632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x2.c.o +#10 100.2 [633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x2.c.o +#10 100.2 [634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x4.c.o +#10 100.2 [635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x8.c.o +#10 100.2 [636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x8.c.o +#10 100.2 [637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x1.c.o +#10 100.2 [638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x1.c.o +#10 100.2 [639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x2.c.o +#10 100.2 [640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x4.c.o +#10 100.2 [641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x8.c.o +#10 100.2 [642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x2.c.o +#10 100.2 [643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 100.2 [644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x1.c.o +#10 100.2 [645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x2.c.o +#10 100.2 [646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x4.c.o +#10 100.2 [647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x1.c.o +#10 100.2 [648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x4.c.o +#10 100.2 [649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x8.c.o +#10 100.2 [650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x8.c.o +#10 100.2 [651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x2.c.o +#10 100.2 [652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x8.c.o +#10 100.2 [653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x4.c.o +#10 100.3 [654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x2.c.o +#10 100.3 [655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x1.c.o +#10 100.3 [656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x4.c.o +#10 100.3 [657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x1.c.o +#10 100.3 [658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x1.c.o +#10 100.3 [659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x8.c.o +#10 100.3 [660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x2.c.o +#10 100.3 [661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x4.c.o +#10 100.3 [662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x8.c.o +#10 100.3 [663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x1.c.o +#10 100.3 [664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x2.c.o +#10 100.3 [665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x4.c.o +#10 100.3 [666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x8.c.o +#10 100.3 [667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x1.c.o +#10 100.3 [668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x8.c.o +#10 100.3 [669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x1.c.o +#10 100.3 [670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x4.c.o +#10 100.3 [671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x2.c.o +#10 100.3 [672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x2.c.o +#10 100.3 [673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x2.c.o +#10 100.3 [674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x4.c.o +#10 100.3 [675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x4.c.o +#10 100.3 [676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x8.c.o +#10 100.4 [677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x4.c.o +#10 100.4 [678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x2.c.o +#10 100.4 [679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x8.c.o +#10 100.4 [680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x1.c.o +#10 100.4 [681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x1.c.o +#10 100.4 [682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x4.c.o +#10 100.4 [683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x8.c.o +#10 100.4 [684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x8.c.o +#10 100.4 [685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x1.c.o +#10 100.4 [686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x2.c.o +#10 100.4 [687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x4.c.o +#10 100.4 [688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x8.c.o +#10 100.4 [689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x2.c.o +#10 100.4 [690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x1.c.o +#10 100.4 [691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x1.c.o +#10 100.4 [692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x8.c.o +#10 100.4 [693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x2.c.o +#10 100.4 [694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x4.c.o +#10 100.4 [695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x2.c.o +#10 100.4 [696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x1.c.o +#10 100.4 [697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x4.c.o +#10 100.4 [698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x8.c.o +#10 100.4 [699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x1.c.o +#10 100.4 [700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x2.c.o +#10 100.4 [701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x2.c.o +#10 100.4 [702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x4.c.o +#10 100.5 [703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x8.c.o +#10 100.5 [704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x4.c.o +#10 100.5 [705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x8.c.o +#10 100.5 [706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x2.c.o +#10 100.5 [707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x8.c.o +#10 100.5 [708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x4.c.o +#10 100.5 [709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x2.c.o +#10 100.5 [710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x1.c.o +#10 100.5 [711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x4.c.o +#10 100.5 [712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x1.c.o +#10 100.5 [713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x1.c.o +#10 100.5 [714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x3.c.o +#10 100.5 [715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x2.c.o +#10 100.5 [716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x1.c.o +#10 100.6 [717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x4.c.o +#10 100.6 [718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x2.c.o +#10 100.6 [719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x3.c.o +#10 100.6 [720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x5.c.o +#10 100.6 [721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x6.c.o +#10 100.6 [722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x4.c.o +#10 100.6 [723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x6.c.o +#10 100.6 [724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x5.c.o +#10 100.6 [725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x1.c.o +#10 100.6 [726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x1.c.o +#10 100.6 [727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x4.c.o +#10 100.6 [728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x2.c.o +#10 100.6 [729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o +#10 100.6 [730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x2.c.o +#10 100.6 [731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x4.c.o +#10 100.6 [732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x2.c.o +#10 100.6 [733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x4.c.o +#10 100.6 [734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o +#10 100.6 [735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x1.c.o +#10 100.6 [736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x8.c.o +#10 100.6 [737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x1.c.o +#10 100.6 [738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o +#10 100.6 [739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x2.c.o +#10 100.7 [740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x4.c.o +#10 100.7 [741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x1.c.o +#10 100.7 [742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x1.c.o +#10 100.7 [743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x2.c.o +#10 100.7 [744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x2.c.o +#10 100.7 [745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x1.c.o +#10 100.7 [746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x4.c.o +#10 100.7 [747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x4.c.o +#10 100.7 [748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x2.c.o +#10 100.7 [749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x4.c.o +#10 100.7 [750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x1.c.o +#10 100.7 [751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x1.c.o +#10 100.7 [752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x2.c.o +#10 100.7 [753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x1.c.o +#10 100.7 [754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x2.c.o +#10 100.8 [755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x4.c.o +#10 100.8 [756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x4.c.o +#10 100.8 [757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x1.c.o +#10 100.8 [758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x2.c.o +#10 100.8 [759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x2.c.o +#10 100.8 [760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x4.c.o +#10 100.8 [761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x4.c.o +#10 100.8 [762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x4.c.o +#10 100.8 [763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x1.c.o +#10 100.8 [764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x1.c.o +#10 100.8 [765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x2.c.o +#10 100.8 [766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x1.c.o +#10 100.8 [767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x2.c.o +#10 100.8 [768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x1.c.o +#10 100.8 [769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x2.c.o +#10 100.8 [770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x2.c.o +#10 100.8 [771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x4.c.o +#10 100.8 [772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x4.c.o +#10 100.8 [773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x3.c.o +#10 100.8 [774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x4.c.o +#10 100.8 [775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-scalar-bitcast.c.o +#10 100.8 [776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-scalar-fabsf.c.o +#10 100.8 [777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut4-p4.c.o +#10 100.8 [778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut8-p3.c.o +#10 100.8 [779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut16-p3.c.o +#10 100.8 [780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut8-p4.c.o +#10 100.8 [781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut16-p4.c.o +#10 100.8 [782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-p5.c.o +#10 100.8 [783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-p6.c.o +#10 100.8 [784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-p5.c.o +#10 100.9 [785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-lut2048-p1.c.o +#10 100.9 [786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-lut64-p2.c.o +#10 100.9 [787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-floor.c.o +#10 100.9 [788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-addsub.c.o +#10 100.9 [789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-rint.c.o +#10 100.9 [790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-ceil.c.o +#10 100.9 [791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-addsub.c.o +#10 100.9 [792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-addsub.c.o +#10 100.9 [793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-cvt.c.o +#10 100.9 [794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-cvt.c.o +#10 100.9 [795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-addsub.c.o +#10 100.9 [796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-cvt.c.o +#10 100.9 [797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-nearbyint.c.o +#10 100.9 [798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-trunc.c.o +#10 100.9 [799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-clz-newton.c.o +#10 100.9 [800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-clz-binsearch.c.o +#10 100.9 [801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti32-sqrt-lrint.c.o +#10 100.9 [802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-lut64-p2-div.c.o +#10 100.9 [803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-bitmanip.c.o +#10 100.9 [804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-p5-div.c.o +#10 100.9 [805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-lut2048-p1-div.c.o +#10 100.9 [806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvtu32-sqrt-lrint.c.o +#10 100.9 [807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti64-sqrtf-lrintf.c.o +#10 100.9 [808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-tflm.c.o +#10 100.9 [809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-hashemian.c.o +#10 100.9 [810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvtu32-sqrtf-lrintf.c.o +#10 101.0 [811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti64-sqrt-lrint.c.o +#10 101.0 [812/6823] Generating src/x86_64-fma/2d-fourier-8x8.py.o +#10 101.0 [813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu32-sqrt-llrint.c.o +#10 101.0 [814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu32-sqrt-cvtsatu32f64.c.o +#10 101.0 [815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/tanh-f32-scalar-rr1-p6-div.c.o +#10 101.0 [816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/tanh-f32-scalar-rr2-p6-div.c.o +#10 101.0 [817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu64-sqrt-llrint.c.o +#10 101.0 [818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o +#10 101.0 [819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 101.0 [820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o +#10 101.0 [821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o +#10 101.0 [822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 101.0 [823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 101.1 [824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 101.1 [825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 101.1 [826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 101.1 [827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 101.1 [828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 101.1 [829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 101.1 [830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse41-2x4.c.o +#10 101.1 [831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x8.c.o +#10 101.1 [832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x24.c.o +#10 101.1 [833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse41-2x8.c.o +#10 101.1 [834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 101.1 [835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x16.c.o +#10 101.1 [836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x32.c.o +#10 101.2 [837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 101.2 [838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 101.2 [839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 101.2 [840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 101.2 [841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 101.2 [842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 101.2 [843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 101.2 [844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 101.3 [845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 101.3 [846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 101.3 [847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 101.3 [848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 101.3 [849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 101.3 [850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 101.3 [851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 101.3 [852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 101.3 [853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 101.3 [854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 101.3 [855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 101.3 [856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 101.4 [857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 101.4 [858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 101.4 [859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 101.4 [860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 101.4 [861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 101.4 [862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 101.4 [863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 101.4 [864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 101.4 [865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 101.4 [866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 101.5 [867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 101.5 [868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 101.5 [869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 101.5 [870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 101.5 [871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 101.5 [872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 101.5 [873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 101.5 [874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 101.5 [875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 101.5 [876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 101.5 [877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 101.5 [878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 101.6 [879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 101.6 [880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 101.6 [881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 101.6 [882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 101.6 [883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 101.6 [884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 101.6 [885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-sse-x8.c.o +#10 101.6 [886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 101.6 [887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 101.6 [888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 101.6 [889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-sse-x8.c.o +#10 101.6 [890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 101.6 [891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-sse-x4.c.o +#10 101.6 [892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 101.7 [893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 101.7 [894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o +#10 101.7 [895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 101.7 [896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 101.7 [897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 101.7 [898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o +#10 101.7 [899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 101.7 [900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 101.8 [901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o +#10 101.8 [902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 101.8 [903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 101.8 [904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 101.8 [905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 101.8 [906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x1.c.o +#10 101.8 [907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x2.c.o +#10 101.8 [908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 101.8 [909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 101.8 [910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x3.c.o +#10 101.9 [911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x4.c.o +#10 101.9 [912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 101.9 [913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 101.9 [914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 101.9 [915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 101.9 [916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 101.9 [917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o +#10 101.9 [918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 101.9 [919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 101.9 [920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 102.0 [921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o +#10 102.0 [922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 102.0 [923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o +#10 102.0 [924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 102.0 [925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o +#10 102.0 [926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 102.0 [927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o +#10 102.0 [928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 102.0 [929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o +#10 102.0 [930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 102.0 [931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 102.0 [932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 102.0 [933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 102.0 [934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 102.0 [935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 102.0 [936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 102.1 [937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 102.1 [938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-rndnu-scalar.c.o +#10 102.1 [939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 102.1 [940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 102.1 [941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 102.1 [942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 102.1 [943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 102.1 [944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-rndnu-scalar.c.o +#10 102.1 [945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-rndnu-scalar.c.o +#10 102.1 [946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 102.1 [947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 102.1 [948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 102.2 [949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 102.2 [950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-rndnu-scalar.c.o +#10 102.2 [951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 102.2 [952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 102.2 [953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 102.2 [954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 102.2 [955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-rndnu-scalar.c.o +#10 102.2 [956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 102.2 [957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 102.2 [958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 102.3 [959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-rndnu-scalar.c.o +#10 102.3 [960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 102.3 [961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 102.3 [962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-rndnu-scalar.c.o +#10 102.3 [963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 102.3 [964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 102.3 [965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 102.3 [966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 102.3 [967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-rndnu-scalar.c.o +#10 102.3 [968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-rndnu-scalar.c.o +#10 102.3 [969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 102.3 [970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 102.3 [971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 102.3 [972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 102.4 [973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-rndnu-scalar.c.o +#10 102.4 [974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 102.4 [975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 102.4 [976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 102.4 [977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 102.4 [978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-rndnu-scalar.c.o +#10 102.4 [979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 102.4 [980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 102.4 [981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-rndnu-scalar.c.o +#10 102.4 [982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 102.4 [983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 102.4 [984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 102.5 [985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 102.5 [986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 102.5 [987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-rndnu-scalar.c.o +#10 102.5 [988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 102.5 [989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 102.5 [990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 102.5 [991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-rndnu-scalar.c.o +#10 102.5 [992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 102.5 [993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-lrintf.c.o +#10 102.6 [994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 102.6 [995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 102.6 [996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-fmagic.c.o +#10 102.6 [997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 102.6 [998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 102.6 [999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-rndnu-scalar.c.o +#10 102.6 [1000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-scalar.c.o +#10 102.6 [1001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-signed64.c.o +#10 102.6 [1002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-scalar.c.o +#10 102.6 [1003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned64.c.o +#10 102.6 [1004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x1.c.o +#10 102.6 [1005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x1.c.o +#10 102.6 [1006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned32.c.o +#10 102.6 [1007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 102.6 [1008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x2.c.o +#10 102.6 [1009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-rndnu-scalar.c.o +#10 102.6 [1010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x4.c.o +#10 102.6 [1011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x4.c.o +#10 102.6 [1012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x1.c.o +#10 102.6 [1013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x2.c.o +#10 102.6 [1014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x2.c.o +#10 102.6 [1015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x1.c.o +#10 102.6 [1016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x1.c.o +#10 102.6 [1017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x2.c.o +#10 102.6 [1018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x4.c.o +#10 102.6 [1019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x4.c.o +#10 102.6 [1020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x1.c.o +#10 102.6 [1021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x2.c.o +#10 102.7 [1022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x2.c.o +#10 102.7 [1023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x4.c.o +#10 102.7 [1024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x1.c.o +#10 102.7 [1025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x4.c.o +#10 102.7 [1026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x2.c.o +#10 102.7 [1027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x4.c.o +#10 102.7 [1028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o +#10 102.7 [1029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o +#10 102.7 [1030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 102.7 [1031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 102.7 [1032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o +#10 102.8 [1033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 102.8 [1034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o +#10 102.8 [1035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 102.8 [1036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 102.8 [1037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 102.8 [1038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 102.8 [1039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 102.8 [1040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 102.9 [1041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 102.9 [1042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 102.9 [1043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x1.c.o +#10 102.9 [1044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 102.9 [1045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x2.c.o +#10 102.9 [1046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o +#10 102.9 [1047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x4.c.o +#10 102.9 [1048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 102.9 [1049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x3.c.o +#10 103.0 [1050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 103.0 [1051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 103.0 [1052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 103.0 [1053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 103.0 [1054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o +#10 103.0 [1055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o +#10 103.0 [1056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 103.0 [1057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o +#10 103.0 [1058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 103.0 [1059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 103.1 [1060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 103.1 [1061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 103.1 [1062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 103.1 [1063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o +#10 103.1 [1064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 103.1 [1065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 103.1 [1066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 103.1 [1067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 103.1 [1068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o +#10 103.1 [1069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 103.1 [1070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o +#10 103.1 [1071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 103.1 [1072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 103.1 [1073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 103.1 [1074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 103.1 [1075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 103.1 [1076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 103.2 [1077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o +#10 103.2 [1078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 103.2 [1079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o +#10 103.2 [1080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 103.2 [1081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 103.2 [1082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o +#10 103.2 [1083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 103.2 [1084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 103.2 [1085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 103.3 [1086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 103.3 [1087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 103.3 [1088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 103.3 [1089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 103.3 [1090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o +#10 103.3 [1091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o +#10 103.3 [1092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 103.3 [1093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 103.3 [1094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 103.3 [1095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 103.3 [1096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o +#10 103.3 [1097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 103.3 [1098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 103.3 [1099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o +#10 103.4 [1100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 103.4 [1101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 103.4 [1102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 103.4 [1103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 103.4 [1104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o +#10 103.4 [1105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 103.4 [1106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o +#10 103.4 [1107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 103.4 [1108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 103.4 [1109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 103.5 [1110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 103.5 [1111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x8.c.o +#10 103.5 [1112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x16.c.o +#10 103.5 [1113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 103.5 [1114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 103.5 [1115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 103.5 [1116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x32.c.o +#10 103.5 [1117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 103.5 [1118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x24.c.o +#10 103.5 [1119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 103.6 [1120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o +#10 103.6 [1121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 103.6 [1122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 103.6 [1123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 103.6 [1124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 103.6 [1125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 103.6 [1126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o +#10 103.6 [1127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o +#10 103.7 [1128/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 103.7 [1129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 103.7 [1130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 103.7 [1131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 103.7 [1132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 103.7 [1133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o +#10 103.7 [1134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 103.7 [1135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 103.7 [1136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 103.8 [1137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-lrintf.c.o +#10 103.8 [1138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-scalar.c.o +#10 103.8 [1139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-signed64.c.o +#10 103.8 [1140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o +#10 103.8 [1141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-fmagic.c.o +#10 103.8 [1142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x8.c.o +#10 103.8 [1143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x1.c.o +#10 103.8 [1144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned64.c.o +#10 103.8 [1145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x16.c.o +#10 103.8 [1146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned32.c.o +#10 103.8 [1147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x24.c.o +#10 103.8 [1148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x2.c.o +#10 103.8 [1149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 103.8 [1150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 103.8 [1151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x2.c.o +#10 103.8 [1152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x4.c.o +#10 103.8 [1153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o +#10 103.8 [1154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x1.c.o +#10 103.8 [1155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x1.c.o +#10 103.8 [1156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x4.c.o +#10 103.9 [1157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x2.c.o +#10 103.9 [1158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x1.c.o +#10 103.9 [1159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x4.c.o +#10 103.9 [1160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x2.c.o +#10 103.9 [1161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x4.c.o +#10 103.9 [1162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x2.c.o +#10 103.9 [1163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x4.c.o +#10 103.9 [1164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x1.c.o +#10 103.9 [1165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x1.c.o +#10 103.9 [1166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x2.c.o +#10 103.9 [1167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x1.c.o +#10 103.9 [1168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x4.c.o +#10 103.9 [1169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o +#10 103.9 [1170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o +#10 103.9 [1171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x1.c.o +#10 103.9 [1172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x4.c.o +#10 103.9 [1173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x2.c.o +#10 103.9 [1174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x2.c.o +#10 103.9 [1175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x1.c.o +#10 103.9 [1176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o +#10 103.9 [1177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-scalar-x4.c.o +#10 103.9 [1178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x4.c.o +#10 103.9 [1179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x3.c.o +#10 103.9 [1180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x2.c.o +#10 103.9 [1181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o +#10 104.0 [1182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o +#10 104.0 [1183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x4.c.o +#10 104.0 [1184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-scalar.c.o +#10 104.0 [1185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o +#10 104.0 [1186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-accumulate/gen/u32-filterbank-accumulate-scalar-x1.c.o +#10 104.0 [1187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o +#10 104.0 [1188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o +#10 104.0 [1189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-subtract/u32-filterbank-subtract-scalar-x2.c.o +#10 104.0 [1190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x1.c.o +#10 104.0 [1191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x3.c.o +#10 104.0 [1192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x1.c.o +#10 104.0 [1193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x3.c.o +#10 104.0 [1194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x2.c.o +#10 104.0 [1195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-scalar-x4.c.o +#10 104.0 [1196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o +#10 104.0 [1197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x2.c.o +#10 104.0 [1198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x4.c.o +#10 104.0 [1199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x4.c.o +#10 104.0 [1200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x8.c.o +#10 104.0 [1201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o +#10 104.0 [1202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u64-u32-vsqrtshift/u64-u32-vsqrtshift-scalar-cvtu32-sqrt-cvtu32f64-x1.c.o +#10 104.0 [1203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x16.c.o +#10 104.0 [1204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o +#10 104.0 [1205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-scalar.c.o +#10 104.0 [1206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o +#10 104.0 [1207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o +#10 104.0 [1208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-scalar.c.o +#10 104.0 [1209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o +#10 104.1 [1210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o +#10 104.1 [1211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-scalar.c.o +#10 104.1 [1212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-scalar.c.o +#10 104.1 [1213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o +#10 104.1 [1214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o +#10 104.1 [1215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o +#10 104.1 [1216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o +#10 104.1 [1217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o +#10 104.1 [1218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o +#10 104.1 [1219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o +#10 104.1 [1220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o +#10 104.1 [1221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o +#10 104.1 [1222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o +#10 104.1 [1223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o +#10 104.1 [1224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o +#10 104.1 [1225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o +#10 104.1 [1226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x2-scalar.c.o +#10 104.1 [1227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o +#10 104.1 [1228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x3-scalar.c.o +#10 104.1 [1229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o +#10 104.1 [1230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o +#10 104.1 [1231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o +#10 104.1 [1232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o +#10 104.1 [1233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o +#10 104.1 [1234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o +#10 104.2 [1235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o +#10 104.2 [1236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o +#10 104.2 [1237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x4-scalar.c.o +#10 104.2 [1238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o +#10 104.2 [1239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o +#10 104.2 [1240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o +#10 104.2 [1241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o +#10 104.2 [1242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o +#10 104.2 [1243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o +#10 104.2 [1244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-scalar.c.o +#10 104.2 [1245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o +#10 104.2 [1246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o +#10 104.2 [1247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o +#10 104.2 [1248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-scalar.c.o +#10 104.2 [1249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o +#10 104.2 [1250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o +#10 104.2 [1251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-scalar.c.o +#10 104.2 [1252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-scalar.c.o +#10 104.2 [1253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-scalar.c.o +#10 104.2 [1254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o +#10 104.2 [1255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o +#10 104.2 [1256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o +#10 104.2 [1257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o +#10 104.3 [1258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o +#10 104.3 [1259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o +#10 104.3 [1260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-scalar-x16.c.o +#10 104.3 [1261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o +#10 104.3 [1262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o +#10 104.3 [1263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o +#10 104.3 [1264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o +#10 104.3 [1265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o +#10 104.3 [1266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o +#10 104.3 [1267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-scalar.c.o +#10 104.3 [1268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-transpose/xx-transpose-1x1-scalar-memcpy.c.o +#10 104.3 [1269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o +#10 104.3 [1270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o +#10 104.4 [1271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc3.c.o +#10 104.4 [1272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc2.c.o +#10 104.4 [1273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc4.c.o +#10 104.4 [1274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.o +#10 104.4 [1275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4.c.o +#10 104.4 [1276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-3x4.c.o +#10 104.4 [1277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4.c.o +#10 104.4 [1278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o +#10 104.5 [1279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4.c.o +#10 104.5 [1280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc2.c.o +#10 104.5 [1281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-5x4.c.o +#10 104.5 [1282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc4.c.o +#10 104.5 [1283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o +#10 104.5 [1284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4.c.o +#10 104.5 [1285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-4x4.c.o +#10 104.5 [1286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-6x4.c.o +#10 104.5 [1287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o +#10 104.5 [1288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4-acc2.c.o +#10 104.6 [1289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-3x4.c.o +#10 104.6 [1290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc2.c.o +#10 104.6 [1291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-4x4.c.o +#10 104.6 [1292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc3.c.o +#10 104.7 [1293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc5.c.o +#10 104.7 [1294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc4.c.o +#10 104.7 [1295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4.c.o +#10 104.7 [1296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc3.c.o +#10 104.7 [1297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc2.c.o +#10 104.8 [1298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4.c.o +#10 104.8 [1299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-3x4-acc2.c.o +#10 104.8 [1300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc2.c.o +#10 104.8 [1301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-3x4.c.o +#10 104.8 [1302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc3.c.o +#10 104.8 [1303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc5.c.o +#10 104.8 [1304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc4.c.o +#10 104.9 [1305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o +#10 104.9 [1306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-sse-acc2.c.o +#10 104.9 [1307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4-acc2.c.o +#10 104.9 [1308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4.c.o +#10 104.9 [1309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o +#10 104.9 [1310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc2.c.o +#10 104.9 [1311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc3.c.o +#10 104.9 [1312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-sse.c.o +#10 105.0 [1313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o +#10 105.0 [1314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse-acc2.c.o +#10 105.0 [1315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-5x4.c.o +#10 105.0 [1316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-sse-acc2.c.o +#10 105.0 [1317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-sse.c.o +#10 105.0 [1318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse-acc2.c.o +#10 105.0 [1319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4-acc2.c.o +#10 105.0 [1320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o +#10 105.1 [1321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4.c.o +#10 105.1 [1322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-sse-acc2.c.o +#10 105.1 [1323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.o +#10 105.1 [1324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-sse.c.o +#10 105.1 [1325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.o +#10 105.1 [1326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-7f6m6l8c4s4r-minmax-sse-acc2.c.o +#10 105.1 [1327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse-acc2.c.o +#10 105.1 [1328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o +#10 105.1 [1329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-7f6m6l8c4s4r-minmax-sse.c.o +#10 105.1 [1330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-sse-acc2.c.o +#10 105.1 [1331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-sse-x4.c.o +#10 105.2 [1332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-sse-c4.c.o +#10 105.2 [1333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-sse.c.o +#10 105.2 [1334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse-acc2.c.o +#10 105.2 [1335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-dup.c.o +#10 105.2 [1336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o +#10 105.2 [1337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-sse-c4.c.o +#10 105.2 [1338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-sse.c.o +#10 105.2 [1339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse-dup.c.o +#10 105.2 [1340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o +#10 105.2 [1341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse-load1.c.o +#10 105.3 [1342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8s4-minmax-sse.c.o +#10 105.3 [1343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o +#10 105.3 [1344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse-dup.c.o +#10 105.3 [1345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o +#10 105.3 [1346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-dup.c.o +#10 105.3 [1347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse-load1.c.o +#10 105.3 [1348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse-load1.c.o +#10 105.3 [1349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-sse.c.o +#10 105.3 [1350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse-load1.c.o +#10 105.3 [1351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8s4-minmax-sse.c.o +#10 105.3 [1352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse-dup.c.o +#10 105.4 [1353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8s4-minmax-sse.c.o +#10 105.4 [1354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse-dup.c.o +#10 105.4 [1355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8s4-minmax-sse.c.o +#10 105.4 [1356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse-load1.c.o +#10 105.4 [1357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8s4-minmax-sse.c.o +#10 105.4 [1358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse-dup.c.o +#10 105.4 [1359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse-load1.c.o +#10 105.5 [1360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8s4-minmax-sse.c.o +#10 105.5 [1361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-dup.c.o +#10 105.5 [1362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse-dup.c.o +#10 105.5 [1363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-sse.c.o +#10 105.5 [1364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o +#10 105.5 [1365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse-load1.c.o +#10 105.5 [1366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse-dup.c.o +#10 105.5 [1367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o +#10 105.6 [1368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8s4-minmax-sse.c.o +#10 105.6 [1369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o +#10 105.6 [1370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-dup.c.o +#10 105.6 [1371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse-load1.c.o +#10 105.6 [1372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-sse.c.o +#10 105.6 [1373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o +#10 105.6 [1374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse-dup.c.o +#10 105.6 [1375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o +#10 105.7 [1376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o +#10 105.7 [1377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse-2x4.c.o +#10 105.7 [1378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-sse.c.o +#10 105.7 [1379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-sse.c.o +#10 105.7 [1380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p4.c.o +#10 105.7 [1381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse-2x8.c.o +#10 105.7 [1382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c4.c.o +#10 105.7 [1383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o +#10 105.7 [1384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o +#10 105.8 [1385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-sse-x4.c.o +#10 105.8 [1386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8s4-minmax-sse.c.o +#10 105.8 [1387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-sse-x4.c.o +#10 105.8 [1388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-sse-x4.c.o +#10 105.8 [1389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-sse-x8.c.o +#10 105.8 [1390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-sse-x8.c.o +#10 105.8 [1391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-sse-x8.c.o +#10 105.8 [1392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-sse-x4.c.o +#10 105.8 [1393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-sse-x4.c.o +#10 105.8 [1394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-sse-x8.c.o +#10 105.8 [1395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-sse-x8.c.o +#10 105.8 [1396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-sse-x8.c.o +#10 105.8 [1397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-sse-x4.c.o +#10 105.9 [1398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-sse-x4.c.o +#10 105.9 [1399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-sse-x4.c.o +#10 105.9 [1400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-sse-x8.c.o +#10 105.9 [1401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-sse-x8.c.o +#10 105.9 [1402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-sse-x4.c.o +#10 105.9 [1403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-sse-x8.c.o +#10 105.9 [1404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-sse-x4.c.o +#10 105.9 [1405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-sse-x8.c.o +#10 105.9 [1406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-sse-x4.c.o +#10 106.0 [1407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 106.0 [1408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-avx.c.o +#10 106.0 [1409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 106.0 [1410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-avx.c.o +#10 106.0 [1411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-x8.c.o +#10 106.0 [1412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 106.0 [1413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-x4.c.o +#10 106.0 [1414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-sse.c.o +#10 106.0 [1415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 106.0 [1416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-x4.c.o +#10 106.0 [1417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-sse.c.o +#10 106.1 [1418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-sse-x4.c.o +#10 106.1 [1419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-sse.c.o +#10 106.1 [1420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-x8.c.o +#10 106.1 [1421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-sse-x8.c.o +#10 106.1 [1422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-sse-x8.c.o +#10 106.1 [1423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-sse-x4.c.o +#10 106.1 [1424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-sse-x4.c.o +#10 106.1 [1425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-sse-x8.c.o +#10 106.1 [1426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-sse-x4.c.o +#10 106.1 [1427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o +#10 106.1 [1428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-x8.c.o +#10 106.1 [1429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-sse-x8.c.o +#10 106.1 [1430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-x4.c.o +#10 106.1 [1431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-sse-x4.c.o +#10 106.1 [1432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-sqrt-x4.c.o +#10 106.1 [1433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o +#10 106.1 [1434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-sse-2x.c.o +#10 106.1 [1435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-sse-x4.c.o +#10 106.2 [1436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-sse-x8.c.o +#10 106.2 [1437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-sqrt-x8.c.o +#10 106.2 [1438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse-addsub.c.o +#10 106.2 [1439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-sse-x8.c.o +#10 106.2 [1440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-sse-x4.c.o +#10 106.2 [1441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-sse-x4.c.o +#10 106.2 [1442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse-addsub.c.o +#10 106.2 [1443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse-addsub.c.o +#10 106.2 [1444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-sse-x8.c.o +#10 106.2 [1445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse-addsub.c.o +#10 106.2 [1446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-hh1mac.c.o +#10 106.2 [1447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-sse-x8.c.o +#10 106.2 [1448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-nr1mac.c.o +#10 106.2 [1449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-nr2mac.c.o +#10 106.2 [1450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x4-sse.c.o +#10 106.2 [1451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x8.c.o +#10 106.3 [1452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o +#10 106.3 [1453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x16.c.o +#10 106.3 [1454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x8.c.o +#10 106.3 [1455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x16.c.o +#10 106.3 [1456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-sse2-x8.c.o +#10 106.3 [1457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x32.c.o +#10 106.3 [1458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x24.c.o +#10 106.3 [1459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x32.c.o +#10 106.3 [1460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x24.c.o +#10 106.3 [1461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-sse2-x16.c.o +#10 106.3 [1462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-sse2-x16.c.o +#10 106.3 [1463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-sse2-x8.c.o +#10 106.3 [1464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o +#10 106.3 [1465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o +#10 106.4 [1466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x8.c.o +#10 106.4 [1467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x24.c.o +#10 106.4 [1468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o +#10 106.4 [1469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x16.c.o +#10 106.4 [1470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x32.c.o +#10 106.4 [1471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse2-dup.c.o +#10 106.4 [1472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse2-dup.c.o +#10 106.4 [1473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse2-dup.c.o +#10 106.5 [1474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse2-dup.c.o +#10 106.5 [1475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse2-dup.c.o +#10 106.5 [1476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse2-dup.c.o +#10 106.5 [1477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x8.c.o +#10 106.5 [1478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse2-dup.c.o +#10 106.5 [1479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse2-dup.c.o +#10 106.5 [1480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse2-2x4.c.o +#10 106.5 [1481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse2-2x8.c.o +#10 106.5 [1482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse2-dup.c.o +#10 106.5 [1483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse2-dup.c.o +#10 106.5 [1484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse2-dup.c.o +#10 106.5 [1485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x8.c.o +#10 106.5 [1486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x16.c.o +#10 106.5 [1487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x24.c.o +#10 106.5 [1488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x24.c.o +#10 106.5 [1489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse2-dup.c.o +#10 106.5 [1490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x32.c.o +#10 106.5 [1491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x16.c.o +#10 106.5 [1492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x4.c.o +#10 106.6 [1493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x8.c.o +#10 106.6 [1494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x32.c.o +#10 106.6 [1495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x8-acc2.c.o +#10 106.6 [1496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12-acc2.c.o +#10 106.6 [1497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12-acc3.c.o +#10 106.6 [1498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12.c.o +#10 106.6 [1499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16-acc2.c.o +#10 106.6 [1500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20-acc5.c.o +#10 106.6 [1501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16.c.o +#10 106.6 [1502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16-acc4.c.o +#10 106.6 [1503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20-acc2.c.o +#10 106.6 [1504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x4.c.o +#10 106.6 [1505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20.c.o +#10 106.7 [1506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x8.c.o +#10 106.7 [1507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x4.c.o +#10 106.7 [1508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x8.c.o +#10 106.7 [1509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x16.c.o +#10 106.7 [1510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x12.c.o +#10 106.7 [1511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x12.c.o +#10 106.7 [1512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x16.c.o +#10 106.7 [1513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x20.c.o +#10 106.7 [1514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x24.c.o +#10 106.7 [1515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x20.c.o +#10 106.7 [1516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse2-x8.c.o +#10 106.7 [1517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse2-x4.c.o +#10 106.8 [1518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x24.c.o +#10 106.8 [1519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse2-x4.c.o +#10 106.8 [1520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse2-x8.c.o +#10 106.8 [1521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse2-x4.c.o +#10 106.8 [1522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse2-x4.c.o +#10 106.8 [1523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse2-x8.c.o +#10 106.8 [1524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse2-x8.c.o +#10 106.8 [1525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse2-x4.c.o +#10 106.8 [1526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x8.c.o +#10 106.9 [1527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse2-x8.c.o +#10 106.9 [1528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x4.c.o +#10 106.9 [1529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x12.c.o +#10 106.9 [1530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x4.c.o +#10 106.9 [1531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x16.c.o +#10 106.9 [1532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x16.c.o +#10 106.9 [1533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x20.c.o +#10 106.9 [1534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x12.c.o +#10 106.9 [1535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x24.c.o +#10 106.9 [1536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x8.c.o +#10 106.9 [1537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x20.c.o +#10 106.9 [1538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse2-int16.c.o +#10 106.9 [1539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse2-int32.c.o +#10 106.9 [1540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-sse2.c.o +#10 106.9 [1541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-sse2-rr2-p5.c.o +#10 106.9 [1542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x24.c.o +#10 106.9 [1543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-sse2-rr2-p5.c.o +#10 106.9 [1544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse2-cvt.c.o +#10 106.9 [1545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-sse2-rr2-lut64-p2.c.o +#10 106.9 [1546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-sse2-rr2-p6.c.o +#10 106.9 [1547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse2-cvt.c.o +#10 106.9 [1548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse2-cvt.c.o +#10 107.0 [1549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-sse2-rr2-lut16-p3.c.o +#10 107.0 [1550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse2-cvt.c.o +#10 107.0 [1551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-div.c.o +#10 107.0 [1552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-nr1.c.o +#10 107.0 [1553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-nr2.c.o +#10 107.0 [1554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-nr2.c.o +#10 107.0 [1555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-div.c.o +#10 107.0 [1556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-nr1.c.o +#10 107.1 [1557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 107.1 [1558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o +#10 107.1 [1559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.1 [1560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 107.1 [1561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 107.1 [1562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.1 [1563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 107.2 [1564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.2 [1565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 107.2 [1566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.2 [1567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 107.2 [1568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse2-mul16.c.o +#10 107.2 [1569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 107.3 [1570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 107.3 [1571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.3 [1572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.3 [1573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.3 [1574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 107.3 [1575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 107.4 [1576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.4 [1577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 107.4 [1578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.4 [1579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.4 [1580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 107.4 [1581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.4 [1582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.4 [1583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 107.4 [1584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 107.5 [1585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.5 [1586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.5 [1587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.5 [1588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.5 [1589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.5 [1590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.5 [1591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.5 [1592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.6 [1593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 107.6 [1594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 107.6 [1595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.6 [1596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 107.6 [1597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 107.6 [1598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.6 [1599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.6 [1600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.7 [1601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.7 [1602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.7 [1603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.7 [1604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse2-mul16.c.o +#10 107.7 [1605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.7 [1606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 107.7 [1607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 107.8 [1608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 107.8 [1609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 107.8 [1610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 107.8 [1611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 107.8 [1612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 107.8 [1613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 107.8 [1614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x8.c.o +#10 107.8 [1615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x16.c.o +#10 107.8 [1616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 107.9 [1617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x24.c.o +#10 107.9 [1618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 107.9 [1619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse2-mul16.c.o +#10 107.9 [1620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x32.c.o +#10 108.0 [1621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c8.c.o +#10 108.0 [1622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 108.0 [1623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c8.c.o +#10 108.0 [1624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c16.c.o +#10 108.0 [1625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c24.c.o +#10 108.0 [1626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.0 [1627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.1 [1628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-sse2.c.o +#10 108.1 [1629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.1 [1630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 108.1 [1631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c16.c.o +#10 108.1 [1632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c24.c.o +#10 108.1 [1633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.1 [1634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-sse2.c.o +#10 108.1 [1635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 108.2 [1636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-sse2.c.o +#10 108.2 [1637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 108.2 [1638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 108.2 [1639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.2 [1640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-sse2.c.o +#10 108.2 [1641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.2 [1642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.2 [1643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-sse2.c.o +#10 108.2 [1644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 108.2 [1645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.3 [1646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 108.3 [1647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 108.3 [1648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-sse2.c.o +#10 108.3 [1649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-sse2.c.o +#10 108.3 [1650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.3 [1651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.3 [1652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.3 [1653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 108.3 [1654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-sse2.c.o +#10 108.3 [1655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.4 [1656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse2-mul16.c.o +#10 108.4 [1657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 108.4 [1658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-sse2.c.o +#10 108.4 [1659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.4 [1660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.4 [1661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.4 [1662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-sse2.c.o +#10 108.4 [1663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.5 [1664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-sse2.c.o +#10 108.5 [1665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.5 [1666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.5 [1667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.5 [1668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.5 [1669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 108.5 [1670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 108.5 [1671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.6 [1672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.6 [1673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 108.6 [1674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 108.6 [1675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.6 [1676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.6 [1677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.6 [1678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-sse2.c.o +#10 108.6 [1679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.6 [1680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.7 [1681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 108.7 [1682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.7 [1683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 108.7 [1684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-sse2.c.o +#10 108.7 [1685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 108.7 [1686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-sse2.c.o +#10 108.7 [1687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 108.7 [1688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x8.c.o +#10 108.7 [1689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 108.7 [1690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 108.7 [1691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x16.c.o +#10 108.7 [1692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x24.c.o +#10 108.7 [1693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x16.c.o +#10 108.7 [1694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x8.c.o +#10 108.8 [1695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-x16.c.o +#10 108.8 [1696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x32.c.o +#10 108.8 [1697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x24.c.o +#10 108.8 [1698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-x32.c.o +#10 108.8 [1699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x32.c.o +#10 108.8 [1700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-x16.c.o +#10 108.8 [1701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 108.8 [1702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 108.8 [1703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 108.8 [1704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-x32.c.o +#10 108.8 [1705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o +#10 108.9 [1706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 108.9 [1707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x8.c.o +#10 108.9 [1708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x24.c.o +#10 108.9 [1709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x32.c.o +#10 108.9 [1710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o +#10 108.9 [1711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 108.9 [1712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x16.c.o +#10 109.0 [1713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c8.c.o +#10 109.0 [1714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c16.c.o +#10 109.0 [1715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c8.c.o +#10 109.0 [1716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.0 [1717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c16.c.o +#10 109.0 [1718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 109.0 [1719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c24.c.o +#10 109.0 [1720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.0 [1721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.1 [1722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 109.1 [1723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 109.1 [1724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 109.1 [1725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c24.c.o +#10 109.1 [1726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.1 [1727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.1 [1728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.1 [1729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.1 [1730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 109.2 [1731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.2 [1732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 109.2 [1733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.2 [1734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.2 [1735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.2 [1736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.2 [1737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 109.2 [1738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 109.2 [1739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.2 [1740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 109.2 [1741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.3 [1744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.3 [1746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 109.3 [1749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.3 [1750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.3 [1752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.4 [1753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.4 [1754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 109.4 [1755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 109.4 [1756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.4 [1757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.4 [1758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.4 [1759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 109.4 [1760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.4 [1761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 109.4 [1762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-sse2.c.o +#10 109.5 [1763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-sse2.c.o +#10 109.5 [1764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-sse2.c.o +#10 109.5 [1765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-x8.c.o +#10 109.5 [1766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 109.5 [1767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 109.5 [1768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 109.5 [1769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 109.5 [1770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-x8.c.o +#10 109.5 [1771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-x16.c.o +#10 109.5 [1772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-x16.c.o +#10 109.5 [1773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-x16.c.o +#10 109.5 [1774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-x16.c.o +#10 109.5 [1775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 109.5 [1776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 109.5 [1777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 109.6 [1778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-x32.c.o +#10 109.6 [1779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-x32.c.o +#10 109.6 [1780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 109.6 [1781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o +#10 109.6 [1782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-sse2-x64.c.o +#10 109.6 [1783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o +#10 109.6 [1784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-sse2-x64.c.o +#10 109.6 [1785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-sse2.c.o +#10 109.6 [1786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c16.c.o +#10 109.6 [1787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c16.c.o +#10 109.6 [1788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o +#10 109.6 [1789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-sse2.c.o +#10 109.6 [1790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-sse2.c.o +#10 109.6 [1791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o +#10 109.7 [1792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-sse2.c.o +#10 109.7 [1793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-sse2.c.o +#10 109.8 [1794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/x16-transposec-4x8-sse2.c.o +#10 109.9 [1795/6823] Generating src/x86_64-fma/2d-fourier-16x16.py.o +#10 110.0 [1796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-sse2.c.o +#10 110.0 [1797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-sse2.c.o +#10 110.0 [1798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-sse2.c.o +#10 110.0 [1799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o +#10 110.0 [1800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-sse2.c.o +#10 110.0 [1801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-sse2.c.o +#10 110.0 [1802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-sse2.c.o +#10 110.1 [1803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-sse2.c.o +#10 110.1 [1804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-sse2.c.o +#10 110.1 [1805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-sse2.c.o +#10 110.1 [1806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-sse2.c.o +#10 110.1 [1807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-sse2.c.o +#10 110.1 [1808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-sse2.c.o +#10 110.1 [1809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-sse2.c.o +#10 110.1 [1810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-sse2.c.o +#10 110.2 [1811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o +#10 110.2 [1812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-sse2.c.o +#10 110.2 [1813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-sse2-x64.c.o +#10 110.2 [1814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-sse2.c.o +#10 110.3 [1815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-sse2.c.o +#10 110.3 [1816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc3.c.o +#10 110.3 [1817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o +#10 110.3 [1818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4.c.o +#10 110.3 [1819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc4.c.o +#10 110.3 [1820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc2.c.o +#10 110.4 [1821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4.c.o +#10 110.4 [1822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-sse2.c.o +#10 110.4 [1823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o +#10 110.4 [1824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-ssse3-ld64.c.o +#10 110.4 [1825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-sse2.c.o +#10 110.4 [1826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-4x4.c.o +#10 110.4 [1827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-sse2.c.o +#10 110.4 [1828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-5x4.c.o +#10 110.4 [1829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-sse2.c.o +#10 110.5 [1830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-ssse3-ld128.c.o +#10 110.5 [1831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-sse2.c.o +#10 110.5 [1832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-3x4.c.o +#10 110.5 [1833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-ssse3.c.o +#10 110.5 [1834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-6x4.c.o +#10 110.5 [1835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-ssse3-ld64.c.o +#10 110.5 [1836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-ssse3-ld128.c.o +#10 110.5 [1837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-ssse3-ld64.c.o +#10 110.6 [1838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-ssse3-ld128.c.o +#10 110.6 [1839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-ssse3-ld64.c.o +#10 110.6 [1840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-ssse3.c.o +#10 110.6 [1841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-ssse3.c.o +#10 110.6 [1842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-ssse3.c.o +#10 110.6 [1843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-ssse3-ld128.c.o +#10 110.6 [1844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-ssse3-ld128.c.o +#10 110.6 [1845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-ssse3-ld64.c.o +#10 110.6 [1846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-ssse3-ld128.c.o +#10 110.6 [1847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-x16.c.o +#10 110.6 [1848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-x32.c.o +#10 110.6 [1849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-ssse3-ld64.c.o +#10 110.6 [1850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-ssse3.c.o +#10 110.6 [1851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-x16.c.o +#10 110.6 [1852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-x32.c.o +#10 110.6 [1853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-ssse3.c.o +#10 110.6 [1854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-x16.c.o +#10 110.7 [1855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-ssse3.c.o +#10 110.7 [1856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-x16.c.o +#10 110.7 [1857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-x32.c.o +#10 110.7 [1858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-x32.c.o +#10 110.7 [1859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-ssse3-x16.c.o +#10 110.7 [1860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-ssse3-x32.c.o +#10 110.7 [1861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o +#10 110.7 [1862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x8.c.o +#10 110.7 [1863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x24.c.o +#10 110.7 [1864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x32.c.o +#10 110.7 [1865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x16.c.o +#10 110.7 [1866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x8.c.o +#10 110.7 [1867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x24.c.o +#10 110.8 [1868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x8.c.o +#10 110.8 [1869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x32.c.o +#10 110.8 [1870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x16.c.o +#10 110.8 [1871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x24.c.o +#10 110.8 [1872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x16.c.o +#10 110.8 [1873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x4.c.o +#10 110.8 [1874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x8.c.o +#10 110.8 [1875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x4.c.o +#10 110.8 [1876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x32.c.o +#10 110.8 [1877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x8.c.o +#10 110.8 [1878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x12.c.o +#10 110.9 [1879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x16.c.o +#10 110.9 [1880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x24.c.o +#10 110.9 [1881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x20.c.o +#10 110.9 [1882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x12.c.o +#10 110.9 [1883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x16.c.o +#10 110.9 [1884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse41-x4.c.o +#10 110.9 [1885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x20.c.o +#10 110.9 [1886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-x4.c.o +#10 110.9 [1887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-x8.c.o +#10 110.9 [1888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x24.c.o +#10 110.9 [1889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse41-x8.c.o +#10 110.9 [1890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse41-x8.c.o +#10 110.9 [1891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse41-x4.c.o +#10 110.9 [1892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse41-x4.c.o +#10 111.0 [1893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse41-x4.c.o +#10 111.0 [1894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse41-x8.c.o +#10 111.0 [1895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse41-x8.c.o +#10 111.0 [1896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x4.c.o +#10 111.0 [1897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x8.c.o +#10 111.0 [1898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x12.c.o +#10 111.0 [1899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x4.c.o +#10 111.0 [1900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x8.c.o +#10 111.0 [1901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x16.c.o +#10 111.0 [1902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x20.c.o +#10 111.0 [1903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x12.c.o +#10 111.0 [1904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse41-int32.c.o +#10 111.0 [1905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse41.c.o +#10 111.0 [1906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x16.c.o +#10 111.1 [1907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse41-int16.c.o +#10 111.1 [1908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x24.c.o +#10 111.1 [1909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse41.c.o +#10 111.1 [1910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse41.c.o +#10 111.1 [1911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-sse41.c.o +#10 111.1 [1912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x24.c.o +#10 111.1 [1913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x20.c.o +#10 111.1 [1914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse41.c.o +#10 111.1 [1915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o +#10 111.2 [1916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 111.2 [1917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 111.2 [1918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 111.3 [1919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 111.3 [1920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse41-mul16.c.o +#10 111.3 [1921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 111.4 [1922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 111.4 [1923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 111.5 [1924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 111.5 [1925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 111.5 [1926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 111.5 [1927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 111.5 [1928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 111.5 [1929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 111.5 [1930/6823] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o +#10 111.5 [1931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 111.6 [1932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 111.6 [1933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 111.6 [1934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse41-mul32.c.o +#10 111.6 [1935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 111.6 [1936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 111.6 [1937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 111.7 [1938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 111.7 [1939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 111.7 [1940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 111.7 [1941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 111.7 [1942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 111.7 [1943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 111.7 [1944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 111.7 [1945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 111.7 [1946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 111.8 [1947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse41-mul16.c.o +#10 111.8 [1948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 111.8 [1949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 111.8 [1950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 111.8 [1951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 111.8 [1952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 111.8 [1953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 111.9 [1954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 111.9 [1955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 111.9 [1956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 111.9 [1957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 111.9 [1958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 111.9 [1959/6823] Generating src/x86_64-fma/blas/s8gemm.py.o +#10 111.9 [1960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 112.0 [1961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 112.0 [1962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 112.0 [1963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 112.0 [1964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 112.0 [1965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 112.0 [1966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 112.0 [1967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 112.0 [1968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 112.0 [1969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 112.0 [1970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 112.1 [1971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 112.1 [1972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 112.1 [1973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 112.1 [1974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 112.1 [1975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 112.1 [1976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 112.1 [1977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 112.1 [1978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse41-mul32.c.o +#10 112.2 [1979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 112.2 [1980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 112.3 [1981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 112.3 [1982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse41-mul16.c.o +#10 112.4 [1983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 112.4 [1984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 112.4 [1985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 112.5 [1986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 112.6 [1987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c8.c.o +#10 112.6 [1988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 112.6 [1989/6823] Generating src/x86_64-fma/blas/c8gemm.py.o +#10 112.6 [1990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse41-mul32.c.o +#10 112.6 [1991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 112.7 [1992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse41-mul16.c.o +#10 112.7 [1993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x8.c.o +#10 112.7 [1994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 112.7 [1995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x16.c.o +#10 112.7 [1996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c16.c.o +#10 112.7 [1997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c8.c.o +#10 112.8 [1998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c16.c.o +#10 112.8 [1999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 112.8 [2000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c24.c.o +#10 112.8 [2001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x24.c.o +#10 112.8 [2002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c24.c.o +#10 112.8 [2003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-sse41.c.o +#10 112.8 [2004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 112.8 [2005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 112.9 [2006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 112.9 [2007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 112.9 [2008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-sse41.c.o +#10 112.9 [2009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x32.c.o +#10 112.9 [2010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 112.9 [2011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-sse41.c.o +#10 112.9 [2012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 112.9 [2013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 112.9 [2014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 112.9 [2015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.0 [2016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.0 [2017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-sse41.c.o +#10 113.0 [2018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-sse41.c.o +#10 113.0 [2019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 113.0 [2020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 113.0 [2021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-sse41.c.o +#10 113.0 [2022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.0 [2023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 113.0 [2024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-sse41.c.o +#10 113.1 [2025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.1 [2026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 113.1 [2027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-sse41.c.o +#10 113.1 [2028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 113.1 [2029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-sse41.c.o +#10 113.1 [2030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 113.1 [2031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 113.1 [2032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse41-mul32.c.o +#10 113.2 [2033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.2 [2034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.2 [2035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 113.2 [2036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 113.2 [2037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-sse41.c.o +#10 113.2 [2038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.2 [2039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 113.2 [2040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.2 [2041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-sse41.c.o +#10 113.2 [2042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 113.2 [2043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 113.3 [2044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 113.3 [2045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.3 [2046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.3 [2047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 113.3 [2048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 113.3 [2049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 113.3 [2050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 113.3 [2051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 113.3 [2052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.3 [2053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.4 [2054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-sse41.c.o +#10 113.4 [2055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 113.4 [2056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-sse41.c.o +#10 113.4 [2057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 113.4 [2058/6823] Generating src/x86_64-fma/blas/s4c6gemm.py.o +#10 113.4 [2059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-sse41.c.o +#10 113.4 [2060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 113.4 [2061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-sse41-srl.c.o +#10 113.4 [2062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 113.4 [2063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 113.4 [2064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-sse41-sra.c.o +#10 113.4 [2065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x8.c.o +#10 113.4 [2066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 113.5 [2067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x16.c.o +#10 113.5 [2068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x24.c.o +#10 113.5 [2069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x32.c.o +#10 113.5 [2070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x8.c.o +#10 113.5 [2071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x16.c.o +#10 113.5 [2072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x32.c.o +#10 113.6 [2073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x24.c.o +#10 113.7 [2074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x8.c.o +#10 113.8 [2075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x8.c.o +#10 113.8 [2076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x24.c.o +#10 113.8 [2077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x16.c.o +#10 113.8 [2078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x32.c.o +#10 113.8 [2079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x16.c.o +#10 113.8 [2080/6823] Generating src/x86_64-fma/blas/conv1x1.py.o +#10 113.8 [2081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x32.c.o +#10 113.8 [2082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 113.9 [2083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x8.c.o +#10 113.9 [2084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 113.9 [2085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x8.c.o +#10 113.9 [2086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 113.9 [2087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x32.c.o +#10 113.9 [2088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x24.c.o +#10 113.9 [2089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 114.0 [2090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 114.0 [2091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x16.c.o +#10 114.0 [2092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x16.c.o +#10 114.1 [2093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 114.2 [2094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x32.c.o +#10 114.2 [2095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c8.c.o +#10 114.2 [2096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 114.3 [2097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c16.c.o +#10 114.3 [2098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 114.3 [2099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 114.3 [2100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x8.c.o +#10 114.4 [2101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x24.c.o +#10 114.4 [2102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c8.c.o +#10 114.4 [2103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c16.c.o +#10 114.4 [2104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c24.c.o +#10 114.4 [2105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 114.4 [2106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x16.c.o +#10 114.4 [2107/6823] Generating src/x86_64-fma/blas/sgemm.py.o +#10 114.4 [2108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.4 [2109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.4 [2110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c24.c.o +#10 114.4 [2111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.5 [2112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.5 [2113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 114.5 [2114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 114.5 [2115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x32.c.o +#10 114.5 [2116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.5 [2117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 114.5 [2118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.5 [2119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.5 [2120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.6 [2121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 114.6 [2122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 114.6 [2123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.6 [2124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.6 [2125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.6 [2126/6823] Generating src/x86_64-fma/max-pooling.py.o +#10 114.6 [2127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 114.6 [2128/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 114.7 [2129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.7 [2130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.7 [2131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.7 [2132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.7 [2133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.7 [2134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.7 [2135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 114.7 [2136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.7 [2137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 114.7 [2138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.7 [2139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.8 [2140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 114.8 [2141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.8 [2142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 114.8 [2143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.8 [2144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.8 [2145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 114.8 [2146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.8 [2147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.8 [2148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 114.8 [2149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.8 [2150/6823] Generating src/x86_64-fma/relu.py.o +#10 114.9 [2151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.9 [2152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-sse41.c.o +#10 114.9 [2153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-sse41.c.o +#10 114.9 [2154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 114.9 [2155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-x16.c.o +#10 114.9 [2156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 114.9 [2157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-x8.c.o +#10 114.9 [2158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 114.9 [2159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 114.9 [2160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 114.9 [2161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-x8.c.o +#10 114.9 [2162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-x16.c.o +#10 115.0 [2163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 115.1 [2164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 115.1 [2165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 115.1 [2166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 115.2 [2167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 115.2 [2168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul32-ld32-x8.c.o +#10 115.2 [2169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul32-ld32-x16.c.o +#10 115.2 [2170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul32-ld32-x8.c.o +#10 115.3 [2171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c8.c.o +#10 115.3 [2172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x16.c.o +#10 115.3 [2173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x8.c.o +#10 115.3 [2174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x16.c.o +#10 115.3 [2175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o +#10 115.3 [2176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x32.c.o +#10 115.3 [2177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-sse41-x64.c.o +#10 115.3 [2178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c8.c.o +#10 115.3 [2179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x32.c.o +#10 115.3 [2180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul32-ld32-x16.c.o +#10 115.3 [2181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x8.c.o +#10 115.3 [2182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x24.c.o +#10 115.3 [2183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o +#10 115.4 [2184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x16.c.o +#10 115.4 [2185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o +#10 115.4 [2186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x8.c.o +#10 115.4 [2187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x8.c.o +#10 115.4 [2188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x16.c.o +#10 115.4 [2189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x32.c.o +#10 115.4 [2190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x24.c.o +#10 115.4 [2191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x32.c.o +#10 115.7 [2192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-avx-acc2.c.o +#10 115.7 [2193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-avx-acc2.c.o +#10 115.7 [2194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-avx.c.o +#10 115.8 [2195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o +#10 115.8 [2196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-avx-acc2.c.o +#10 115.8 [2197/6823] Generating src/x86_64-fma/softmax.py.o +#10 115.8 [2198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx-acc2.c.o +#10 115.8 [2199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-avx.c.o +#10 115.8 [2200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-avx-acc2.c.o +#10 115.8 [2201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-avx.c.o +#10 115.9 [2202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-avx-acc2.c.o +#10 115.9 [2203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-avx.c.o +#10 115.9 [2204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx-acc2.c.o +#10 115.9 [2205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-avx.c.o +#10 116.0 [2206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x8.c.o +#10 116.0 [2207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x16.c.o +#10 116.0 [2208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x32.c.o +#10 116.1 [2209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x24.c.o +#10 116.1 [2210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o +#10 116.2 [2211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-avx.c.o +#10 116.2 [2212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o +#10 116.2 [2213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-avx-acc2.c.o +#10 116.2 [2214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx-acc2.c.o +#10 116.2 [2215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx-acc2.c.o +#10 116.2 [2216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o +#10 116.3 [2217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx-acc2.c.o +#10 116.3 [2218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-avx-broadcast.c.o +#10 116.4 [2219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx.c.o +#10 116.4 [2220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-avx-broadcast.c.o +#10 116.5 [2221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o +#10 116.5 [2222/6823] Generating src/x86_64-fma/blas/sdotxf.py.o +#10 116.5 [2223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-avx-broadcast.c.o +#10 116.6 [2224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-avx-broadcast.c.o +#10 116.6 [2225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-avx-broadcast.c.o +#10 116.6 [2226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o +#10 116.6 [2227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-avx-broadcast.c.o +#10 116.6 [2228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-avx-broadcast.c.o +#10 116.7 [2229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-avx-broadcast.c.o +#10 116.7 [2230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x8-minmax-avx-broadcast.c.o +#10 116.7 [2231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16-minmax-avx-broadcast.c.o +#10 116.8 [2232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-avx-broadcast.c.o +#10 116.8 [2233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-avx-broadcast.c.o +#10 116.9 [2234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-avx-broadcast.c.o +#10 116.9 [2235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-avx-broadcast.c.o +#10 117.0 [2236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x8-minmax-avx-broadcast.c.o +#10 117.0 [2237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-avx-broadcast.c.o +#10 117.0 [2238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x8-minmax-avx-broadcast.c.o +#10 117.0 [2239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o +#10 117.0 [2240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-avx-broadcast.c.o +#10 117.1 [2241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-avx-broadcast.c.o +#10 117.1 [2242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-avx-broadcast.c.o +#10 117.2 [2243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-avx-broadcast.c.o +#10 117.2 [2244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o +#10 117.3 [2245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-avx-broadcast.c.o +#10 117.3 [2246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x8-minmax-avx-broadcast.c.o +#10 117.3 [2247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx-2x8.c.o +#10 117.3 [2248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x8.c.o +#10 117.3 [2249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx-2x16.c.o +#10 117.3 [2250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x16.c.o +#10 117.4 [2251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x24.c.o +#10 117.4 [2252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x8.c.o +#10 117.5 [2253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x32.c.o +#10 117.5 [2254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x16.c.o +#10 117.5 [2255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x32.c.o +#10 117.6 [2256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x24.c.o +#10 117.6 [2257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-avx.c.o +#10 117.7 [2258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx-x8.c.o +#10 117.7 [2259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx-x8.c.o +#10 117.7 [2260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx-x16.c.o +#10 117.7 [2261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx-x8.c.o +#10 117.8 [2262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx-x16.c.o +#10 117.8 [2263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx-x8.c.o +#10 117.8 [2264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx-x16.c.o +#10 117.8 [2265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx-x16.c.o +#10 117.9 [2266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx-x8.c.o +#10 117.9 [2267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx-x8.c.o +#10 117.9 [2268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx-x16.c.o +#10 118.0 [2269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx-x16.c.o +#10 118.0 [2270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx-x8.c.o +#10 118.1 [2271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx-x8.c.o +#10 118.1 [2272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx-x16.c.o +#10 118.1 [2273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx-x8.c.o +#10 118.1 [2274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx-x16.c.o +#10 118.1 [2275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx-x8.c.o +#10 118.2 [2276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx-x16.c.o +#10 118.2 [2277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx-x16.c.o +#10 118.2 [2278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx-x8.c.o +#10 118.3 [2279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx-x16.c.o +#10 118.3 [2280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx-x8.c.o +#10 118.4 [2281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-x8.c.o +#10 118.4 [2282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx-x16.c.o +#10 118.4 [2283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-x8.c.o +#10 118.5 [2284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-x16.c.o +#10 118.5 [2285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx-x8.c.o +#10 118.5 [2286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx-x8.c.o +#10 118.5 [2287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx-x16.c.o +#10 118.5 [2288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx-x16.c.o +#10 118.6 [2289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-x16.c.o +#10 118.6 [2290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx-x8.c.o +#10 118.7 [2291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx-x16.c.o +#10 118.7 [2292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x8.c.o +#10 118.8 [2293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x32.c.o +#10 118.8 [2294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x16.c.o +#10 118.8 [2295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x40.c.o +#10 118.9 [2296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x24.c.o +#10 118.9 [2297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x16.c.o +#10 118.9 [2298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x8.c.o +#10 118.9 [2299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x48.c.o +#10 119.0 [2300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x32.c.o +#10 119.1 [2301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x8.c.o +#10 119.1 [2302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x24.c.o +#10 119.1 [2303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x16.c.o +#10 119.2 [2304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x48.c.o +#10 119.2 [2305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x40.c.o +#10 119.2 [2306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx-x8.c.o +#10 119.3 [2307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x24.c.o +#10 119.3 [2308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x48.c.o +#10 119.3 [2309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x32.c.o +#10 119.3 [2310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-x8.c.o +#10 119.3 [2311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx-x16.c.o +#10 119.3 [2312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x40.c.o +#10 119.4 [2313/6823] Generating src/x86_64-fma/blas/shdotxf.py.o +#10 119.4 [2314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-x16.c.o +#10 119.5 [2315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx-x8.c.o +#10 119.5 [2316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx-x16.c.o +#10 119.5 [2317/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o +#10 119.5 [2318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx-x16.c.o +#10 119.6 [2319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx-x16.c.o +#10 119.6 [2320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx-x8.c.o +#10 119.6 [2321/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o +#10 119.6 [2322/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o +#10 119.6 [2323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx-x8.c.o +#10 119.6 [2324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx-x8.c.o +#10 119.6 [2325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx-x16.c.o +#10 119.6 [2326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx-x16.c.o +#10 119.6 [2327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx-x8.c.o +#10 119.6 [2328/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o +#10 119.7 [2329/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o +#10 119.7 [2330/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o +#10 119.7 [2331/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o +#10 119.7 [2332/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o +#10 119.7 [2333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x8.c.o +#10 119.7 [2334/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o +#10 119.7 [2335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x16.c.o +#10 119.8 [2336/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o +#10 119.8 [2337/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o +#10 120.0 [2338/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o +#10 120.0 [2339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x24.c.o +#10 120.0 [2340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x32.c.o +#10 120.1 [2341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x56.c.o +#10 120.1 [2342/6823] Linking C static library lib/libnnpack.a +#10 120.1 [2343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x72.c.o +#10 120.1 [2344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x8.c.o +#10 120.1 [2345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x40.c.o +#10 120.1 [2346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x48.c.o +#10 120.1 [2347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x64.c.o +#10 120.2 [2348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x16.c.o +#10 120.2 [2349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x24.c.o +#10 120.3 [2350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x40.c.o +#10 120.3 [2351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x80.c.o +#10 120.3 [2352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x32.c.o +#10 120.4 [2353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x56.c.o +#10 120.4 [2354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt-x16.c.o +#10 120.5 [2355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x64.c.o +#10 120.5 [2356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x48.c.o +#10 120.5 [2357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt-x8.c.o +#10 120.5 [2358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx-x8.c.o +#10 120.5 [2359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x80.c.o +#10 120.5 [2360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x72.c.o +#10 120.5 [2361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx-x16.c.o +#10 120.6 [2362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx-x16.c.o +#10 120.6 [2363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx-x8.c.o +#10 120.7 [2364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.o +#10 120.7 [2365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o +#10 120.7 [2366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx-x8.c.o +#10 120.7 [2367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx-x16.c.o +#10 120.7 [2368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx-rr2-p5.c.o +#10 120.7 [2369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 120.8 [2370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-lut64-p2-div.c.o +#10 120.8 [2371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-lut16-p3.c.o +#10 120.8 [2372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o +#10 120.9 [2373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-p6.c.o +#10 120.9 [2374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-div.c.o +#10 120.9 [2375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-nr1.c.o +#10 120.9 [2376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-lut4-p4-perm.c.o +#10 120.9 [2377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-nr2.c.o +#10 120.9 [2378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 121.0 [2379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.o +#10 121.0 [2380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx-mul16.c.o +#10 121.0 [2381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 121.0 [2382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 121.1 [2383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 121.1 [2384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 121.1 [2385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.1 [2386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 121.2 [2387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o +#10 121.2 [2388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 121.2 [2389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.2 [2390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 121.2 [2391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 121.2 [2392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.2 [2393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 121.2 [2394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 121.3 [2395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.3 [2396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx-mul32.c.o +#10 121.3 [2397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 121.3 [2398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 121.3 [2399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.4 [2400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 121.4 [2401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 121.4 [2402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.4 [2403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 121.4 [2404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 121.4 [2405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 121.4 [2406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 121.4 [2407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx-mul16.c.o +#10 121.4 [2408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 121.4 [2409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.5 [2410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.5 [2411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.5 [2412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.5 [2413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 121.5 [2414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 121.5 [2415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 121.5 [2416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 121.5 [2417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 121.6 [2418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 121.6 [2419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.6 [2420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 121.6 [2421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.6 [2422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 121.6 [2423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 121.6 [2424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 121.6 [2425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 121.6 [2426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.6 [2427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 121.6 [2428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.6 [2429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 121.7 [2430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 121.7 [2431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 121.7 [2432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 121.7 [2433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 121.7 [2434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.o +#10 121.8 [2435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 121.8 [2436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o +#10 121.8 [2437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx-mul32.c.o +#10 121.8 [2438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 121.8 [2439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx-mul16.c.o +#10 122.0 [2440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.o +#10 122.0 [2441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 122.0 [2442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o +#10 122.0 [2443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 122.1 [2444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 122.1 [2445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 122.1 [2446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 122.2 [2447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx-mul32.c.o +#10 122.2 [2448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x16.c.o +#10 122.2 [2449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 122.2 [2450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 122.2 [2451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-avx.c.o +#10 122.2 [2452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x24.c.o +#10 122.2 [2453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 122.3 [2454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x8.c.o +#10 122.3 [2455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 122.3 [2456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 122.3 [2457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx-mul16.c.o +#10 122.3 [2458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-avx.c.o +#10 122.3 [2459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 122.3 [2460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-avx.c.o +#10 122.3 [2461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 122.3 [2462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 122.4 [2463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-avx.c.o +#10 122.4 [2464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x32.c.o +#10 122.4 [2465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-avx.c.o +#10 122.4 [2466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 122.4 [2467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 122.4 [2468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 122.4 [2469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-avx.c.o +#10 122.4 [2470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 122.4 [2471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 122.4 [2472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 122.5 [2473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-avx.c.o +#10 122.5 [2474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 122.5 [2475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 122.5 [2476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 122.5 [2477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 122.5 [2478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 122.5 [2479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 122.5 [2480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-avx.c.o +#10 122.5 [2481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 122.5 [2482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 122.6 [2483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-avx.c.o +#10 122.6 [2484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 122.6 [2485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 122.6 [2486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 122.6 [2487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 122.6 [2488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 122.7 [2489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 122.7 [2490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 122.7 [2491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 122.7 [2492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 122.7 [2493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 122.7 [2494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 122.7 [2495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 122.7 [2496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx-mul32.c.o +#10 122.8 [2497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x16.c.o +#10 122.8 [2498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x8.c.o +#10 122.9 [2499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x24.c.o +#10 123.0 [2500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x32.c.o +#10 123.0 [2501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x32.c.o +#10 123.4 [2502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x8.c.o +#10 123.4 [2503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x16.c.o +#10 123.4 [2504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x24.c.o +#10 123.5 [2505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x32.c.o +#10 123.8 [2506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x32.c.o +#10 123.9 [2507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x16.c.o +#10 124.0 [2508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x8.c.o +#10 124.1 [2509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x8.c.o +#10 124.2 [2510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 124.3 [2511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 124.3 [2512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 124.4 [2513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x32.c.o +#10 124.4 [2514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x16.c.o +#10 124.4 [2515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 124.5 [2516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 124.6 [2517/6823] Building CXX object c10/test/CMakeFiles/c10_irange_test.dir/util/irange_test.cpp.o +#10 124.6 [2518/6823] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/util/flags_test.cpp.o +#10 124.6 [2519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 124.7 [2520/6823] Building CXX object c10/test/CMakeFiles/c10_exception_test.dir/util/exception_test.cpp.o +#10 124.9 [2521/6823] Building CXX object c10/test/CMakeFiles/c10_accumulate_test.dir/util/accumulate_test.cpp.o +#10 125.0 [2522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 125.0 [2523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 125.1 [2524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 125.1 [2525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 125.1 [2526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 125.1 [2527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x8.c.o +#10 125.2 [2528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 125.2 [2529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 125.2 [2530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.3 [2531/6823] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/core/impl/InlineDeviceGuard_test.cpp.o +#10 125.3 [2532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 125.3 [2533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 125.4 [2534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x24.c.o +#10 125.4 [2535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 125.4 [2536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 125.4 [2537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 125.4 [2538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x16.c.o +#10 125.4 [2539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 125.4 [2540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.4 [2541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x32.c.o +#10 125.5 [2542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 125.5 [2543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 125.5 [2544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 125.5 [2545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 125.5 [2546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 125.6 [2547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 125.6 [2548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 125.6 [2549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 125.6 [2550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.6 [2551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.7 [2552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 125.7 [2553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 125.7 [2554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 125.7 [2555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 125.7 [2556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 125.7 [2557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.7 [2558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 125.8 [2559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 125.8 [2560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 125.8 [2561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.8 [2562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 125.8 [2563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 125.8 [2564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 125.8 [2565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 125.9 [2566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 125.9 [2567/6823] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/util/logging_test.cpp.o +#10 125.9 [2568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 125.9 [2569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 125.9 [2570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 125.9 [2571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 125.9 [2572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 126.0 [2573/6823] Building CXX object c10/test/CMakeFiles/c10_bfloat16_test.dir/util/bfloat16_test.cpp.o +#10 126.0 [2574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 126.0 [2575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul16-ld64-x8.c.o +#10 126.0 [2576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 126.0 [2577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 126.0 [2578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul16-ld64-x16.c.o +#10 126.0 [2579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul16-ld64-x8.c.o +#10 126.0 [2580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 126.0 [2581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 126.1 [2582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul16-ld64-x16.c.o +#10 126.2 [2583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 126.4 [2584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x8.c.o +#10 126.4 [2585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-x8.c.o +#10 126.4 [2586/6823] Building CXX object c10/test/CMakeFiles/c10_string_view_test.dir/util/string_view_test.cpp.o +#10 126.4 [2587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x16.c.o +#10 126.4 [2588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x32.c.o +#10 126.4 [2589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-x16.c.o +#10 126.4 [2590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 126.4 [2591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-x8.c.o +#10 126.4 [2592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x32.c.o +#10 126.4 [2593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x8.c.o +#10 126.4 [2594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 126.4 [2595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-x16.c.o +#10 126.5 [2596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 126.5 [2597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x16.c.o +#10 126.7 [2598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x32.c.o +#10 126.7 [2599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x16.c.o +#10 126.8 [2600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x48.c.o +#10 126.8 [2601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x64.c.o +#10 126.8 [2602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-multi-switch-avx.c.o +#10 126.8 [2603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-multi-mov-avx.c.o +#10 126.8 [2604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o +#10 126.9 [2605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-mov-avx.c.o +#10 126.9 [2606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-multi-avx.c.o +#10 126.9 [2607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-switch-avx.c.o +#10 127.0 [2608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-mov-avx.c.o +#10 127.0 [2609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-switch-avx.c.o +#10 127.1 [2610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o +#10 127.2 [2611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-switch-avx.c.o +#10 127.2 [2612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-x8.c.o +#10 127.2 [2613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-mov-avx.c.o +#10 127.2 [2614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o +#10 127.2 [2615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o +#10 127.2 [2616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-x16.c.o +#10 127.3 [2617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c8.c.o +#10 127.4 [2618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c16.c.o +#10 127.5 [2619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c32.c.o +#10 127.5 [2620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c16.c.o +#10 127.5 [2621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c24.c.o +#10 127.5 [2622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c32.c.o +#10 127.6 [2623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-f16c-2x16.c.o +#10 127.6 [2624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c8.c.o +#10 127.6 [2625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-f16c-2x8.c.o +#10 127.6 [2626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c24.c.o +#10 127.6 [2627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-f16c-x8.c.o +#10 127.7 [2628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rmax/f16-rmax-f16c.c.o +#10 127.7 [2629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o +#10 127.9 [2630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-f16c-x16.c.o +#10 127.9 [2631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-f16c-x8.c.o +#10 127.9 [2632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-f16c-x8.c.o +#10 127.9 [2633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-f16c-x16.c.o +#10 127.9 [2634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-f16c-x8.c.o +#10 127.9 [2635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-f16c-x8.c.o +#10 128.0 [2636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-x8.c.o +#10 128.0 [2637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-f16c-x16.c.o +#10 128.0 [2638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-f16c-x16.c.o +#10 128.0 [2639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-f16c-x8.c.o +#10 128.1 [2640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-f16c-x16.c.o +#10 128.2 [2641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-x16.c.o +#10 128.3 [2642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-f16c-x16.c.o +#10 128.3 [2643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-f16c-x16.c.o +#10 128.3 [2644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-f16c-x16.c.o +#10 128.3 [2645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-f16c-x8.c.o +#10 128.3 [2646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-f16c-x8.c.o +#10 128.3 [2647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-f16c-x16.c.o +#10 128.4 [2648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-f16c-x8.c.o +#10 128.4 [2649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-f16c-x8.c.o +#10 128.5 [2650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-f16c-x16.c.o +#10 128.6 [2651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-f16c-x16.c.o +#10 128.6 [2652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-x16.c.o +#10 128.7 [2653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-x8.c.o +#10 128.7 [2654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-f16c-x8.c.o +#10 128.7 [2655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-x16.c.o +#10 128.7 [2656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-f16c-x8.c.o +#10 128.7 [2657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-f16c-x16.c.o +#10 128.7 [2658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-f16c-x8.c.o +#10 128.7 [2659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-x8.c.o +#10 128.7 [2660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-f16c-x16.c.o +#10 128.8 [2661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-f16c-x16.c.o +#10 128.8 [2662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-f16c-x8.c.o +#10 129.0 [2663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-f16c-x8.c.o +#10 129.1 [2664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-f16c-x16.c.o +#10 129.1 [2665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-f16c-x8.c.o +#10 129.1 [2666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-f16c-x16.c.o +#10 129.1 [2667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-x8.c.o +#10 129.1 [2668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-x16.c.o +#10 129.1 [2669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-f16c-x8.c.o +#10 129.2 [2670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-f16c-x16.c.o +#10 129.2 [2671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-f16c-x8.c.o +#10 129.2 [2672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-f16c-x16.c.o +#10 129.3 [2673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-f16c-x8.c.o +#10 129.4 [2674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-f16c-x16.c.o +#10 129.4 [2675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-f16c-x8.c.o +#10 129.4 [2676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-x8.c.o +#10 129.5 [2677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-f16c-x16.c.o +#10 129.5 [2678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-x16.c.o +#10 129.5 [2679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-f16c.c.o +#10 129.5 [2680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-f16c.c.o +#10 129.5 [2681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-sqrt-x8.c.o +#10 129.5 [2682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-sqrt-x16.c.o +#10 129.6 [2683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-xop-mul16-add16.c.o +#10 129.7 [2684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 129.8 [2685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-xop-mul16-add16.c.o +#10 129.9 [2686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 129.9 [2687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-xop-mul16-add16.c.o +#10 130.0 [2688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-xop-mul32.c.o +#10 130.0 [2689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-xop-mul16-add16.c.o +#10 130.1 [2690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 130.1 [2691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 130.1 [2692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 130.1 [2693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 130.2 [2694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 130.2 [2695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-xop-mul16-add16.c.o +#10 130.3 [2696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 130.3 [2697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-xop-mul32.c.o +#10 130.4 [2698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 130.4 [2699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 130.4 [2700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 130.5 [2701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 130.5 [2702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 130.6 [2703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 130.6 [2704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 130.6 [2705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 130.7 [2706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 130.8 [2707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 130.8 [2708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 130.8 [2709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 130.8 [2710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 130.8 [2711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 130.9 [2712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 131.0 [2713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 131.0 [2714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 131.0 [2715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 131.0 [2716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 131.0 [2717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 131.1 [2718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 131.1 [2719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 131.2 [2720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 131.2 [2721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 131.3 [2722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 131.3 [2723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 131.3 [2724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 131.4 [2725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 131.4 [2726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 131.5 [2727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 131.5 [2728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 131.6 [2729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 131.6 [2730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 131.6 [2731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 131.6 [2732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 131.7 [2733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 131.8 [2734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 131.8 [2735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 131.8 [2736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 131.8 [2737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 131.9 [2738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 131.9 [2739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-xop-mul16-add16.c.o +#10 132.0 [2740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-xop-mul16-add16.c.o +#10 132.1 [2741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 132.2 [2742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-xop-mul16-add16.c.o +#10 132.2 [2743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-xop-mul32.c.o +#10 132.3 [2744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 132.3 [2745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 132.4 [2746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 132.5 [2747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-xop-mul16-add16.c.o +#10 132.5 [2748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 132.5 [2749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 132.5 [2750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-xop.c.o +#10 132.6 [2751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-xop-mul32.c.o +#10 132.6 [2752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-xop.c.o +#10 132.6 [2753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 132.7 [2754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 132.8 [2755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-xop.c.o +#10 132.8 [2756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 132.9 [2757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 132.9 [2758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 132.9 [2759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-xop.c.o +#10 133.0 [2760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 133.0 [2761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-xop.c.o +#10 133.0 [2762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 133.1 [2763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 133.1 [2764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 133.1 [2765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-xop.c.o +#10 133.2 [2766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 133.2 [2767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 133.3 [2768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-xop.c.o +#10 133.3 [2769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 133.3 [2770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 133.4 [2771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-xop.c.o +#10 133.4 [2772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 133.5 [2773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 133.5 [2774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-xop.c.o +#10 133.6 [2775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 133.6 [2776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 133.7 [2777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-xop.c.o +#10 133.7 [2778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 133.7 [2779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-xop.c.o +#10 133.7 [2780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 133.8 [2781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 133.8 [2782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 133.9 [2783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 134.0 [2784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 134.0 [2785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 134.0 [2786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 134.1 [2787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 134.1 [2788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 134.1 [2789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 134.2 [2790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 134.2 [2791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 134.2 [2792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 134.2 [2793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 134.4 [2794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 134.4 [2795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 134.4 [2796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 134.4 [2797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 134.5 [2798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 134.5 [2799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x8.c.o +#10 134.6 [2800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x16.c.o +#10 134.6 [2801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 134.6 [2802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 134.6 [2803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x24.c.o +#10 134.6 [2804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 134.7 [2805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 134.8 [2806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x8.c.o +#10 134.8 [2807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x24.c.o +#10 134.8 [2808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x16.c.o +#10 134.8 [2809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x32.c.o +#10 134.9 [2810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x32.c.o +#10 135.0 [2811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 135.1 [2812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 135.1 [2813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 135.1 [2814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 135.1 [2815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 135.2 [2816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 135.2 [2817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 135.2 [2818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 135.2 [2819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 135.4 [2820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 135.4 [2821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 135.4 [2822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 135.4 [2823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 135.5 [2824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 135.6 [2825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 135.6 [2826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 135.6 [2827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 135.7 [2828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 135.7 [2829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 135.7 [2830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 135.8 [2831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 135.8 [2832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 135.8 [2833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 135.9 [2834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 135.9 [2835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 135.9 [2836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 136.0 [2837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 136.0 [2838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 136.1 [2839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 136.1 [2840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 136.1 [2841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 136.1 [2842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 136.2 [2843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 136.3 [2844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 136.3 [2845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 136.3 [2846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 136.4 [2847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 136.4 [2848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 136.4 [2849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 136.5 [2850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 136.5 [2851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 136.6 [2852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 136.6 [2853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 136.6 [2854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 136.8 [2855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-xop-mul32-ld32-x8.c.o +#10 136.8 [2856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 136.8 [2857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 136.8 [2858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 136.8 [2859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 136.8 [2860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-xop-mul32-ld32-x16.c.o +#10 136.9 [2861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-xop-mul32-ld32-x8.c.o +#10 136.9 [2862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-xop-mul32-ld32-x16.c.o +#10 137.0 [2863/6823] Building CXX object c10/test/CMakeFiles/c10_either_test.dir/util/either_test.cpp.o +#10 137.0 [2864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-fma3.c.o +#10 137.0 [2865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o +#10 137.1 [2866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3-acc2.c.o +#10 137.1 [2867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-fma3-acc2.c.o +#10 137.1 [2868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-fma3-acc2.c.o +#10 137.2 [2869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-fma3.c.o +#10 137.2 [2870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-fma3.c.o +#10 137.2 [2871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-fma3-acc2.c.o +#10 137.2 [2872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3-acc2.c.o +#10 137.3 [2873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o +#10 137.3 [2874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-fma3-acc2.c.o +#10 137.4 [2875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-fma3-acc2.c.o +#10 137.5 [2876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o +#10 137.5 [2877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-fma3.c.o +#10 137.5 [2878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-fma3.c.o +#10 137.5 [2879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3-acc2.c.o +#10 137.7 [2880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3.c.o +#10 137.7 [2881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o +#10 137.7 [2882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-fma3-acc2.c.o +#10 137.8 [2883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-fma3.c.o +#10 137.9 [2884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o +#10 137.9 [2885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c16.c.o +#10 138.0 [2886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-fma3.c.o +#10 138.0 [2887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-fma3-acc2.c.o +#10 138.0 [2888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-fma3-2x.c.o +#10 138.0 [2889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o +#10 138.0 [2890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-fma3-acc2.c.o +#10 138.1 [2891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-fma3.c.o +#10 138.1 [2892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-fma3-acc2.c.o +#10 138.2 [2893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-fma3.c.o +#10 138.3 [2894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-fma3.c.o +#10 138.3 [2895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-fma3-acc2.c.o +#10 138.3 [2896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-fma3-acc2.c.o +#10 138.3 [2897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-fma3-acc2.c.o +#10 138.3 [2898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-fma3.c.o +#10 138.3 [2899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-fma3.c.o +#10 138.4 [2900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o +#10 138.4 [2901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3-acc2.c.o +#10 138.4 [2902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-fma3-acc2.c.o +#10 138.5 [2903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-fma3.c.o +#10 138.6 [2904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3-acc2.c.o +#10 138.6 [2905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-fma3-acc2.c.o +#10 138.7 [2906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o +#10 138.7 [2907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-fma3.c.o +#10 138.7 [2908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3-acc2.c.o +#10 138.7 [2909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o +#10 138.8 [2910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3-acc2.c.o +#10 138.8 [2911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-fma3-broadcast.c.o +#10 138.8 [2912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o +#10 138.9 [2913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3.c.o +#10 138.9 [2914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o +#10 138.9 [2915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-fma3-broadcast.c.o +#10 139.0 [2916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3-acc2.c.o +#10 139.0 [2917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o +#10 139.1 [2918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-fma3-broadcast.c.o +#10 139.1 [2919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-fma3-broadcast.c.o +#10 139.1 [2920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16s4-minmax-fma3-broadcast.c.o +#10 139.2 [2921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o +#10 139.2 [2922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-fma3-broadcast.c.o +#10 139.2 [2923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o +#10 139.2 [2924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16s4-minmax-fma3-broadcast.c.o +#10 139.2 [2925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-fma3-broadcast.c.o +#10 139.3 [2926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-fma3-broadcast.c.o +#10 139.3 [2927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-fma3-broadcast.c.o +#10 139.4 [2928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x8-minmax-fma3-broadcast.c.o +#10 139.4 [2929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8-minmax-fma3-broadcast.c.o +#10 139.5 [2930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16-minmax-fma3-broadcast.c.o +#10 139.5 [2931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-fma3-broadcast.c.o +#10 139.6 [2932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16s4-minmax-fma3-broadcast.c.o +#10 139.6 [2933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16s4-minmax-fma3-broadcast.c.o +#10 139.6 [2934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16s4-minmax-fma3-broadcast.c.o +#10 139.6 [2935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-fma3-broadcast.c.o +#10 139.7 [2936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x8-minmax-fma3-broadcast.c.o +#10 139.7 [2937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-fma3-broadcast.c.o +#10 139.7 [2938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-fma3-broadcast.c.o +#10 139.8 [2939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16s4-minmax-fma3-broadcast.c.o +#10 139.8 [2940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x8-minmax-fma3-broadcast.c.o +#10 139.9 [2941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-fma3-broadcast.c.o +#10 139.9 [2942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-8x8-minmax-fma3-broadcast.c.o +#10 139.9 [2943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o +#10 140.0 [2944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16s4-minmax-fma3-broadcast.c.o +#10 140.0 [2945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-fma3-broadcast.c.o +#10 140.0 [2946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o +#10 140.1 [2947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-fma3-broadcast.c.o +#10 140.1 [2948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-fma3-broadcast.c.o +#10 140.1 [2949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-fma3-broadcast.c.o +#10 140.1 [2950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast.c.o +#10 140.1 [2951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o +#10 140.3 [2952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-fma3-broadcast.c.o +#10 140.3 [2953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16s4-minmax-fma3-broadcast.c.o +#10 140.3 [2954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x8-minmax-fma3-broadcast.c.o +#10 140.3 [2955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-fma3-x16.c.o +#10 140.4 [2956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x8.c.o +#10 140.4 [2957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8-minmax-fma3-broadcast.c.o +#10 140.4 [2958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-fma3-x8.c.o +#10 140.4 [2959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x24.c.o +#10 140.5 [2960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x48.c.o +#10 140.5 [2961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x16.c.o +#10 140.5 [2962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x40.c.o +#10 140.5 [2963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x32.c.o +#10 140.6 [2964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x56.c.o +#10 140.6 [2965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr1fma1adj.c.o +#10 140.7 [2966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr2fma.c.o +#10 140.7 [2967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x64.c.o +#10 140.7 [2968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-avx2-broadcast.c.o +#10 140.8 [2969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-avx2-broadcast.c.o +#10 140.8 [2970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-3x16-minmax-avx2-broadcast.c.o +#10 140.8 [2971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr1fma.c.o +#10 140.9 [2972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-avx2-broadcast.c.o +#10 140.9 [2973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-avx2-broadcast.c.o +#10 140.9 [2974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-5x8-minmax-avx2-broadcast.c.o +#10 141.0 [2975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-5x16-minmax-avx2-broadcast.c.o +#10 141.0 [2976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-avx2-broadcast.c.o +#10 141.0 [2977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-avx2-broadcast.c.o +#10 141.1 [2978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-avx2-broadcast.c.o +#10 141.1 [2979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-7x8-minmax-avx2-broadcast.c.o +#10 141.1 [2980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-avx2-broadcast.c.o +#10 141.2 [2981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-3x16-minmax-avx2-broadcast.c.o +#10 141.3 [2982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-avx2-broadcast.c.o +#10 141.3 [2983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-avx2-broadcast.c.o +#10 141.3 [2984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-5x16-minmax-avx2-broadcast.c.o +#10 141.3 [2985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-5x8-minmax-avx2-broadcast.c.o +#10 141.3 [2986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o +#10 141.4 [2987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o +#10 141.4 [2988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-7x8-minmax-avx2-broadcast.c.o +#10 141.4 [2989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32-acc2.c.o +#10 141.4 [2990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32.c.o +#10 141.5 [2991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40-acc2.c.o +#10 141.5 [2992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40-acc5.c.o +#10 141.6 [2993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32-acc4.c.o +#10 141.6 [2994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48-acc3.c.o +#10 141.7 [2995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48-acc2.c.o +#10 141.7 [2996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64-acc2.c.o +#10 141.8 [2997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64-acc4.c.o +#10 141.8 [2998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40.c.o +#10 141.8 [2999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x72-acc3.c.o +#10 141.8 [3000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48.c.o +#10 141.9 [3001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64.c.o +#10 141.9 [3002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80-acc2.c.o +#10 141.9 [3003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x72.c.o +#10 142.0 [3004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80.c.o +#10 142.1 [3005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc2.c.o +#10 142.1 [3006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc3.c.o +#10 142.1 [3007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80-acc5.c.o +#10 142.2 [3008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-x8.c.o +#10 142.2 [3009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-x16.c.o +#10 142.2 [3010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96.c.o +#10 142.2 [3011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc6.c.o +#10 142.3 [3012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x32.c.o +#10 142.3 [3013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x24.c.o +#10 142.3 [3014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x8.c.o +#10 142.3 [3015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x16.c.o +#10 142.4 [3016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x40.c.o +#10 142.4 [3017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x48.c.o +#10 142.5 [3018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x8.c.o +#10 142.6 [3019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x24.c.o +#10 142.6 [3020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x56.c.o +#10 142.6 [3021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x64.c.o +#10 142.6 [3022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x32.c.o +#10 142.7 [3023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x48.c.o +#10 142.7 [3024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x64.c.o +#10 142.7 [3025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x16.c.o +#10 142.8 [3026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x56.c.o +#10 142.8 [3027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x16.c.o +#10 142.8 [3028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x40.c.o +#10 142.9 [3029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x32.c.o +#10 142.9 [3030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x48.c.o +#10 142.9 [3031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x16.c.o +#10 142.9 [3032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x64.c.o +#10 142.9 [3033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x32.c.o +#10 143.0 [3034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x48.c.o +#10 143.1 [3035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x64.c.o +#10 143.1 [3036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64-acc2.c.o +#10 143.2 [3037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64-acc4.c.o +#10 143.2 [3038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64.c.o +#10 143.3 [3039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80-acc5.c.o +#10 143.3 [3040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x72-acc3.c.o +#10 143.3 [3041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80.c.o +#10 143.3 [3042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x72.c.o +#10 143.4 [3043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80-acc2.c.o +#10 143.4 [3044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc6.c.o +#10 143.4 [3045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc3.c.o +#10 143.5 [3046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc2.c.o +#10 143.5 [3047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64-acc2.c.o +#10 143.5 [3048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96.c.o +#10 143.6 [3049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64-acc4.c.o +#10 143.7 [3050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x72-acc3.c.o +#10 143.7 [3051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64.c.o +#10 143.8 [3052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x72.c.o +#10 143.8 [3053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80-acc5.c.o +#10 143.8 [3054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80-acc2.c.o +#10 143.8 [3055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80.c.o +#10 143.8 [3056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc3.c.o +#10 143.9 [3057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc6.c.o +#10 143.9 [3058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96.c.o +#10 144.0 [3059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc2.c.o +#10 144.0 [3060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64-acc4.c.o +#10 144.0 [3061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64-acc2.c.o +#10 144.1 [3062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64.c.o +#10 144.2 [3063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x72.c.o +#10 144.2 [3064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x72-acc3.c.o +#10 144.3 [3065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc2.c.o +#10 144.3 [3066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80-acc2.c.o +#10 144.3 [3067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc3.c.o +#10 144.4 [3068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80-acc5.c.o +#10 144.4 [3069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x8.c.o +#10 144.4 [3070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80.c.o +#10 144.4 [3071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96.c.o +#10 144.4 [3072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x16.c.o +#10 144.4 [3073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x24.c.o +#10 144.5 [3074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc6.c.o +#10 144.5 [3075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x32.c.o +#10 144.6 [3076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x48.c.o +#10 144.7 [3077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x56.c.o +#10 144.7 [3078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x40.c.o +#10 144.8 [3079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x80.c.o +#10 144.8 [3080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x32.c.o +#10 144.8 [3081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x24.c.o +#10 144.8 [3082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x16.c.o +#10 144.9 [3083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x40.c.o +#10 144.9 [3084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x72.c.o +#10 144.9 [3085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x8.c.o +#10 144.9 [3086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x64.c.o +#10 145.0 [3087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x56.c.o +#10 145.1 [3088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x48.c.o +#10 145.1 [3089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x64.c.o +#10 145.1 [3090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x80.c.o +#10 145.2 [3091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x8.c.o +#10 145.2 [3092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x72.c.o +#10 145.2 [3093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x24.c.o +#10 145.2 [3094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x16.c.o +#10 145.3 [3095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x48.c.o +#10 145.3 [3096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x40.c.o +#10 145.4 [3097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x32.c.o +#10 145.4 [3098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x56.c.o +#10 145.4 [3099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x64.c.o +#10 145.5 [3100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x72.c.o +#10 145.6 [3101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x8.c.o +#10 145.6 [3102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x80.c.o +#10 145.6 [3103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x16.c.o +#10 145.6 [3104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x32.c.o +#10 145.6 [3105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x40.c.o +#10 145.6 [3106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x24.c.o +#10 145.7 [3107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x48.c.o +#10 145.8 [3108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x64.c.o +#10 145.8 [3109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x56.c.o +#10 145.8 [3110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x72.c.o +#10 145.9 [3111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x16.c.o +#10 145.9 [3112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x80.c.o +#10 145.9 [3113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x24.c.o +#10 146.0 [3114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x8.c.o +#10 146.1 [3115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x56.c.o +#10 146.1 [3116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x32.c.o +#10 146.1 [3117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x40.c.o +#10 146.1 [3118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x48.c.o +#10 146.1 [3119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x72.c.o +#10 146.2 [3120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x64.c.o +#10 146.2 [3121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x80.c.o +#10 146.3 [3122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x16.c.o +#10 146.3 [3123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x96.c.o +#10 146.3 [3124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x8.c.o +#10 146.3 [3125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x88.c.o +#10 146.3 [3126/6823] Building CXX object c10/test/CMakeFiles/c10_intrusive_ptr_test.dir/util/intrusive_ptr_test.cpp.o +#10 146.3 In destructor ‘virtual {anonymous}::SomeClass0Parameters::~SomeClass0Parameters()’, +#10 146.3 inlined from ‘void c10::weak_intrusive_ptr::reset_() [with TTarget = {anonymous}::SomeClass0Parameters; NullType = c10::detail::intrusive_target_default_null_type<{anonymous}::SomeClass0Parameters>]’ at ../c10/util/intrusive_ptr.h:709:7, +#10 146.3 inlined from ‘c10::weak_intrusive_ptr::~weak_intrusive_ptr() [with TTarget = {anonymous}::SomeClass0Parameters; NullType = c10::detail::intrusive_target_default_null_type<{anonymous}::SomeClass0Parameters>]’ at ../c10/util/intrusive_ptr.h:755:11, +#10 146.3 inlined from ‘virtual void WeakIntrusivePtrTest_givenStackObject_whenReclaimed_thenCrashes_Test::TestBody()’ at ../c10/test/util/intrusive_ptr_test.cpp:3537:1: +#10 146.3 ../c10/test/util/intrusive_ptr_test.cpp:26:7: warning: ‘void operator delete(void*, std::size_t)’ called on unallocated object ‘obj’ [-Wfree-nonheap-object] +#10 146.3 26 | class SomeClass0Parameters : public intrusive_ptr_target {}; +#10 146.3 | ^~~~~~~~~~~~~~~~~~~~ +#10 146.3 ../c10/test/util/intrusive_ptr_test.cpp: In member function ‘virtual void WeakIntrusivePtrTest_givenStackObject_whenReclaimed_thenCrashes_Test::TestBody()’: +#10 146.3 ../c10/test/util/intrusive_ptr_test.cpp:3529:13: note: declared here +#10 146.3 3529 | SomeClass obj; +#10 146.3 | ^~~ +#10 146.3 [3127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x24.c.o +#10 146.4 [3128/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x32.c.o +#10 146.5 [3129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x48.c.o +#10 146.5 [3130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x40.c.o +#10 146.6 [3131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x72.c.o +#10 146.6 [3132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x56.c.o +#10 146.6 [3133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x8.c.o +#10 146.6 [3134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x80.c.o +#10 146.6 [3135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x64.c.o +#10 146.6 [3136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x88.c.o +#10 146.7 [3137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x16.c.o +#10 146.7 [3138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x96.c.o +#10 146.8 [3139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x32.c.o +#10 146.8 [3140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x24.c.o +#10 146.8 [3141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x40.c.o +#10 146.8 [3142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x48.c.o +#10 147.0 [3143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x72.c.o +#10 147.0 [3144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x8.c.o +#10 147.0 [3145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x56.c.o +#10 147.0 [3146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x64.c.o +#10 147.0 [3147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x16.c.o +#10 147.0 [3148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x24.c.o +#10 147.1 [3149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x80.c.o +#10 147.1 [3150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x32.c.o +#10 147.1 [3151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x40.c.o +#10 147.2 [3152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x48.c.o +#10 147.2 [3153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x56.c.o +#10 147.3 [3154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x64.c.o +#10 147.3 [3155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x72.c.o +#10 147.3 [3156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x80.c.o +#10 147.3 [3157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x16.c.o +#10 147.4 [3158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x24.c.o +#10 147.4 [3159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x8.c.o +#10 147.4 [3160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x32.c.o +#10 147.4 [3161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x40.c.o +#10 147.5 [3162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x56.c.o +#10 147.5 [3163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x48.c.o +#10 147.6 [3164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x72.c.o +#10 147.6 [3165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-lut8-p3-perm.c.o +#10 147.7 [3166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x64.c.o +#10 147.7 [3167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x80.c.o +#10 147.7 [3168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-lut8-p4-perm.c.o +#10 147.7 [3169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f16-avx2-rr1-p3.c.o +#10 147.7 [3170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut8-p4-perm.c.o +#10 147.7 [3171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-p5.c.o +#10 147.7 [3172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut4-p4-perm.c.o +#10 147.7 [3173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut16-p3-gather.c.o +#10 147.8 [3174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-p6.c.o +#10 147.8 [3175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f16-avx2-rr1-p2.c.o +#10 147.8 [3176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f16-avx2-rr1-p3.c.o +#10 148.0 [3177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-avx2-rr2-p5.c.o +#10 148.0 [3178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-avx2-rr1-p5.c.o +#10 148.0 [3179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p3-rcp.c.o +#10 148.0 [3180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/extexp-avx2-p5.c.o +#10 148.0 [3181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p2-rcp.c.o +#10 148.0 [3182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p3-div.c.o +#10 148.1 [3183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-div.c.o +#10 148.1 [3184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr1fma.c.o +#10 148.1 [3185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p2-div.c.o +#10 148.1 [3186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr2fma1adj.c.o +#10 148.1 [3187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr2fma.c.o +#10 148.2 [3188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-div.c.o +#10 148.2 [3189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-nr1fma.c.o +#10 148.3 [3190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-nr2fma.c.o +#10 148.3 [3191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr2fma1adj.c.o +#10 148.3 [3192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-div.c.o +#10 148.3 [3193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr1fma.c.o +#10 148.3 [3194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr2fma.c.o +#10 148.4 [3195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-div.c.o +#10 148.4 [3196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-nr2fma.c.o +#10 148.4 [3197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-nr1fma.c.o +#10 148.5 [3198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o +#10 148.5 [3199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 148.6 [3200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 148.6 [3201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 148.7 [3202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 148.7 [3203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 148.8 [3204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 148.8 [3205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 148.8 [3206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx2-mul32.c.o +#10 148.8 [3207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 148.8 [3208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 148.8 [3209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 149.0 [3210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 149.1 [3211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 149.1 [3212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 149.2 [3213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 149.2 [3214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x8c8-xw-minmax-fp32-avx2.c.o +#10 149.2 [3215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x8c8-xw-minmax-fp32-avx2.c.o +#10 149.3 [3216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 149.3 [3217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 149.3 [3218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 149.4 [3219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 149.4 [3220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx2-mul32.c.o +#10 149.4 [3221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 149.4 [3222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 149.4 [3223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x8c8-xw-minmax-fp32-avx2.c.o +#10 149.5 [3224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 149.5 [3225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 149.6 [3226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 149.6 [3227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 149.7 [3228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 149.7 [3229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 149.8 [3230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 149.8 [3231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 149.8 [3232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 149.8 [3233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 149.9 [3234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 149.9 [3235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx2-mul32.c.o +#10 149.9 [3236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 149.9 [3237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 150.0 [3238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 150.1 [3239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 150.2 [3240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 150.2 [3241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x8.c.o +#10 150.3 [3242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 150.3 [3243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x16.c.o +#10 150.3 [3244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx2-mul32.c.o +#10 150.4 [3245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x24.c.o +#10 150.4 [3246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 150.4 [3247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 150.4 [3248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 150.4 [3249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 150.5 [3250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x32.c.o +#10 150.6 [3251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x8c8-xw-minmax-fp32-avx2.c.o +#10 150.6 [3252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 150.6 [3253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 150.6 [3254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x8c8-xw-minmax-fp32-avx2.c.o +#10 150.7 [3255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 150.7 [3256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 150.7 [3257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 150.8 [3258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x8c8-xw-minmax-fp32-avx2.c.o +#10 150.8 [3259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x24.c.o +#10 150.8 [3260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 150.8 [3261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x8.c.o +#10 150.8 [3262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 150.9 [3263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x32.c.o +#10 150.9 [3264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x16.c.o +#10 150.9 [3265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x8.c.o +#10 151.0 [3266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x24.c.o +#10 151.0 [3267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x16.c.o +#10 151.0 [3268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x32.c.o +#10 151.1 [3269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x32.c.o +#10 151.1 [3270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x16.c.o +#10 151.1 [3271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x16.c.o +#10 151.1 [3272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x64.c.o +#10 151.1 [3273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x32.c.o +#10 151.3 [3274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 151.3 [3275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 151.3 [3276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x64.c.o +#10 151.4 [3277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x8.c.o +#10 151.4 [3278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x16.c.o +#10 151.4 [3279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 151.4 [3280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x24.c.o +#10 151.5 [3281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x32.c.o +#10 151.5 [3282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 151.5 [3283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 151.6 [3284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 151.6 [3285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 151.6 [3286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 151.7 [3287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-x8.c.o +#10 151.7 [3288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 151.8 [3289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-x16.c.o +#10 151.8 [3290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 151.8 [3291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 151.8 [3292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-x8.c.o +#10 151.8 [3293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 151.9 [3294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x16.c.o +#10 151.9 [3295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-x16.c.o +#10 151.9 [3296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x32.c.o +#10 151.9 [3297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x16.c.o +#10 152.0 [3298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x64.c.o +#10 152.0 [3299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x64.c.o +#10 152.0 [3300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x32.c.o +#10 152.1 [3301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x64.c.o +#10 152.2 [3302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x96.c.o +#10 152.2 [3303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x32.c.o +#10 152.2 [3304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x128.c.o +#10 152.3 [3305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c16s4r-minmax-avx512f-acc2.c.o +#10 152.3 [3306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c16s4r-minmax-avx512f-acc2.c.o +#10 152.4 [3307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c16s4r-minmax-avx512f.c.o +#10 152.4 [3308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-mov-avx2.c.o +#10 152.4 [3309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c16s4r-minmax-avx512f.c.o +#10 152.4 [3310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o +#10 152.4 [3311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l64c16s4r-minmax-avx512f-acc2.c.o +#10 152.5 [3312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l64c16s4r-minmax-avx512f.c.o +#10 152.5 [3313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f-acc2.c.o +#10 152.6 [3314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o +#10 152.6 [3315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f-acc2.c.o +#10 152.6 [3316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p32c-minmax-avx512f-acc2.c.o +#10 152.6 [3317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p32c-minmax-avx512f.c.o +#10 152.7 [3318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o +#10 152.7 [3319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o +#10 152.8 [3320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p32c-minmax-avx512f-acc2.c.o +#10 152.8 [3321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o +#10 152.8 [3322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f-acc2.c.o +#10 152.8 [3323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p32c-minmax-avx512f.c.o +#10 152.9 [3324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p32c-minmax-avx512f-acc2.c.o +#10 152.9 [3325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-mov-avx2.c.o +#10 153.0 [3326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p32c-minmax-avx512f.c.o +#10 153.0 [3327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f-acc2.c.o +#10 153.0 [3328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o +#10 153.0 [3329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx512f-broadcast.c.o +#10 153.0 [3330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p32c-minmax-avx512f-acc2.c.o +#10 153.1 [3331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx512f-broadcast.c.o +#10 153.1 [3332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-avx512f-broadcast.c.o +#10 153.1 [3333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p32c-minmax-avx512f.c.o +#10 153.2 [3334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x16-minmax-avx512f-broadcast.c.o +#10 153.2 [3335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x16-minmax-avx512f-broadcast.c.o +#10 153.2 [3336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-avx512f-broadcast.c.o +#10 153.2 [3337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-avx512f-broadcast.c.o +#10 153.3 [3338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-avx512f-broadcast.c.o +#10 153.3 [3339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-avx512f-broadcast.c.o +#10 153.3 [3340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x16-minmax-avx512f-broadcast.c.o +#10 153.4 [3341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x16-minmax-avx512f-broadcast.c.o +#10 153.4 [3342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx512f-broadcast.c.o +#10 153.4 [3343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-8x16-minmax-avx512f-broadcast.c.o +#10 153.4 [3344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-avx512f-broadcast.c.o +#10 153.5 [3345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-avx512f-broadcast.c.o +#10 153.5 [3346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x16-minmax-avx512f-broadcast.c.o +#10 153.5 [3347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx512f-broadcast.c.o +#10 153.5 [3348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx512f-2x32.c.o +#10 153.6 [3349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x16-minmax-avx512f-broadcast.c.o +#10 153.6 [3350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx512f-2x16.c.o +#10 153.6 [3351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128-acc2.c.o +#10 153.7 [3352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128.c.o +#10 153.7 [3353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128-acc4.c.o +#10 153.7 [3354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x144-acc3.c.o +#10 153.8 [3355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x144.c.o +#10 153.8 [3356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160-acc2.c.o +#10 153.8 [3357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160-acc5.c.o +#10 153.8 [3358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160.c.o +#10 153.9 [3359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc6.c.o +#10 153.9 [3360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc2.c.o +#10 153.9 [3361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128-acc2.c.o +#10 154.0 [3362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192.c.o +#10 154.0 [3363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc3.c.o +#10 154.0 [3364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128-acc4.c.o +#10 154.0 [3365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128.c.o +#10 154.1 [3366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x144-acc3.c.o +#10 154.1 [3367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160-acc2.c.o +#10 154.1 [3368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160-acc5.c.o +#10 154.1 [3369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160.c.o +#10 154.2 [3370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc2.c.o +#10 154.2 [3371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x144.c.o +#10 154.2 [3372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc3.c.o +#10 154.3 [3373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192.c.o +#10 154.3 [3374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128-acc2.c.o +#10 154.3 [3375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc6.c.o +#10 154.4 [3376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128-acc4.c.o +#10 154.4 [3377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x144.c.o +#10 154.4 [3378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128.c.o +#10 154.4 [3379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x144-acc3.c.o +#10 154.5 [3380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160-acc2.c.o +#10 154.5 [3381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160.c.o +#10 154.5 [3382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160-acc5.c.o +#10 154.6 [3383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc2.c.o +#10 154.6 [3384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc6.c.o +#10 154.6 [3385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc3.c.o +#10 154.6 [3386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-avx512f.c.o +#10 154.6 [3387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx512f-x32.c.o +#10 154.7 [3388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192.c.o +#10 154.7 [3389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx512f-x16.c.o +#10 154.7 [3390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx512f-x16.c.o +#10 154.7 [3391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx512f-x32.c.o +#10 154.7 [3392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx512f-x16.c.o +#10 154.8 [3393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx512f-x32.c.o +#10 154.8 [3394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx512f-x32.c.o +#10 154.8 [3395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx512f-x16.c.o +#10 154.9 [3396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx512f-x16.c.o +#10 154.9 [3397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx512f-x32.c.o +#10 155.0 [3398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx512f-x16.c.o +#10 155.0 [3399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-x32.c.o +#10 155.0 [3400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx512f-x32.c.o +#10 155.0 [3401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-x16.c.o +#10 155.0 [3402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx512f-x16.c.o +#10 155.1 [3403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx512f-x32.c.o +#10 155.1 [3404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx512f-x16.c.o +#10 155.1 [3405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx512f-x16.c.o +#10 155.1 [3406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx512f-x16.c.o +#10 155.2 [3407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx512f-x32.c.o +#10 155.2 [3408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx512f-x32.c.o +#10 155.2 [3409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx512f-x32.c.o +#10 155.3 [3410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx512f-x32.c.o +#10 155.3 [3411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-x16.c.o +#10 155.3 [3412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-x16.c.o +#10 155.3 [3413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-x32.c.o +#10 155.4 [3414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx512f-x16.c.o +#10 155.4 [3415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx512f-x16.c.o +#10 155.4 [3416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx512f-x32.c.o +#10 155.4 [3417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-x32.c.o +#10 155.4 [3418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx512f-x32.c.o +#10 155.4 [3419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx512f-x16.c.o +#10 155.5 [3420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-x16.c.o +#10 155.6 [3421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x32.c.o +#10 155.6 [3422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x16.c.o +#10 155.6 [3423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x64.c.o +#10 155.6 [3424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-x32.c.o +#10 155.6 [3425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x48.c.o +#10 155.7 [3426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x96.c.o +#10 155.7 [3427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x112.c.o +#10 155.7 [3428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x80.c.o +#10 155.7 [3429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x16.c.o +#10 155.8 [3430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x128.c.o +#10 155.8 [3431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x32.c.o +#10 155.8 [3432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x48.c.o +#10 155.9 [3433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x80.c.o +#10 155.9 [3434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x64.c.o +#10 155.9 [3435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x96.c.o +#10 156.0 [3436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-x32.c.o +#10 156.0 [3437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-x16.c.o +#10 156.0 [3438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx512f-x16.c.o +#10 156.0 [3439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x112.c.o +#10 156.0 [3440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x128.c.o +#10 156.0 [3441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-x16.c.o +#10 156.1 [3442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx512f-x32.c.o +#10 156.1 [3443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-x32.c.o +#10 156.1 [3444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-x16.c.o +#10 156.2 [3445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-x32.c.o +#10 156.2 [3446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-x16.c.o +#10 156.2 [3447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-x32.c.o +#10 156.3 [3448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-x16.c.o +#10 156.3 [3449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-x32.c.o +#10 156.3 [3450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-x32.c.o +#10 156.4 [3451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-x16.c.o +#10 156.4 [3452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x16.c.o +#10 156.4 [3453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x32.c.o +#10 156.4 [3454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x64.c.o +#10 156.4 [3455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x48.c.o +#10 156.5 [3456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x80.c.o +#10 156.5 [3457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x96.c.o +#10 156.5 [3458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x112.c.o +#10 156.5 [3459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x128.c.o +#10 156.6 [3460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x144.c.o +#10 156.6 [3461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x160.c.o +#10 156.7 [3462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x64.c.o +#10 156.7 [3463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x16.c.o +#10 156.7 [3464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x32.c.o +#10 156.7 [3465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x48.c.o +#10 156.7 [3466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x192.c.o +#10 156.7 [3467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x176.c.o +#10 156.8 [3468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x80.c.o +#10 156.8 [3469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x96.c.o +#10 156.8 [3470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x112.c.o +#10 156.9 [3471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x128.c.o +#10 156.9 [3472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x144.c.o +#10 156.9 [3473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x176.c.o +#10 157.0 [3474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x160.c.o +#10 157.0 [3475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x16.c.o +#10 157.0 [3476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x48.c.o +#10 157.0 [3477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x192.c.o +#10 157.0 [3478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x32.c.o +#10 157.1 [3479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x80.c.o +#10 157.1 [3480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x64.c.o +#10 157.1 [3481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x96.c.o +#10 157.2 [3482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x112.c.o +#10 157.2 [3483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x16.c.o +#10 157.3 [3484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x32.c.o +#10 157.3 [3485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x64.c.o +#10 157.3 [3486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x128.c.o +#10 157.3 [3487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x48.c.o +#10 157.4 [3488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x96.c.o +#10 157.4 [3489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x16.c.o +#10 157.4 [3490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x80.c.o +#10 157.4 [3491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x32.c.o +#10 157.4 [3492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x112.c.o +#10 157.5 [3493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x128.c.o +#10 157.5 [3494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x48.c.o +#10 157.5 [3495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x80.c.o +#10 157.5 [3496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x64.c.o +#10 157.6 [3497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x96.c.o +#10 157.7 [3498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x16.c.o +#10 157.7 [3499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x128.c.o +#10 157.7 [3500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x112.c.o +#10 157.7 [3501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x64.c.o +#10 157.7 [3502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x32.c.o +#10 157.8 [3503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x80.c.o +#10 157.8 [3504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x16.c.o +#10 157.8 [3505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x96.c.o +#10 157.8 [3506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x48.c.o +#10 157.9 [3507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x128.c.o +#10 157.9 [3508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x112.c.o +#10 157.9 [3509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x32.c.o +#10 158.0 [3510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x48.c.o +#10 158.0 [3511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x64.c.o +#10 158.0 [3512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x80.c.o +#10 158.1 [3513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x96.c.o +#10 158.1 [3514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x112.c.o +#10 158.1 [3515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x16.c.o +#10 158.1 [3516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x128.c.o +#10 158.1 [3517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x32.c.o +#10 158.1 [3518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x48.c.o +#10 158.2 [3519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x64.c.o +#10 158.2 [3520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x80.c.o +#10 158.3 [3521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x96.c.o +#10 158.3 [3522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x112.c.o +#10 158.3 [3523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x32.c.o +#10 158.4 [3524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x16.c.o +#10 158.4 [3525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x48.c.o +#10 158.4 [3526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x128.c.o +#10 158.4 [3527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x80.c.o +#10 158.5 [3528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x64.c.o +#10 158.5 [3529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x112.c.o +#10 158.5 [3530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x96.c.o +#10 158.5 [3531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x128.c.o +#10 158.5 [3532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx512f-x16.c.o +#10 158.6 [3533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx512f-x32.c.o +#10 158.6 [3534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx512f-x16.c.o +#10 158.6 [3535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx512f-x16.c.o +#10 158.7 [3536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx512f-x32.c.o +#10 158.7 [3537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut16-p3-perm-scalef.c.o +#10 158.7 [3538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx512f-x32.c.o +#10 158.8 [3539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut32-p2-perm2.c.o +#10 158.8 [3540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut16-p3-perm.c.o +#10 158.8 [3541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut32-p2-perm2-scalef.c.o +#10 158.8 [3542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-p5-scalef.c.o +#10 158.8 [3543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx512f-rr1-lut16-p3-perm.c.o +#10 158.9 [3544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-p5.c.o +#10 158.9 [3545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx512f-rr1-p6.c.o +#10 158.9 [3546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-div.c.o +#10 158.9 [3547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-nr1fma1adj.c.o +#10 159.0 [3548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-div.c.o +#10 159.0 [3549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma.c.o +#10 159.0 [3550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-nr1fma.c.o +#10 159.0 [3551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/extexp-avx512f-p5.c.o +#10 159.0 [3552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma1adj.c.o +#10 159.1 [3553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-div.c.o +#10 159.1 [3554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-div.c.o +#10 159.1 [3555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-nr1fma1adj.c.o +#10 159.1 [3556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-nr1fma.c.o +#10 159.2 [3557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-nr1fma1adj.c.o +#10 159.2 [3558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-nr1fma.c.o +#10 159.2 [3559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-nr1fma1adj.c.o +#10 159.2 [3560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-nr1fma.c.o +#10 159.3 [3561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma1adj.c.o +#10 159.3 [3562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-div.c.o +#10 159.3 [3563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-div.c.o +#10 159.3 [3564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma.c.o +#10 159.4 [3565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-nr1fma1adj.c.o +#10 159.4 [3566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-div.c.o +#10 159.4 [3567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-nr1fma.c.o +#10 159.5 [3568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-div.c.o +#10 159.5 [3569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-nr1fma1adj.c.o +#10 159.5 [3570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-nr1fma.c.o +#10 159.5 [3571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr1fma1adj.c.o +#10 159.5 [3572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-x16.c.o +#10 159.5 [3573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-x32.c.o +#10 159.5 [3574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr1fma.c.o +#10 159.6 [3575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr2fma.c.o +#10 159.6 [3576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-x32.c.o +#10 159.6 [3577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-x16.c.o +#10 159.7 [3578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x32.c.o +#10 159.7 [3579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x64.c.o +#10 159.7 [3580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x96.c.o +#10 159.7 [3581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x32.c.o +#10 159.8 [3582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x128.c.o +#10 159.8 [3583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x64.c.o +#10 159.8 [3584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x128.c.o +#10 159.8 [3585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x96.c.o +#10 159.9 [3586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 159.9 [3587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o +#10 159.9 [3588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 159.9 [3589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 160.0 [3590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 160.0 [3591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 160.0 [3592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 160.1 [3593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 160.1 [3594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 160.1 [3595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 160.1 [3596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 160.2 [3597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 160.2 [3598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x16.c.o +#10 160.2 [3599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 160.2 [3600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 160.2 [3601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 160.3 [3602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x32.c.o +#10 160.3 [3603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x48.c.o +#10 160.3 [3604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x64.c.o +#10 160.4 [3605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 160.4 [3606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 160.4 [3607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 160.4 [3608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 160.5 [3609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 160.5 [3610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 160.5 [3611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 160.5 [3612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-x16.c.o +#10 160.6 [3613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 160.6 [3614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 160.6 [3615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 160.6 [3616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-x16.c.o +#10 160.6 [3617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-x32.c.o +#10 160.7 [3618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-x32.c.o +#10 160.7 [3619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x16.c.o +#10 160.7 [3620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 160.8 [3621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x48.c.o +#10 160.8 [3622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 160.8 [3623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x64.c.o +#10 160.8 [3624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 160.9 [3625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x32.c.o +#10 160.9 [3626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 160.9 [3627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 160.9 [3628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 160.9 [3629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 160.9 [3630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 161.0 [3631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 161.1 [3632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 161.1 [3633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-x32.c.o +#10 161.1 [3634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 161.1 [3635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 161.1 [3636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-64.c.o +#10 161.1 [3637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-4.c.o +#10 161.1 [3638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-8.c.o +#10 161.1 [3639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-x16.c.o +#10 161.1 [3640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-x32.c.o +#10 161.1 [3641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-x16.c.o +#10 161.1 [3642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-2048.c.o +#10 161.1 [3643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-16.c.o +#10 161.2 [3644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/vlog.c.o +#10 161.2 [3645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x128.c.o +#10 161.2 [3646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-64.c.o +#10 161.2 [3647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-2048.c.o +#10 161.2 [3648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x128.c.o +#10 161.2 [3649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x64.c.o +#10 161.2 [3650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x64.c.o +#10 161.3 [3651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x192.c.o +#10 161.3 [3652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x256.c.o +#10 161.3 [3653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x192.c.o +#10 161.4 [3654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x256.c.o +#10 161.4 [3655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o +#10 161.4 [3656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o +#10 161.4 [3657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/scalar.c.o +#10 161.4 [3658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o +#10 161.5 [3659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o +#10 161.5 [3660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o +#10 161.6 [3661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o +#10 161.7 [3662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o +#10 161.7 [3663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/ssse3.c.o +#10 161.8 [3664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o +#10 161.8 [3665/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/convolution-test-helpers.dir/test/convolution-test-helpers.cc.o +#10 161.8 [3666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o +#10 161.9 [3667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o +#10 161.9 [3668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o +#10 161.9 [3669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o +#10 162.0 [3670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512vbmi.c.o +#10 162.1 [3671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o +#10 162.2 [3672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o +#10 162.2 [3673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o +#10 162.3 [3674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o +#10 162.3 [3675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/f16c.c.o +#10 162.4 [3676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/fma3.c.o +#10 162.4 [3677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o +#10 162.5 [3678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o +#10 162.6 [3679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512f.c.o +#10 162.6 [3680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o +#10 162.6 [3681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-ncw.c.o +#10 162.7 [3682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o +#10 162.7 [3683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-nwc.c.o +#10 162.7 [3684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o +#10 162.7 [3685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o +#10 162.7 [3686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/lut-elementwise-nc.c.o +#10 162.8 [3687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o +#10 162.8 [3688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/prelu-nc.c.o +#10 162.8 [3689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convert.c.o +#10 162.8 [3690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o +#10 162.8 [3691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o +#10 162.8 [3692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o +#10 162.9 [3693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space.c.o +#10 162.9 [3694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o +#10 162.9 [3695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/divide.c.o +#10 162.9 [3696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/xop.c.o +#10 162.9 [3697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o +#10 163.0 [3698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o +#10 163.0 [3699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/floor.c.o +#10 163.0 [3700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/elu.c.o +#10 163.0 [3701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/hardswish.c.o +#10 163.0 [3702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o +#10 163.0 [3703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o +#10 163.0 [3704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/global-average-pooling.c.o +#10 163.1 [3705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/leaky-relu.c.o +#10 163.1 [3706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/maximum2.c.o +#10 163.1 [3707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o +#10 163.1 [3708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/minimum2.c.o +#10 163.1 [3709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/multiply2.c.o +#10 163.1 [3710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/negate.c.o +#10 163.2 [3711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/prelu.c.o +#10 163.2 [3712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/sigmoid.c.o +#10 163.2 [3713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o +#10 163.2 [3714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o +#10 163.2 [3715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square-root.c.o +#10 163.2 [3716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square.c.o +#10 163.3 [3717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o +#10 163.3 [3718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/squared-difference.c.o +#10 163.3 [3719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o +#10 163.3 [3720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reshape.c.o +#10 163.3 [3721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/subtract.c.o +#10 163.3 [3722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o +#10 163.3 [3723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o +#10 163.3 [3724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse.c.o +#10 163.4 [3725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o +#10 163.4 [3726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/post-operation.dir/src/operators/post-operation.c.o +#10 163.4 [3727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o +#10 163.4 [3728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o +#10 163.4 [3729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o +#10 163.4 [3730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/x8-lut-config.c.o +#10 163.4 [3731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/transpose-config.c.o +#10 163.5 [3732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o +#10 163.5 [3733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse41.c.o +#10 163.5 [3734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/binary-elementwise-config.c.o +#10 163.6 [3735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512skx.c.o +#10 163.9 [3736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o +#10 164.1 [3737/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o +#10 164.3 [3738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx.c.o +#10 164.4 [3739/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_name.cc.o +#10 164.5 [3740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx2.c.o +#10 164.7 [3741/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_api_internal.cc.o +#10 164.8 [3742/6823] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +#10 164.8 [3743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse2.c.o +#10 164.9 [3744/6823] Building CXX object third_party/googletest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +#10 165.3 [3745/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o +#10 165.4 [3746/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o +#10 165.7 [3747/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o +#10 165.8 [3748/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o +#10 166.0 [3749/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/perf_counters.cc.o +#10 166.1 [3750/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o +#10 166.2 [3751/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o +#10 166.4 [3752/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o +#10 166.5 [3753/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o +#10 166.7 [3754/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/TransposeUtils.cc.o +#10 166.9 [3755/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_runner.cc.o +#10 167.1 [3756/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o +#10 167.1 [3757/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o +#10 167.2 [3758/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o +#10 167.6 [3759/6823] Building CXX object third_party/googletest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +#10 167.8 [3760/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o +#10 167.9 [3761/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/spmmUtils.cc.o +#10 167.9 [3762/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o +#10 168.0 [3763/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o +#10 168.0 [3764/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o +#10 168.0 [3765/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/ExecuteKernel.cc.o +#10 168.0 [3766/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o +#10 168.1 [3767/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o +#10 168.2 [3768/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/Utils.cc.o +#10 168.5 [3769/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o +#10 168.6 [3770/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmBfloat16Convert.cc.o +#10 169.0 [3771/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFloat16Convert.cc.o +#10 170.4 [3772/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmSparseDense.cc.o +#10 170.5 [3773/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateI8Depthwise.cc.o +#10 170.5 [3774/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFPCommon.cc.o +#10 170.6 [3775/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o +#10 170.7 [3776/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o +#10 170.8 [3777/6823] Linking CXX static library lib/libbenchmark.a +#10 170.8 [3778/6823] Linking CXX static library lib/libbenchmark_main.a +#10 171.2 [3779/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmI8Spmdm.cc.o +#10 171.7 [3780/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFP16.cc.o +#10 172.0 [3781/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmConv.cc.o +#10 173.7 [3782/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmI64.cc.o +#10 173.8 [3783/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/RefImplementations.cc.o +#10 173.9 [3784/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernel.cc.o +#10 174.4 [3785/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16.cc.o +#10 174.6 [3786/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512.cc.o +#10 174.8 [3787/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelDirectConvU8S8S32ACC32.cc.o +#10 175.3 [3788/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512VNNI.cc.o +#10 175.3 [3789/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAMatrix.cc.o +#10 175.7 [3790/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32Avx512VNNI.cc.o +#10 175.9 [3791/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithQuantRowOffset.cc.o +#10 176.4 [3792/6823] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +#10 176.5 [3793/6823] Linking CXX static library lib/libgtest.a +#10 176.6 [3794/6823] Linking CXX static library lib/libgmock.a +#10 176.6 [3795/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithRowOffset.cc.o +#10 176.6 [3796/6823] Linking CXX static library lib/libgtest_main.a +#10 176.7 [3797/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackBMatrix.cc.o +#10 176.7 [3798/6823] Linking CXX static library lib/libgmock_main.a +#10 176.7 [3799/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32.cc.o +#10 176.9 [3800/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithIm2Col.cc.o +#10 177.2 [3801/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackMatrix.cc.o +#10 177.8 [3802/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConvAcc32Avx512.cc.o +#10 178.2 [3803/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConvAcc32Avx2.cc.o +#10 178.5 [3804/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/QuantUtils.cc.o +#10 178.7 [3805/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o +#10 178.9 [3806/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForConv.cc.o +#10 179.4 [3807/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightMatrixForGConv.cc.o +#10 179.8 [3808/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o +#10 180.3 [3809/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o +#10 180.7 [3810/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConv.cc.o +#10 180.8 [3811/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o +#10 180.8 [3812/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o +#10 180.9 [3813/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForDirectConv.cc.o +#10 181.4 [3814/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o +#10 181.4 [3815/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/SparseAdagrad.cc.o +#10 181.6 [3816/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o +#10 181.8 [3817/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o +#10 182.0 [3818/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o +#10 182.1 [3819/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o +#10 182.4 [3820/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o +#10 182.5 [3821/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o +#10 182.7 [3822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o +#10 182.8 [3823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o +#10 183.0 [3824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o +#10 183.1 [3825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o +#10 183.3 [3826/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/Fbgemm.cc.o +#10 183.5 [3827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o +#10 183.6 [3828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o +#10 183.7 [3829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o +#10 183.8 [3830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o +#10 183.9 [3831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/abs.c.o +#10 184.0 [3832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o +#10 184.0 [3833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o +#10 184.0 [3834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/add2.c.o +#10 184.2 [3835/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o +#10 184.2 [3836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/ceiling.c.o +#10 184.2 [3837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o +#10 184.2 [3838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/bankers-rounding.c.o +#10 184.2 [3839/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o +#10 184.3 [3840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/clamp.c.o +#10 184.4 [3841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o +#10 184.6 [3842/6823] Linking CXX static library lib/libXNNPACK.a +#10 184.8 [3843/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o +#10 185.0 [3844/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/archtraits.cpp.o +#10 185.1 [3845/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/assembler.cpp.o +#10 185.5 [3846/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codeholder.cpp.o +#10 185.5 [3847/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/builder.cpp.o +#10 185.5 [3848/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codewriter.cpp.o +#10 185.8 [3849/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/compiler.cpp.o +#10 185.8 [3850/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/cpuinfo.cpp.o +#10 185.8 [3851/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/constpool.cpp.o +#10 186.2 [3852/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/environment.cpp.o +#10 186.3 [3853/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitterutils.cpp.o +#10 186.3 [3854/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitter.cpp.o +#10 186.3 [3855/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/errorhandler.cpp.o +#10 186.5 [3856/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emithelper.cpp.o +#10 186.7 [3857/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/globals.cpp.o +#10 186.8 [3858/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/formatter.cpp.o +#10 186.8 [3859/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/func.cpp.o +#10 186.8 [3860/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o +#10 186.8 [3861/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/inst.cpp.o +#10 186.9 [3862/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/funcargscontext.cpp.o +#10 187.2 [3863/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/operand.cpp.o +#10 187.3 [3864/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/osutils.cpp.o +#10 187.3 [3865/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitruntime.cpp.o +#10 187.4 [3866/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/logger.cpp.o +#10 187.4 [3867/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitallocator.cpp.o +#10 187.4 [3868/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/RowWiseSparseAdagradFused.cc.o +#10 187.7 [3869/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/support.cpp.o +#10 187.9 [3870/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/target.cpp.o +#10 187.9 [3871/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rastack.cpp.o +#10 187.9 [3872/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/string.cpp.o +#10 188.0 [3873/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/type.cpp.o +#10 188.0 [3874/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/virtmem.cpp.o +#10 188.2 [3875/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zone.cpp.o +#10 188.2 [3876/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/ralocal.cpp.o +#10 188.3 [3877/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonelist.cpp.o +#10 188.3 [3878/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonetree.cpp.o +#10 188.4 [3879/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonehash.cpp.o +#10 188.5 [3880/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonestack.cpp.o +#10 188.6 [3881/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonevector.cpp.o +#10 188.9 [3882/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/armformatter.cpp.o +#10 189.2 [3883/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64formatter.cpp.o +#10 189.3 [3884/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64func.cpp.o +#10 189.3 [3885/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64builder.cpp.o +#10 189.4 [3886/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64compiler.cpp.o +#10 189.4 [3887/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rapass.cpp.o +#10 189.7 [3888/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64emithelper.cpp.o +#10 189.7 [3889/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instapi.cpp.o +#10 189.9 [3890/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64operand.cpp.o +#10 190.0 [3891/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instdb.cpp.o +#10 190.9 [3892/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86formatter.cpp.o +#10 191.0 [3893/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64rapass.cpp.o +#10 191.6 [3894/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64assembler.cpp.o +#10 191.8 [3895/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86compiler.cpp.o +#10 192.0 [3896/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86builder.cpp.o +#10 192.1 [3897/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86emithelper.cpp.o +#10 192.2 [3898/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86func.cpp.o +#10 192.3 [3899/6823] Building C object third_party/ittapi/CMakeFiles/ittnotify.dir/src/ittnotify/jitprofiling.c.o +#10 192.3 [3900/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86operand.cpp.o +#10 192.3 [3901/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instdb.cpp.o +#10 192.6 [3902/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instapi.cpp.o +#10 192.8 [3903/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/error.cc.o +#10 193.1 [3904/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/ExecuteKernelU8S8.cc.o +#10 193.1 [3905/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/helpers.cc.o +#10 193.1 [3906/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/address.cc.o +#10 193.1 [3907/6823] Building C object third_party/ittapi/CMakeFiles/ittnotify.dir/src/ittnotify/ittnotify_static.c.o +#10 193.1 [3908/6823] Linking C static library lib/libittnotify.a +#10 193.4 [3909/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/allocator.cc.o +#10 193.5 [3910/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/error.cc.o +#10 193.7 [3911/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/fd.cc.o +#10 194.0 [3912/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/error.cc.o +#10 194.2 [3913/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/socket.cc.o +#10 194.5 [3914/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/system.cc.o +#10 195.0 [3915/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/context.cc.o +#10 195.0 [3916/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/error.cc.o +#10 195.1 [3917/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86assembler.cpp.o +#10 195.2 [3918/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86rapass.cpp.o +#10 195.3 [3919/6823] Linking CXX static library lib/libasmjit.a +#10 195.7 [3920/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/listener.cc.o +#10 196.7 [3921/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDMNBit.cc.o +#10 196.8 [3922/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/pipe.cc.o +#10 197.6 [3923/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/channel_impl.cc.o +#10 198.0 [3924/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/context_impl.cc.o +#10 198.6 [3925/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/context_impl.cc.o +#10 198.7 [3926/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/listener_impl.cc.o +#10 199.4 [3927/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/factory.cc.o +#10 199.4 [3928/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/channel_impl.cc.o +#10 200.0 [3929/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/context_impl.cc.o +#10 200.2 [3930/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/channel_impl.cc.o +#10 200.2 [3931/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/factory.cc.o +#10 201.5 [3932/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/factory.cc.o +#10 201.7 [3933/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/error.cc.o +#10 202.1 [3934/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/context_impl.cc.o +#10 202.3 [3935/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/context_impl.cc.o +#10 203.2 [3936/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/connection_impl.cc.o +#10 203.2 [3937/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/channel_impl.cc.o +#10 203.2 [3938/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/factory.cc.o +#10 203.7 [3939/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/context_impl.cc.o +#10 203.8 [3940/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/loop.cc.o +#10 203.8 [3941/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o +#10 203.9 [3942/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/sockaddr.cc.o +#10 205.2 [3943/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/shm_segment.cc.o +#10 205.5 [3944/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/epoll_loop.cc.o +#10 205.6 [3945/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/factory.cc.o +#10 205.7 [3946/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/utility.cc.o +#10 206.0 [3947/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/pipe_impl.cc.o +#10 206.1 [3948/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/sockaddr.cc.o +#10 206.3 [3949/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/context_impl.cc.o +#10 206.4 [3950/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/listener_impl.cc.o +#10 206.8 [3951/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/ibv.cc.o +#10 207.2 [3952/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/error.cc.o +#10 207.7 [3953/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/connection_impl.cc.o +#10 207.9 [3954/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/random.c.o +#10 208.0 [3955/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/reactor.cc.o +#10 208.1 [3956/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/fs-poll.c.o +#10 208.2 [3957/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/listener_impl.cc.o +#10 208.2 [3958/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/idna.c.o +#10 208.3 [3959/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/sockaddr.cc.o +#10 208.4 [3960/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/strscpy.c.o +#10 208.4 [3961/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/inet.c.o +#10 208.5 [3962/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/threadpool.c.o +#10 208.5 [3963/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/uv-data-getter-setters.c.o +#10 208.5 [3964/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/timer.c.o +#10 208.6 [3965/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/version.c.o +#10 208.8 [3966/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/async.c.o +#10 208.8 [3967/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/uv-common.c.o +#10 208.9 [3968/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/dl.c.o +#10 209.1 [3969/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/getaddrinfo.c.o +#10 209.1 [3970/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/getnameinfo.c.o +#10 209.1 [3971/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/core.c.o +#10 209.1 [3972/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/utility.cc.o +#10 209.3 [3973/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/factory.cc.o +#10 209.3 [3974/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/loop-watcher.c.o +#10 209.3 [3975/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/poll.c.o +#10 209.3 [3976/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/loop.c.o +#10 209.4 [3977/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/pipe.c.o +#10 209.4 [3978/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/fs.c.o +#10 209.4 [3979/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-devurandom.c.o +#10 209.5 [3980/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/process.c.o +#10 209.6 [3981/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/tcp.c.o +#10 209.6 [3982/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/signal.c.o +#10 209.6 [3983/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/thread.c.o +#10 209.6 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c: In function ‘thread_stack_size’: +#10 209.6 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c:195:24: warning: comparison of integer expressions of different signedness: ‘rlim_t’ {aka ‘long unsigned int’} and ‘long int’ [-Wsign-compare] +#10 209.6 195 | if (lim.rlim_cur >= PTHREAD_STACK_MIN) +#10 209.6 | ^~ +#10 209.6 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c: In function ‘uv_thread_create_ex’: +#10 209.6 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c:243:20: warning: comparison of integer expressions of different signedness: ‘size_t’ {aka ‘long unsigned int’} and ‘long int’ [-Wsign-compare] +#10 209.6 243 | if (stack_size < PTHREAD_STACK_MIN) +#10 209.6 | ^ +#10 209.7 [3984/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/tty.c.o +#10 209.8 [3985/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/stream.c.o +#10 209.8 [3986/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/proctitle.c.o +#10 209.8 [3987/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-syscalls.c.o +#10 209.9 [3988/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/procfs-exepath.c.o +#10 209.9 [3989/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/udp.c.o +#10 210.0 [3990/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-getrandom.c.o +#10 210.0 [3991/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-inotify.c.o +#10 210.0 [3992/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-sysctl-linux.c.o +#10 210.0 [3993/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-core.c.o +#10 210.1 [3994/6823] Linking C static library lib/libtensorpipe_uv.a +#10 210.4 [3995/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/context_impl.cc.o +#10 210.5 [3996/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/reactor.cc.o +#10 210.7 [3997/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o +#10 210.8 [3998/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/connection_impl.cc.o +#10 211.1 [3999/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o +#10 211.2 [4000/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/alltoall.cc.o +#10 211.3 [4001/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o +#10 211.4 [4002/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/barrier.cc.o +#10 211.4 [4003/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgatherv.cc.o +#10 211.6 [4004/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/listener_impl.cc.o +#10 211.8 [4005/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o +#10 211.8 [4006/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/alltoallv.cc.o +#10 211.8 [4007/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o +#10 211.8 [4008/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/factory.cc.o +#10 212.1 [4009/6823] Linking CXX static library lib/libtensorpipe.a +#10 212.1 [4010/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o +#10 212.2 [4011/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o +#10 212.3 [4012/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gatherv.cc.o +#10 212.4 [4013/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o +#10 212.5 [4014/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o +#10 212.5 [4015/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o +#10 212.5 [4016/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o +#10 212.7 [4017/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o +#10 212.9 [4018/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o +#10 212.9 [4019/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o +#10 213.1 [4020/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o +#10 213.2 [4021/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o +#10 213.2 [4022/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o +#10 213.2 [4023/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o +#10 213.3 [4024/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o +#10 213.6 [4025/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o +#10 213.7 [4026/6823] Running gen_proto.py on onnx/onnx.in.proto +#10 213.7 Processing /pytorch/third_party/onnx/onnx/onnx.in.proto +#10 213.7 Writing /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 213.7 Writing /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 +#10 213.7 Writing /pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h +#10 213.7 generating /pytorch/build/third_party/onnx/onnx/onnx_pb.py +#10 213.7 [4027/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o +#10 213.8 [4028/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o +#10 213.8 [4029/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o +#10 213.9 [4030/6823] Building C object third_party/foxi/CMakeFiles/foxi_loader.dir/foxi/onnxifi_loader.c.o +#10 213.9 [4031/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o +#10 213.9 [4032/6823] Linking C static library lib/libfoxi_loader.a +#10 213.9 [4033/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 214.0 [4034/6823] Running gen_proto.py on onnx/onnx-data.in.proto +#10 214.0 Processing /pytorch/third_party/onnx/onnx/onnx-data.in.proto +#10 214.0 Writing /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 214.0 Writing /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 +#10 214.0 Writing /pytorch/build/third_party/onnx/onnx/onnx-data.pb.h +#10 214.0 generating /pytorch/build/third_party/onnx/onnx/onnx_data_pb.py +#10 214.0 [4035/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/bfloat16.cpp.o +#10 214.1 [4036/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 214.1 [4037/6823] Running gen_proto.py on onnx/onnx-operators.in.proto +#10 214.1 Processing /pytorch/third_party/onnx/onnx/onnx-operators.in.proto +#10 214.1 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 214.1 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 +#10 214.1 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h +#10 214.1 generating /pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py +#10 214.3 [4038/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 214.4 [4039/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/loop.cc.o +#10 214.5 [4040/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o +#10 214.6 [4041/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/binary.cpp.o +#10 214.6 [4042/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o +#10 214.6 [4043/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/batch_normalization.cpp.o +#10 215.0 [4044/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o +#10 215.1 [4045/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc.cpp.o +#10 215.2 [4046/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o +#10 215.3 [4047/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o +#10 215.9 [4048/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc_iface.cpp.o +#10 216.5 [4049/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o +#10 216.6 [4050/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o +#10 216.6 [4051/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o +#10 216.7 [4052/6823] Linking CXX static library lib/libgloo.a +#10 216.8 [4053/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o +#10 217.1 [4054/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o +#10 217.3 [4055/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o +#10 217.6 [4056/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/__/__/caffe2/onnx/torch_ops/defs.cc.o +#10 217.7 [4057/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/__/__/caffe2/onnx/torch_ops/schema.cc.o +#10 217.7 [4058/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o +#10 218.2 [4059/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o +#10 220.3 [4060/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o +#10 222.0 [4061/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o +#10 222.1 [4062/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o +#10 222.2 [4063/6823] Linking CXX static library lib/libonnx_proto.a +#10 223.0 [4064/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_private.hip.o +#10 223.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 223.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 223.9 [4065/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip.hip.o +#10 223.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 223.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 225.6 [4066/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o +#10 226.8 [4067/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o +#10 227.4 [4068/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o +#10 227.5 [4069/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o +#10 229.3 [4070/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_local.cc.o +#10 229.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 229.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 231.0 [4071/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o +#10 231.4 [4072/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o +#10 231.9 [4073/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o +#10 232.0 [4074/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o +#10 232.7 [4075/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_broadcast_one_to_all.cc.o +#10 232.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 232.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 233.9 [4076/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o +#10 234.1 [4077/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_ring.cc.o +#10 234.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 234.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 236.5 [4078/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o +#10 236.7 [4079/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o +#10 237.0 [4080/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/nccl/gloo_hip_generated_nccl.hip.o +#10 237.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 237.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 237.4 [4081/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_ring_chunked.cc.o +#10 237.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 237.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 237.4 [4082/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o +#10 238.1 [4083/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o +#10 238.4 [4084/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o +#10 238.8 [4085/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o +#10 239.3 [4086/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDM.cc.o +#10 239.8 [4087/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o +#10 240.4 [4088/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o +#10 240.7 [4089/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o +#10 241.0 [4090/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o +#10 241.3 [4091/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o +#10 241.5 [4092/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o +#10 241.6 [4093/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o +#10 242.1 [4094/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o +#10 242.5 [4095/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_bcube.cc.o +#10 242.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 242.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 242.8 [4096/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o +#10 243.2 [4097/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o +#10 243.5 [4098/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o +#10 243.9 [4099/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o +#10 244.3 [4100/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o +#10 244.7 [4101/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o +#10 244.9 [4102/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o +#10 246.0 [4103/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o +#10 246.3 [4104/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_halving_doubling.cc.o +#10 246.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 246.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 246.4 [4105/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o +#10 246.5 [4106/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o +#10 246.6 [4107/6823] Linking CXX static library lib/libgloo_hip.a +#10 246.9 [4108/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_cache.cpp.o +#10 246.9 [4109/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/eltwise.cpp.o +#10 247.1 [4110/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o +#10 247.4 [4111/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/deconvolution.cpp.o +#10 247.4 [4112/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o +#10 247.6 [4113/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_debug.cpp.o +#10 247.7 [4114/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_debug_autogenerated.cpp.o +#10 247.7 [4115/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_threadpool.cpp.o +#10 247.9 [4116/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/concat.cpp.o +#10 248.3 [4117/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/prelu.cpp.o +#10 248.4 [4118/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/cache_blob_id.cpp.o +#10 248.7 [4119/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_attr.cpp.o +#10 248.7 [4120/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/broadcast_strategy.cpp.o +#10 248.8 [4121/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive.cpp.o +#10 248.9 [4122/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/convolution.cpp.o +#10 249.0 [4123/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/experimental.cpp.o +#10 249.0 [4124/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/convolution_pd.cpp.o +#10 249.4 [4125/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/fpmath_mode.cpp.o +#10 249.4 [4126/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/inner_product.cpp.o +#10 249.5 [4127/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify.cpp.o +#10 249.7 [4128/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/engine.cpp.o +#10 249.8 [4129/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/layer_normalization.cpp.o +#10 249.9 [4130/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/lrn.cpp.o +#10 249.9 [4131/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o +#10 250.0 [4132/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/matmul.cpp.o +#10 250.2 [4133/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o +#10 250.4 [4134/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_debug.cpp.o +#10 250.8 [4135/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/pooling.cpp.o +#10 250.9 [4136/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/gemm.cpp.o +#10 251.0 [4137/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_storage.cpp.o +#10 251.1 [4138/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_tracking.cpp.o +#10 251.4 [4139/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o +#10 251.7 [4140/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o +#10 251.7 [4141/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/reduction.cpp.o +#10 252.0 [4142/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory.cpp.o +#10 252.2 [4143/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/query.cpp.o +#10 252.2 [4144/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_exec_types.cpp.o +#10 252.3 [4145/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc_iterator.cpp.o +#10 252.4 [4146/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/resampling.cpp.o +#10 252.6 [4147/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_iface.cpp.o +#10 252.8 [4148/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/rw_mutex.cpp.o +#10 252.8 [4149/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/reorder.cpp.o +#10 252.8 [4150/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/rnn.cpp.o +#10 253.0 [4151/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/shuffle.cpp.o +#10 253.4 [4152/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/serialization.cpp.o +#10 253.4 [4153/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/scratchpad.cpp.o +#10 253.5 [4154/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/scratchpad_debug.cpp.o +#10 253.5 [4155/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/softmax.cpp.o +#10 253.5 [4156/6823] Building ASM object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/ittptmark64.S.o +#10 253.6 [4157/6823] Building C object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/jitprofiling.c.o +#10 253.7 [4158/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/utils.cpp.o +#10 254.2 [4159/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/sum.cpp.o +#10 254.3 [4160/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_desc_wrapper.cpp.o +#10 254.3 [4161/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/stream.cpp.o +#10 254.4 [4162/6823] Building C object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/ittnotify_static.c.o +#10 254.9 [4163/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_hashing.cpp.o +#10 255.1 [4164/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/binary_injector_utils.cpp.o +#10 255.2 [4165/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_batch_normalization_utils.cpp.o +#10 256.4 [4166/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_engine.cpp.o +#10 257.1 [4167/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/verbose.cpp.o +#10 258.5 [4168/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_binary_list.cpp.o +#10 259.6 [4169/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/bfloat16.cpp.o +#10 259.7 [4170/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_concat.cpp.o +#10 263.6 [4171/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_layer_normalization_list.cpp.o +#10 263.7 [4172/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_batch_normalization_list.cpp.o +#10 263.9 [4173/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_eltwise_list.cpp.o +#10 264.2 [4174/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_prelu_list.cpp.o +#10 264.4 [4175/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_lrn_list.cpp.o +#10 264.6 [4176/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_deconvolution_list.cpp.o +#10 265.3 [4177/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o +#10 265.6 [4178/6823] Linking CXX static library lib/libonnx.a +#10 266.2 [4179/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_reduction_list.cpp.o +#10 269.0 [4180/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_shuffle_list.cpp.o +#10 269.2 [4181/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/float16.cpp.o +#10 269.7 [4182/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_convolution.cpp.o +#10 269.9 [4183/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_resampling_list.cpp.o +#10 270.3 [4184/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_inner_product_list.cpp.o +#10 270.4 [4185/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_softmax_list.cpp.o +#10 271.6 [4186/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_pooling_list.cpp.o +#10 273.0 [4187/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.o +#10 273.0 [4188/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_convolution_utils.cpp.o +#10 273.0 [4189/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_inner_product_utils.cpp.o +#10 273.1 [4190/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_sum.cpp.o +#10 273.4 [4191/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_inner_product.cpp.o +#10 273.4 [4192/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_zero_pad.cpp.o +#10 274.3 [4193/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_convolution.cpp.o +#10 274.6 [4194/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_inner_product.cpp.o +#10 274.9 [4195/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/primitive_attr_postops.cpp.o +#10 275.4 [4196/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/platform.cpp.o +#10 275.9 [4197/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_convolution_utils.cpp.o +#10 276.8 [4198/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_binary.cpp.o +#10 277.2 [4199/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ncsp_batch_normalization.cpp.o +#10 277.8 [4200/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nspc_batch_normalization.cpp.o +#10 278.0 [4201/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nchw_pooling.cpp.o +#10 279.0 [4202/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nhwc_pooling.cpp.o +#10 280.2 [4203/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_convolution_int8.cpp.o +#10 280.7 [4204/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_deconvolution.cpp.o +#10 280.7 [4205/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_eltwise.cpp.o +#10 280.9 [4206/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_inner_product_int8.cpp.o +#10 281.3 [4207/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_inner_product.cpp.o +#10 282.7 [4208/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_layer_normalization.cpp.o +#10 283.0 [4209/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_prelu.cpp.o +#10 283.4 [4210/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_convolution.cpp.o +#10 283.5 [4211/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_shuffle.cpp.o +#10 283.6 [4212/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_resampling.cpp.o +#10 284.9 [4213/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/zero_point_utils.cpp.o +#10 284.9 [4214/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_softmax.cpp.o +#10 285.1 [4215/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_lrn.cpp.o +#10 285.7 [4216/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/f32/gemm_utils_f32.cpp.o +#10 286.0 [4217/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/gemm_pack.cpp.o +#10 286.3 [4218/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_layer_normalization.cpp.o +#10 286.3 [4219/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_batch_normalization.cpp.o +#10 286.8 [4220/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_reduction.cpp.o +#10 287.4 [4221/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/s8x8s32/ref_gemm_s8x8s32.cpp.o +#10 287.6 [4222/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/gemm.cpp.o +#10 288.9 [4223/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/f32/ref_gemm_f32.cpp.o +#10 289.3 [4224/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/s8x8s32/simple_gemm_s8s8s32.cpp.o +#10 289.4 [4225/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_sum.cpp.o +#10 289.7 [4226/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_pooling.cpp.o +#10 290.1 [4227/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_concat.cpp.o +#10 291.2 [4228/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/ref_matmul.cpp.o +#10 291.5 [4229/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder.cpp.o +#10 291.5 [4230/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/ref_matmul_int8.cpp.o +#10 292.1 [4231/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_f32_matmul.cpp.o +#10 292.4 [4232/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_bf16_matmul.cpp.o +#10 292.7 [4233/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_x8s8s32x_matmul.cpp.o +#10 293.0 [4234/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/cpu_matmul_list.cpp.o +#10 294.6 [4235/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_convolution_list.cpp.o +#10 295.2 [4236/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_bf16_s8.cpp.o +#10 295.6 [4237/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_f16.cpp.o +#10 295.9 [4238/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_f32_s8.cpp.o +#10 295.9 [4239/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_bf16.cpp.o +#10 296.4 [4240/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_s32.cpp.o +#10 296.5 [4241/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_bf16.cpp.o +#10 296.8 [4242/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f16.cpp.o +#10 298.2 [4243/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_f32.cpp.o +#10 298.9 [4244/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_s8_s8.cpp.o +#10 299.3 [4245/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_u8.cpp.o +#10 300.2 [4246/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_s8.cpp.o +#10 300.9 [4247/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_u8.cpp.o +#10 301.1 [4248/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_s32.cpp.o +#10 302.4 [4249/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_gru.cpp.o +#10 303.1 [4250/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/brgemm_cell_common.cpp.o +#10 303.2 [4251/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_gru_lbr.cpp.o +#10 303.2 [4252/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_common.cpp.o +#10 303.5 [4253/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_s8.cpp.o +#10 303.5 [4254/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_gru_lbr.cpp.o +#10 303.6 [4255/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_gru.cpp.o +#10 303.8 [4256/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/jit_utils/jit_utils.cpp.o +#10 304.1 [4257/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/jit_utils/linux_perf/linux_perf.cpp.o +#10 304.4 [4258/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_lstm_projection.cpp.o +#10 304.7 [4259/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_rnn.cpp.o +#10 305.2 [4260/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_lstm.cpp.o +#10 305.6 [4261/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_resampling.cpp.o +#10 305.8 [4262/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/rnn_utils.cpp.o +#10 306.3 [4263/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/brgemm_utils.cpp.o +#10 306.9 [4264/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/brgemm.cpp.o +#10 307.7 [4265/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/amx_tile_configure.cpp.o +#10 308.2 [4266/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_isa_traits.cpp.o +#10 309.9 [4267/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_barrier.cpp.o +#10 311.1 [4268/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brdgmm_kernel.cpp.o +#10 312.0 [4269/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_reducer.cpp.o +#10 312.5 [4270/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/amx/jit_avx512_core_amx_gemm_kern.cpp.o +#10 312.5 [4271/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/amx/jit_avx512_core_amx_copy_kern.cpp.o +#10 312.9 [4272/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brgemm_amx_uker.cpp.o +#10 313.4 [4273/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_an_kern_autogen.cpp.o +#10 313.7 [4274/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_gemm_bf16bf16f32_kern.cpp.o +#10 315.0 [4275/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_gemv_bf16bf16f32_kern.cpp.o +#10 315.4 [4276/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_bn_kern_autogen.cpp.o +#10 315.5 [4277/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_at_kern_autogen.cpp.o +#10 316.9 [4278/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_bt_kern_autogen.cpp.o +#10 317.4 [4279/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_bn_kern_autogen.cpp.o +#10 317.7 [4280/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_bt_kern_autogen.cpp.o +#10 318.0 [4281/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_an_kern_autogen.cpp.o +#10 320.6 [4282/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_bt_kern_autogen.cpp.o +#10 320.7 [4283/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_bn_kern_autogen.cpp.o +#10 322.9 [4284/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_at_kern_autogen.cpp.o +#10 324.3 [4285/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_at_kern_autogen.cpp.o +#10 324.9 [4286/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_an_kern_autogen.cpp.o +#10 327.5 [4287/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_common_gemm_f32.cpp.o +#10 327.5 [4288/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_bn_kern_autogen.cpp.o +#10 329.6 [4289/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_an_kern_autogen.cpp.o +#10 329.8 [4290/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_bt_kern_autogen.cpp.o +#10 330.7 [4291/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brgemm_kernel.cpp.o +#10 331.2 [4292/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_kernel_sgemm_kern.cpp.o +#10 331.5 [4293/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_at_kern_part1_autogen.cpp.o +#10 331.7 [4294/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_gemm_smalln_tn_f32_kern.cpp.o +#10 332.1 [4295/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_rnn_list.cpp.o +#10 332.3 [4296/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_bn_kern_autogen.cpp.o +#10 333.4 [4297/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_an_kern_autogen.cpp.o +#10 334.6 [4298/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_at_kern_part2_autogen.cpp.o +#10 334.9 [4299/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_at_kern_autogen.cpp.o +#10 335.7 [4300/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_bt_kern_autogen.cpp.o +#10 336.1 [4301/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_gemv_t_f32_kern.cpp.o +#10 339.0 [4302/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_at_kern_autogen.cpp.o +#10 339.1 [4303/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_bn_kern_autogen.cpp.o +#10 339.8 [4304/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_gemm_f32.cpp.o +#10 340.2 [4305/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_an_kern_autogen.cpp.o +#10 340.9 [4306/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_bt_kern_autogen.cpp.o +#10 341.5 [4307/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_gemv_t_f32_kern.cpp.o +#10 342.3 [4308/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_gemv_n_f32_kern.cpp.o +#10 343.7 [4309/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_pack.cpp.o +#10 343.8 [4310/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_sgemm_kern_part1_autogen.cpp.o +#10 344.2 [4311/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_b0_sgemm_kern_part1_autogen.cpp.o +#10 344.9 [4312/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemv_driver.cpp.o +#10 345.7 [4313/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_info.cpp.o +#10 347.7 [4314/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_b0_sgemm_kern_part2_autogen.cpp.o +#10 348.2 [4315/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_kernel_sgemm_kern_autogen.cpp.o +#10 348.5 [4316/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_an_kern_autogen.cpp.o +#10 348.6 [4317/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_kernel_b0_sgemm_kern_autogen.cpp.o +#10 348.7 [4318/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_bn_kern_autogen.cpp.o +#10 348.8 [4319/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_bt_kern_autogen.cpp.o +#10 349.0 [4320/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_gemm_s8u8s32_kern.cpp.o +#10 349.4 [4321/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_driver.cpp.o +#10 349.4 [4322/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_at_kern_autogen.cpp.o +#10 350.6 [4323/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_an_kern_autogen.cpp.o +#10 352.7 [4324/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_bn_kern_autogen.cpp.o +#10 352.8 [4325/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_bn_kern_autogen.cpp.o +#10 353.4 [4326/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_bt_kern_autogen.cpp.o +#10 353.5 [4327/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_bt_kern_autogen.cpp.o +#10 353.7 [4328/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o +#10 353.7 [4329/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_an_kern_autogen.cpp.o +#10 353.9 [4330/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_at_kern_autogen.cpp.o +#10 354.6 [4331/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_at_kern_autogen.cpp.o +#10 354.8 [4332/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_bn_kern_autogen.cpp.o +#10 354.9 [4333/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_an_kern_autogen.cpp.o +#10 355.7 [4334/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_sgemm_kern_part2_autogen.cpp.o +#10 356.7 [4335/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_gemv_s8x8s32.cpp.o +#10 356.7 [4336/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_at_kern_autogen.cpp.o +#10 357.8 [4337/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_bt_kern_autogen.cpp.o +#10 358.5 [4338/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_bn_kern_autogen.cpp.o +#10 358.7 [4339/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_bt_kern_autogen.cpp.o +#10 359.0 [4340/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_kernel_gemv_s8x8s32_kern.cpp.o +#10 359.1 [4341/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_an_kern_autogen.cpp.o +#10 359.5 [4342/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_gemm_s8u8s32_kern.cpp.o +#10 360.5 [4343/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_bn_kern_autogen.cpp.o +#10 361.0 [4344/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_an_kern_autogen.cpp.o +#10 362.0 [4345/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_bt_kern_autogen.cpp.o +#10 362.8 [4346/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_at_kern_autogen.cpp.o +#10 365.3 [4347/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_an_kern_autogen.cpp.o +#10 365.6 [4348/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_at_kern_autogen.cpp.o +#10 366.8 [4349/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.o +#10 366.9 [4350/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 367.3 [4351/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_at_kern_autogen.cpp.o +#10 367.4 [4352/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_bn_kern_autogen.cpp.o +#10 367.8 [4353/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 367.8 [4354/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 367.9 [4355/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 368.1 [4356/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_gemm_s8u8s32_kern_autogen.cpp.o +#10 369.0 [4357/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 369.6 [4358/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_bt_kern_autogen.cpp.o +#10 369.9 [4359/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 370.7 [4360/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_an_kern_autogen.cpp.o +#10 370.8 [4361/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_bn_kern_autogen.cpp.o +#10 372.4 [4362/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_bt_kern_autogen.cpp.o +#10 372.9 [4363/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_at_kern_autogen.cpp.o +#10 374.4 [4364/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 374.5 [4365/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.o +#10 375.2 [4366/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_an_kern_autogen.cpp.o +#10 375.6 [4367/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_at_kern_autogen.cpp.o +#10 375.7 [4368/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 375.9 [4369/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 376.5 [4370/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_bn_kern_autogen.cpp.o +#10 377.1 [4371/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 377.3 [4372/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 377.4 [4373/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_gemm_s8u8s32_kern_autogen.cpp.o +#10 377.5 [4374/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_bt_kern_autogen.cpp.o +#10 377.7 [4375/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 379.0 [4376/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_an_kern_autogen.cpp.o +#10 379.9 [4377/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_bn_kern_autogen.cpp.o +#10 379.9 [4378/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_bt_kern_autogen.cpp.o +#10 380.5 [4379/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_at_kern_autogen.cpp.o +#10 380.5 [4380/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/injector_utils.cpp.o +#10 380.9 [4381/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/ip_convolution.cpp.o +#10 381.5 [4382/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_rnn.cpp.o +#10 384.4 [4383/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_convolution.cpp.o +#10 385.0 [4384/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_postops_injector.cpp.o +#10 385.4 [4385/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_1x1_conv_kernel_f32.cpp.o +#10 385.6 [4386/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm_bf16_inner_product.cpp.o +#10 387.7 [4387/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_1x1_conv_kernel.cpp.o +#10 388.3 [4388/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_1x1_convolution.cpp.o +#10 388.9 [4389/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_1x1_convolution.cpp.o +#10 389.0 [4390/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm_bf16_convolution.cpp.o +#10 389.6 [4391/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_conv_kernel_f32.cpp.o +#10 390.7 [4392/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_convolution.cpp.o +#10 391.6 [4393/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_1x1_convolution.cpp.o +#10 391.6 [4394/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_resampling.cpp.o +#10 392.3 [4395/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_deconvolution.cpp.o +#10 392.6 [4396/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_1x1_conv_kernel.cpp.o +#10 396.5 [4397/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_conv_kernel.cpp.o +#10 396.5 [4398/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16cvt.cpp.o +#10 397.0 [4399/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_binary_injector.cpp.o +#10 398.1 [4400/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_convolution.cpp.o +#10 398.3 [4401/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_convolution.cpp.o +#10 398.7 [4402/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_1x1_conv_kernel.cpp.o +#10 399.8 [4403/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_sum.cpp.o +#10 401.0 [4404/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_dw_conv_kernel.cpp.o +#10 401.2 [4405/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_4x3.cpp.o +#10 401.4 [4406/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_fp16cvt.cpp.o +#10 401.5 [4407/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_conv_kernel.cpp.o +#10 402.3 [4408/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_2x3.cpp.o +#10 402.7 [4409/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_1x1_convolution.cpp.o +#10 404.0 [4410/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_1x1_convolution.cpp.o +#10 405.1 [4411/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_convolution.cpp.o +#10 405.7 [4412/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brdgmm_dw_conv.cpp.o +#10 406.0 [4413/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_4x3_kernel.cpp.o +#10 406.5 [4414/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_eltwise_injector.cpp.o +#10 406.9 [4415/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o +#10 410.3 [4416/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_conv_kernel.cpp.o +#10 410.4 [4417/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_bwd.cpp.o +#10 410.7 [4418/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_comp_pad_kernel.cpp.o +#10 411.4 [4419/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_1x1_conv.cpp.o +#10 411.5 [4420/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_trans_kernel.cpp.o +#10 411.5 [4421/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_inner_product_utils.cpp.o +#10 411.7 [4422/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_utils.cpp.o +#10 411.7 [4423/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_1x1_conv_kernel.cpp.o +#10 412.4 [4424/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_bwd_w.cpp.o +#10 413.4 [4425/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_conv_kernel.cpp.o +#10 414.6 [4426/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_convolution.cpp.o +#10 414.6 [4427/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_deconvolution.cpp.o +#10 415.0 [4428/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_1x1_convolution.cpp.o +#10 415.6 [4429/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.o +#10 418.3 [4430/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_x8s8s32x_convolution_utils.cpp.o +#10 418.5 [4431/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_transpose_utils.cpp.o +#10 419.0 [4432/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_transpose_utils.cpp.o +#10 419.4 [4433/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_conv_kernel_f32.cpp.o +#10 419.5 [4434/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_1x1_conv_kernel_f32.cpp.o +#10 421.7 [4435/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_binary.cpp.o +#10 422.4 [4436/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_deconv_zp_pad_str_kernel.cpp.o +#10 422.6 [4437/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_inner_product.cpp.o +#10 422.7 [4438/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_inner_product_utils.cpp.o +#10 423.6 [4439/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_batch_normalization_s8.cpp.o +#10 426.8 [4440/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o +#10 427.1 [4441/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_conv_kernel_utils.cpp.o +#10 427.3 [4442/6823] Linking CXX static library lib/libfbgemm.a +#10 427.9 [4443/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reduction.cpp.o +#10 429.9 [4444/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_eltwise_int.cpp.o +#10 429.9 [4445/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reorder_utils.cpp.o +#10 431.2 [4446/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_eltwise.cpp.o +#10 431.7 [4447/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv.cpp.o +#10 431.9 [4448/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_batch_normalization.cpp.o +#10 432.8 [4449/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_binary_kernel.cpp.o +#10 432.8 [4450/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_convolution.cpp.o +#10 432.8 [4451/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_i8i8_pooling.cpp.o +#10 433.0 [4452/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_layer_normalization.cpp.o +#10 433.1 [4453/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_conv_kernel_f32.cpp.o +#10 436.1 [4454/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_resampling.cpp.o +#10 438.0 [4455/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_pooling.cpp.o +#10 439.1 [4456/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reduction_kernel.cpp.o +#10 439.3 [4457/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reorder.cpp.o +#10 440.2 [4458/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_convolution.cpp.o +#10 440.7 [4459/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn.cpp.o +#10 441.1 [4460/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_pool_kernel.cpp.o +#10 441.5 [4461/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_base.cpp.o +#10 443.5 [4462/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_softmax.cpp.o +#10 443.9 [4463/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_blocked.cpp.o +#10 444.2 [4464/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_nhwc.cpp.o +#10 444.3 [4465/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_resampling_kernel.cpp.o +#10 444.5 [4466/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_1x1_conv_kernel.cpp.o +#10 444.5 [4467/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_base.cpp.o +#10 445.2 [4468/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_blocked.cpp.o +#10 445.6 [4469/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_1x1_convolution.cpp.o +#10 446.4 [4470/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_nhwc.cpp.o +#10 448.2 [4471/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul_utils.cpp.o +#10 448.6 [4472/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_utils.cpp.o +#10 449.9 [4473/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_deconvolution.cpp.o +#10 450.0 [4474/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_base_kernel.cpp.o +#10 450.2 [4475/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_conv_kernel.cpp.o +#10 450.2 [4476/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_backward.cpp.o +#10 450.2 [4477/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_uni_lrn.cpp.o +#10 450.2 [4478/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_forward.cpp.o +#10 450.6 [4479/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_tbb_batch_normalization.cpp.o +#10 450.9 [4480/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_utils.cpp.o +#10 451.4 [4481/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_reduction_kernel.cpp.o +#10 452.0 [4482/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_uni_prelu_backward_kernel.cpp.o +#10 452.1 [4483/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_bwd.cpp.o +#10 453.0 [4484/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul_copy_utils.cpp.o +#10 453.3 [4485/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_reorders.cpp.o +#10 453.5 [4486/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_uni_prelu_forward_kernel.cpp.o +#10 455.6 [4487/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/rnn_brgemm_utils.cpp.o +#10 456.0 [4488/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/constant_cache.cpp.o +#10 456.3 [4489/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul.cpp.o +#10 456.3 [4490/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_brgemm_transpose_single_row.cpp.o +#10 456.5 [4491/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_uni_lrn_kernel.cpp.o +#10 456.5 [4492/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/shuffle/jit_uni_shuffle.cpp.o +#10 456.7 [4493/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_gates_reduction.cpp.o +#10 456.8 [4494/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_fwd.cpp.o +#10 456.9 [4495/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/dnnl_shape_infer.cpp.o +#10 457.3 [4496/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/common.cpp.o +#10 457.3 [4497/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_diff_weights_peephole.cpp.o +#10 458.8 [4498/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/utils/jit_io_helper.cpp.o +#10 458.8 [4499/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/shuffle/jit_uni_shuffle_kernel.cpp.o +#10 458.8 [4500/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/fusion_info.cpp.o +#10 459.8 [4501/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/compile_ops.cpp.o +#10 460.2 [4502/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/constant_propagation.cpp.o +#10 460.5 [4503/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/layout_propagation.cpp.o +#10 461.6 [4504/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/subgraph.cpp.o +#10 461.9 [4505/6823] Linking CXX static library lib/libdnnl.a +#10 462.0 [4506/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/layout_propagator.cpp.o +#10 463.0 [4507/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/insert_ops.cpp.o +#10 463.5 [4508/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/lower.cpp.o +#10 465.2 [4509/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/memory_planning.cpp.o +#10 465.5 [4510/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/op_executable.cpp.o +#10 466.5 [4511/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/utils.cpp.o +#10 467.9 [4512/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/bn_fusion.cpp.o +#10 468.7 [4513/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/binary_fusion.cpp.o +#10 469.4 [4514/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/concat_fusion.cpp.o +#10 470.1 [4515/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/transform.cpp.o +#10 471.4 [4516/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/layernorm_fusion.cpp.o +#10 472.1 [4517/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/eltwise_fusion.cpp.o +#10 472.5 [4518/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/interpolate_fusion.cpp.o +#10 472.9 [4519/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/conv_block_fusion.cpp.o +#10 473.2 [4520/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/convtranspose_fusion.cpp.o +#10 473.4 [4521/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/debug.cpp.o +#10 473.4 [4522/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/id.cpp.o +#10 474.8 [4523/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/dnnl_backend.cpp.o +#10 474.8 [4524/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/conv_post_ops_fusion.cpp.o +#10 475.3 [4525/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/rw_mutex.cpp.o +#10 475.9 [4526/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/quantize_fusion.cpp.o +#10 476.4 [4527/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/reduction_fusion.cpp.o +#10 476.6 [4528/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/utils.cpp.o +#10 476.8 [4529/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/pool_fusion.cpp.o +#10 477.3 [4530/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/nested_matcher.cpp.o +#10 477.6 [4531/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/pass_manager.cpp.o +#10 477.8 [4532/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/shuffle_fusion.cpp.o +#10 478.0 [4533/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/engine.cpp.o +#10 478.1 [4534/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/allocator.cpp.o +#10 478.3 [4535/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/pbuilder.cpp.o +#10 478.3 [4536/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/reorder_fusion.cpp.o +#10 478.6 [4537/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/verbose.cpp.o +#10 478.9 [4538/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/backend.cpp.o +#10 479.0 [4539/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/fake/CMakeFiles/dnnl_graph_backend_fake.dir/fake_backend.cpp.o +#10 480.0 [4540/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/logical_tensor.cpp.o +#10 480.6 [4541/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/softmax_fusion.cpp.o +#10 480.6 [4542/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/op.cpp.o +#10 481.0 [4543/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/stream.cpp.o +#10 481.0 [4544/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_impl.cpp.o +#10 481.1 [4545/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/sum_fusion.cpp.o +#10 481.4 [4546/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/tensor.cpp.o +#10 481.4 [4547/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_cache.cpp.o +#10 481.6 [4548/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_hashing.cpp.o +#10 481.7 [4549/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/matmul_fusion.cpp.o +#10 482.0 [4550/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/value.cpp.o +#10 482.1 [4551/6823] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o +#10 482.3 [4552/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/type_constraint.cpp.o +#10 482.4 [4553/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition.cpp.o +#10 482.9 [4554/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o +#10 483.1 [4555/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/graph.cpp.o +#10 484.1 [4556/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/RoctracerLogger.cpp.o +#10 484.1 In file included from ../third_party/kineto/libkineto/src/RoctracerLogger.h:22, +#10 484.1 from ../third_party/kineto/libkineto/src/RoctracerLogger.cpp:9: +#10 484.1 /opt/rocm/include/roctracer/roctracer_hcc.h:22:96: note: ‘#pragma message: This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.’ +#10 484.1 22 | "This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.") +#10 484.1 | ^ +#10 484.4 [4557/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/shape_infer.cpp.o +#10 485.3 [4558/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o +#10 485.7 [4559/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o +#10 485.7 In file included from ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:12, +#10 485.7 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.h:21, +#10 485.7 from ../third_party/kineto/libkineto/src/DaemonConfigLoader.cpp:16: +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryPeekMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:155:33: required from here +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:174:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 485.7 174 | throw std::runtime_error(std::strerror(errno)); +#10 485.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘const char* dynolog::ipcfabric::EndPoint::getName(const TCtxt&) const [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:170:43: required from here +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:185:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 485.7 185 | throw std::invalid_argument( +#10 485.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 186 | "Unexpected socket name: " + std::string(ctxt.msg_name.sun_path) + +#10 485.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 187 | ". Expected to start with " + std::string(socket_dir)); +#10 485.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:192:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 485.7 192 | throw std::invalid_argument( +#10 485.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 193 | "Expected abstract socket, got " + +#10 485.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 194 | std::string(ctxt.msg_name.sun_path)); +#10 485.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryRcvMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:178:34: required from here +#10 485.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:160:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 485.7 160 | throw std::runtime_error(std::strerror(errno)); +#10 485.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 485.7 [4560/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o +#10 485.8 [4561/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o +#10 486.2 [4562/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o +#10 487.1 [4563/6823] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o +#10 487.1 [4564/6823] Linking CXX static library lib/libfmt.a +#10 487.3 [4565/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o +#10 487.6 [4566/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o +#10 487.7 [4567/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o +#10 487.7 In file included from ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:12, +#10 487.7 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.h:21, +#10 487.7 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.cpp:11: +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryPeekMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:155:33: required from here +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:174:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 487.7 174 | throw std::runtime_error(std::strerror(errno)); +#10 487.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘const char* dynolog::ipcfabric::EndPoint::getName(const TCtxt&) const [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:170:43: required from here +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:185:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 487.7 185 | throw std::invalid_argument( +#10 487.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 186 | "Unexpected socket name: " + std::string(ctxt.msg_name.sun_path) + +#10 487.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 187 | ". Expected to start with " + std::string(socket_dir)); +#10 487.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:192:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 487.7 192 | throw std::invalid_argument( +#10 487.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 193 | "Expected abstract socket, got " + +#10 487.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 194 | std::string(ctxt.msg_name.sun_path)); +#10 487.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryRcvMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:178:34: required from here +#10 487.7 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:160:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 487.7 160 | throw std::runtime_error(std::strerror(errno)); +#10 487.7 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 488.6 [4568/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o +#10 488.7 [4569/6823] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o +#10 488.8 [4570/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o +#10 489.2 [4571/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o +#10 489.3 [4572/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/RoctracerActivityApi.cpp.o +#10 489.3 In file included from ../third_party/kineto/libkineto/src/RoctracerLogger.h:22, +#10 489.3 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:15: +#10 489.3 /opt/rocm/include/roctracer/roctracer_hcc.h:22:96: note: ‘#pragma message: This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.’ +#10 489.3 22 | "This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.") +#10 489.3 | ^ +#10 489.3 In file included from ../third_party/fmt/include/fmt/format.h:48, +#10 489.3 from ../third_party/kineto/libkineto/include/GenericTraceActivity.h:11, +#10 489.3 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.h:22, +#10 489.3 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:14: +#10 489.3 ../third_party/fmt/include/fmt/core.h: In substitution of ‘template using mapped_type_constant = fmt::v9::detail::type_constant().map(declval())), typename Context::char_type> [with T = hipMemcpyKind; Context = fmt::v9::basic_format_context]’: +#10 489.3 ../third_party/fmt/include/fmt/core.h:1729:68: required from ‘constexpr long long unsigned int fmt::v9::detail::encode_types() [with Context = fmt::v9::basic_format_context; Arg = hipMemcpyKind; Args = {}]’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1730:41: required from ‘constexpr long long unsigned int fmt::v9::detail::encode_types() [with Context = fmt::v9::basic_format_context; Arg = std::__cxx11::basic_string; Args = {hipMemcpyKind}]’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1886:58: required from ‘constexpr const long long unsigned int fmt::v9::format_arg_store, std::__cxx11::basic_string, std::allocator >, hipMemcpyKind>::desc’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1999:63: required from ‘constexpr fmt::v9::basic_format_args::basic_format_args(const fmt::v9::format_arg_store&) [with Args = {std::__cxx11::basic_string, std::allocator >, hipMemcpyKind}; Context = fmt::v9::basic_format_context]’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:3206:17: required from ‘std::string fmt::v9::format(fmt::v9::format_string, T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; std::string = std::__cxx11::basic_string; fmt::v9::format_string = fmt::v9::basic_format_string, std::allocator >&, const hipMemcpyKind&>]’ +#10 489.3 ../third_party/kineto/libkineto/include/GenericTraceActivity.h:95:36: required from ‘void libkineto::GenericTraceActivity::addMetadata(const string&, const ValType&) [with ValType = hipMemcpyKind; std::string = std::__cxx11::basic_string]’ +#10 489.3 ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:167:18: required from here +#10 489.3 ../third_party/fmt/include/fmt/core.h:1530:53: warning: ‘constexpr decltype (declval >().map(static_cast >(val))) fmt::v9::detail::arg_mapper::map(const T&) [with T = hipMemcpyKind; typename std::enable_if<((((std::is_enum::value && std::is_convertible::value) && (! fmt::v9::detail::has_format_as::value)) && (! std::is_constructible >::value)) && (! fmt::v9::detail::has_fallback_formatter::value)), int>::type = 0; Context = fmt::v9::basic_format_context; decltype (declval >().map(static_cast >(val))) = unsigned int; fmt::v9::detail::arg_mapper = fmt::v9::detail::arg_mapper >; fmt::v9::underlying_t = unsigned int]’ is deprecated [-Wdeprecated-declarations] +#10 489.3 1530 | type_constant().map(std::declval())), +#10 489.3 | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1470:48: note: declared here +#10 489.3 1470 | FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) +#10 489.3 | ^~~ +#10 489.3 ../third_party/fmt/include/fmt/core.h: In instantiation of ‘constexpr fmt::v9::detail::value fmt::v9::detail::make_value(T&&) [with Context = fmt::v9::basic_format_context; T = const hipMemcpyKind&]’: +#10 489.3 ../third_party/fmt/include/fmt/core.h:1777:29: required from ‘constexpr fmt::v9::detail::value fmt::v9::detail::make_arg(T&&) [with bool IS_PACKED = true; Context = fmt::v9::basic_format_context; fmt::v9::detail::type = fmt::v9::detail::type::uint_type; T = const hipMemcpyKind&; typename std::enable_if::type = 0]’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1901:77: required from ‘constexpr fmt::v9::format_arg_store::format_arg_store(T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; Context = fmt::v9::basic_format_context; Args = {std::__cxx11::basic_string, std::allocator >, hipMemcpyKind}]’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1918:31: required from ‘constexpr fmt::v9::format_arg_store::type>::type ...> fmt::v9::make_format_args(Args&& ...) [with Context = fmt::v9::basic_format_context; Args = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}]’ +#10 489.3 ../third_party/fmt/include/fmt/core.h:3206:44: required from ‘std::string fmt::v9::format(fmt::v9::format_string, T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; std::string = std::__cxx11::basic_string; fmt::v9::format_string = fmt::v9::basic_format_string, std::allocator >&, const hipMemcpyKind&>]’ +#10 489.3 ../third_party/kineto/libkineto/include/GenericTraceActivity.h:95:36: required from ‘void libkineto::GenericTraceActivity::addMetadata(const string&, const ValType&) [with ValType = hipMemcpyKind; std::string = std::__cxx11::basic_string]’ +#10 489.3 ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:167:18: required from here +#10 489.3 ../third_party/fmt/include/fmt/core.h:1735:46: warning: ‘constexpr decltype (declval >().map(static_cast >(val))) fmt::v9::detail::arg_mapper::map(const T&) [with T = hipMemcpyKind; typename std::enable_if<((((std::is_enum::value && std::is_convertible::value) && (! fmt::v9::detail::has_format_as::value)) && (! std::is_constructible >::value)) && (! fmt::v9::detail::has_fallback_formatter::value)), int>::type = 0; Context = fmt::v9::basic_format_context; decltype (declval >().map(static_cast >(val))) = unsigned int; fmt::v9::detail::arg_mapper = fmt::v9::detail::arg_mapper >; fmt::v9::underlying_t = unsigned int]’ is deprecated [-Wdeprecated-declarations] +#10 489.3 1735 | const auto& arg = arg_mapper().map(FMT_FORWARD(val)); +#10 489.3 | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +#10 489.3 ../third_party/fmt/include/fmt/core.h:1470:48: note: declared here +#10 489.3 1470 | FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) +#10 489.3 | ^~~ +#10 489.8 [4573/6823] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o +#10 489.9 [4574/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/op_schema.cpp.o +#10 490.4 [4575/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o +#10 490.4 [4576/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o +#10 490.7 [4577/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o +#10 490.8 [4578/6823] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o +#10 490.8 [4579/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o +#10 490.8 [4580/6823] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o +#10 490.8 [4581/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o +#10 491.1 [4582/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o +#10 491.2 [4583/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o +#10 491.3 [4584/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o +#10 491.5 [4585/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o +#10 491.6 [4586/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o +#10 491.9 [4587/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o +#10 492.0 [4588/6823] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o +#10 492.0 [4589/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o +#10 492.1 [4590/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o +#10 492.4 [4591/6823] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o +#10 492.4 [4592/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o +#10 492.6 [4593/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o +#10 492.6 [4594/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o +#10 492.7 [4595/6823] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o +#10 492.7 [4596/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o +#10 492.8 [4597/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o +#10 492.9 [4598/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o +#10 493.0 [4599/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o +#10 493.0 [4600/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o +#10 493.3 [4601/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o +#10 493.5 [4602/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o +#10 493.7 [4603/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o +#10 493.8 [4604/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o +#10 493.8 [4605/6823] Linking CXX static library lib/libkineto.a +#10 493.8 [4606/6823] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o +#10 493.9 [4607/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o +#10 494.1 [4608/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o +#10 494.1 [4609/6823] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o +#10 494.1 [4610/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o +#10 494.2 [4611/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o +#10 494.6 [4612/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o +#10 494.6 [4613/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o +#10 494.7 [4614/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o +#10 494.8 [4615/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/single_op_pattern.cpp.o +#10 494.8 [4616/6823] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o +#10 495.0 [4617/6823] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o +#10 495.0 [4618/6823] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o +#10 495.1 [4619/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o +#10 495.1 [4620/6823] Linking CXX static library lib/libdnnl_graph.a +#10 495.2 [4621/6823] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o +#10 495.4 [4622/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o +#10 495.4 [4623/6823] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o +#10 495.7 [4624/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o +#10 495.7 [4625/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o +#10 495.8 [4626/6823] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o +#10 495.8 [4627/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o +#10 495.9 [4628/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o +#10 495.9 [4629/6823] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o +#10 495.9 [4630/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o +#10 495.9 [4631/6823] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o +#10 496.0 [4632/6823] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o +#10 496.1 [4633/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o +#10 496.2 [4634/6823] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o +#10 496.2 [4635/6823] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o +#10 496.2 [4636/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o +#10 496.4 [4637/6823] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o +#10 496.4 [4638/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o +#10 496.4 [4639/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o +#10 496.4 [4640/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o +#10 496.5 [4641/6823] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o +#10 496.6 [4642/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o +#10 496.7 [4643/6823] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o +#10 496.8 [4644/6823] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o +#10 496.9 [4645/6823] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o +#10 497.2 [4646/6823] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o +#10 497.2 [4647/6823] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o +#10 497.3 [4648/6823] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o +#10 497.8 [4649/6823] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o +#10 498.6 [4650/6823] Building CXX object c10/test/CMakeFiles/c10_SymInt_test.dir/core/SymInt_test.cpp.o +#10 498.7 [4651/6823] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/core/StreamGuard_test.cpp.o +#10 498.7 [4652/6823] Building CXX object c10/test/CMakeFiles/c10_Bitset_test.dir/util/Bitset_test.cpp.o +#10 498.9 [4653/6823] Building CXX object c10/test/CMakeFiles/c10_CompileTimeFunctionPointer_test.dir/core/CompileTimeFunctionPointer_test.cpp.o +#10 499.1 [4654/6823] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o +#10 499.2 [4655/6823] Building CXX object c10/test/CMakeFiles/c10_tempfile_test.dir/util/tempfile_test.cpp.o +#10 499.3 [4656/6823] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/util/registry_test.cpp.o +#10 500.0 [4657/6823] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/core/impl/InlineStreamGuard_test.cpp.o +#10 500.4 [4658/6823] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o +#10 500.4 [4659/6823] Building CXX object c10/test/CMakeFiles/c10_complex_math_test.dir/util/complex_math_test.cpp.o +#10 500.5 [4660/6823] Building CXX object c10/test/CMakeFiles/c10_complex_test.dir/util/complex_test.cpp.o +#10 500.5 In file included from ../c10/test/util/complex_test.cpp:1: +#10 500.5 ../c10/test/util/complex_test_common.h: In member function ‘virtual void memory::TestMemory_ReinterpretCast_Test::TestBody()’: +#10 500.5 ../c10/test/util/complex_test_common.h:38:25: warning: ‘z’ is used uninitialized [-Wuninitialized] +#10 500.5 38 | c10::complex zz = *reinterpret_cast*>(&z); +#10 500.5 | ^~ +#10 500.5 ../c10/test/util/complex_test_common.h:37:25: note: ‘z’ declared here +#10 500.5 37 | std::complex z(1, 2); +#10 500.5 | ^ +#10 501.1 [4661/6823] Building CXX object c10/test/CMakeFiles/c10_Device_test.dir/core/Device_test.cpp.o +#10 501.4 [4662/6823] Building CXX object c10/test/CMakeFiles/c10_ThreadLocal_test.dir/util/ThreadLocal_test.cpp.o +#10 501.4 [4663/6823] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/core/DeviceGuard_test.cpp.o +#10 501.9 [4664/6823] Building CXX object c10/test/CMakeFiles/c10_ConstexprCrc_test.dir/util/ConstexprCrc_test.cpp.o +#10 502.0 [4665/6823] Building CXX object c10/test/CMakeFiles/c10_C++17_test.dir/util/C++17_test.cpp.o +#10 502.1 [4666/6823] Building CXX object c10/test/CMakeFiles/c10_DeadlockDetection_test.dir/util/DeadlockDetection_test.cpp.o +#10 502.3 [4667/6823] Building CXX object c10/test/CMakeFiles/c10_SizesAndStrides_test.dir/core/impl/SizesAndStrides_test.cpp.o +#10 502.4 [4668/6823] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o +#10 502.4 [4669/6823] Building CXX object c10/test/CMakeFiles/c10_Half_test.dir/util/Half_test.cpp.o +#10 502.7 [4670/6823] Linking CXX shared library lib/libc10.so +#10 502.7 [4671/6823] Building CXX object c10/test/CMakeFiles/c10_DispatchKeySet_test.dir/core/DispatchKeySet_test.cpp.o +#10 502.8 [4672/6823] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o +#10 502.9 [4673/6823] Linking CXX executable bin/c10_flags_test +#10 503.1 [4674/6823] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o +#10 503.1 [4675/6823] Linking CXX executable bin/c10_exception_test +#10 503.1 [4676/6823] Building CXX object c10/test/CMakeFiles/c10_LeftRight_test.dir/util/LeftRight_test.cpp.o +#10 503.1 [4677/6823] Linking CXX executable bin/c10_intrusive_ptr_test +#10 503.2 [4678/6823] Linking CXX executable bin/c10_logging_test +#10 503.3 [4679/6823] Linking CXX executable bin/c10_bfloat16_test +#10 503.3 [4680/6823] Linking CXX executable bin/c10_string_view_test +#10 503.3 [4681/6823] Linking CXX executable bin/c10_either_test +#10 503.4 [4682/6823] Linking CXX executable bin/c10_irange_test +#10 503.4 [4683/6823] Linking CXX executable bin/c10_accumulate_test +#10 503.5 [4684/6823] Linking CXX executable bin/c10_InlineDeviceGuard_test +#10 503.5 [4685/6823] Linking CXX executable bin/c10_InlineStreamGuard_test +#10 503.5 [4686/6823] Linking CXX executable bin/c10_complex_math_test +#10 503.6 [4687/6823] Linking CXX executable bin/c10_Bitset_test +#10 503.6 [4688/6823] Linking CXX executable bin/c10_registry_test +#10 503.7 [4689/6823] Linking CXX executable bin/c10_complex_test +#10 503.7 [4690/6823] Building CXX object c10/benchmark/CMakeFiles/c10_intrusive_ptr_benchmark.dir/intrusive_ptr_benchmark.cpp.o +#10 503.7 [4691/6823] Linking CXX executable bin/c10_tempfile_test +#10 503.7 [4692/6823] Linking CXX executable bin/c10_SymInt_test +#10 503.8 [4693/6823] Linking CXX executable bin/c10_DispatchKeySet_test +#10 503.9 [4694/6823] Linking CXX executable bin/c10_CompileTimeFunctionPointer_test +#10 503.9 [4695/6823] Linking CXX executable bin/c10_ThreadLocal_test +#10 503.9 [4696/6823] Linking CXX executable bin/c10_SizesAndStrides_test +#10 503.9 [4697/6823] Building CXX object c10/test/CMakeFiles/c10_Synchronized_test.dir/util/Synchronized_test.cpp.o +#10 503.9 [4698/6823] Linking CXX executable bin/c10_StreamGuard_test +#10 503.9 [4699/6823] Linking CXX executable bin/c10_typeid_test +#10 504.0 [4700/6823] Linking CXX executable bin/c10_TypeTraits_test +#10 504.1 [4701/6823] Linking CXX executable bin/c10_C++17_test +#10 504.1 [4702/6823] Linking CXX executable bin/c10_Device_test +#10 504.1 [4703/6823] Linking CXX executable bin/c10_DeviceGuard_test +#10 504.1 [4704/6823] Building CXX object c10/test/CMakeFiles/c10_TypeIndex_test.dir/util/TypeIndex_test.cpp.o +#10 504.1 [4705/6823] Linking CXX executable bin/c10_Half_test +#10 504.2 [4706/6823] Linking CXX executable bin/c10_DeadlockDetection_test +#10 504.2 [4707/6823] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o +#10 504.2 [4708/6823] Linking CXX executable bin/c10_LeftRight_test +#10 504.2 [4709/6823] Linking CXX executable bin/c10_ConstexprCrc_test +#10 504.2 [4710/6823] Linking CXX executable bin/c10_Array_test +#10 504.3 [4711/6823] Building CXX object c10/test/CMakeFiles/c10_ordered_preserving_dict_test.dir/util/ordered_preserving_dict_test.cpp.o +#10 504.3 [4712/6823] Linking CXX executable bin/c10_TypeIndex_test +#10 504.3 [4713/6823] Linking CXX executable bin/c10_Synchronized_test +#10 504.3 [4714/6823] Linking CXX executable bin/c10_intrusive_ptr_benchmark +#10 504.3 [4715/6823] Linking CXX executable bin/c10_TypeList_test +#10 504.4 [4716/6823] Linking CXX executable bin/c10_ordered_preserving_dict_test +#10 504.5 [4717/6823] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o +#10 504.6 [4718/6823] Linking C shared library lib/libtorch_global_deps.so +#10 504.7 [4719/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPMiscFunctions.cpp.o +#10 504.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 504.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 504.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 504.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 504.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 505.3 [4720/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/impl/HIPTest.cpp.o +#10 505.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 505.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 505.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 505.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 505.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 505.4 [4721/6823] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o +#10 505.5 [4722/6823] Linking C executable sleef/bin/mkalias +#10 505.6 [4723/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPFunctions.cpp.o +#10 505.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 505.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 505.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 505.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 505.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 505.7 [4724/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPException.cpp.o +#10 505.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 505.7 [4725/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPDeviceAssertionHost.cpp.o +#10 505.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 505.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 505.7 [4726/6823] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o +#10 505.8 [4727/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPMallocAsyncAllocator.cpp.o +#10 505.8 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 505.8 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 505.8 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 505.8 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 505.8 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 505.8 [4728/6823] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o +#10 505.8 [4729/6823] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o +#10 505.8 [4730/6823] Generating alias_avx512f.h +#10 505.8 [4731/6823] Linking C executable sleef/bin/mkdisp +#10 505.8 [4732/6823] Linking C executable sleef/bin/mkrename_gnuabi +#10 505.8 [4733/6823] Generating dispavx.c +#10 505.8 [4734/6823] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o +#10 505.8 [4735/6823] Linking C executable sleef/bin/mkrename +#10 505.9 [4736/6823] Generating dispsse.c +#10 505.9 [4737/6823] Generating include/renameavx512f.h +#10 505.9 Generating renameavx512f.h: mkrename finz_ 8 16 avx512f +#10 505.9 [4738/6823] Linking C executable sleef/bin/mkmasked_gnuabi +#10 505.9 [4739/6823] Generating include/renameavx.h +#10 505.9 Generating renameavx.h: mkrename cinz_ 4 8 avx +#10 505.9 [4740/6823] Building CXX object caffe2/CMakeFiles/caffe2_nvrtc.dir/__/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp.o +#10 505.9 In file included from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 505.9 111 | _(hipCtxGetCurrent) \ +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:119:39: note: in definition of macro ‘CREATE_MEMBER’ +#10 505.9 119 | #define CREATE_MEMBER(name) decltype(&name) name; +#10 505.9 | ^~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:120:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 505.9 120 | AT_FORALL_NVRTC(CREATE_MEMBER) +#10 505.9 | ^~~~~~~~~~~~~~~ +#10 505.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 505.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 505.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 505.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 In file included from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 505.9 111 | _(hipCtxGetCurrent) \ +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:119:39: note: in definition of macro ‘CREATE_MEMBER’ +#10 505.9 119 | #define CREATE_MEMBER(name) decltype(&name) name; +#10 505.9 | ^~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:120:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 505.9 120 | AT_FORALL_NVRTC(CREATE_MEMBER) +#10 505.9 | ^~~~~~~~~~~~~~~ +#10 505.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 505.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 505.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 505.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp: In function ‘at::cuda::NVRTC* at::cuda::load_nvrtc()’: +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 505.9 111 | _(hipCtxGetCurrent) \ +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:9:42: note: in definition of macro ‘CREATE_ASSIGN’ +#10 505.9 9 | #define CREATE_ASSIGN(name) self->name = name; +#10 505.9 | ^~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:10:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 505.9 10 | AT_FORALL_NVRTC(CREATE_ASSIGN) +#10 505.9 | ^~~~~~~~~~~~~~~ +#10 505.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 505.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 505.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 505.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 505.9 111 | _(hipCtxGetCurrent) \ +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:9:42: note: in definition of macro ‘CREATE_ASSIGN’ +#10 505.9 9 | #define CREATE_ASSIGN(name) self->name = name; +#10 505.9 | ^~~~ +#10 505.9 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:10:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 505.9 10 | AT_FORALL_NVRTC(CREATE_ASSIGN) +#10 505.9 | ^~~~~~~~~~~~~~~ +#10 505.9 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 505.9 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 505.9 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 505.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 505.9 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 505.9 | ^~~~~~~~~~~~~~~~ +#10 505.9 [4741/6823] Generating include/renameavx512fnofma.h +#10 505.9 Generating renameavx512fnofma.h: mkrename cinz_ 8 16 avx512fnofma +#10 505.9 [4742/6823] Generating include/renameavx2128.h +#10 505.9 Generating renameavx2128.h: mkrename finz_ 2 4 avx2128 +#10 505.9 [4743/6823] Generating include/renameavx2.h +#10 505.9 Generating renameavx2.h: mkrename finz_ 4 8 avx2 +#10 505.9 [4744/6823] Generating include/renamefma4.h +#10 505.9 Generating renamefma4.h: mkrename finz_ 4 8 fma4 +#10 506.0 [4745/6823] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o +#10 506.0 [4746/6823] Linking CXX shared library lib/libcaffe2_nvrtc.so +#10 506.1 [4747/6823] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o +#10 506.2 [4748/6823] Building CXX object c10/hip/test/CMakeFiles/c10_hip_HIPTest.dir/impl/HIPTest.cpp.o +#10 506.4 [4749/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPStream.cpp.o +#10 506.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 506.4 [4750/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/impl/HIPGuardImpl.cpp.o +#10 506.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 506.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 506.4 [4751/6823] Building CXX object c10/test/CMakeFiles/c10_optional_test.dir/util/optional_test.cpp.o +#10 506.4 [4752/6823] Generating include/renamesse4.h +#10 506.4 Generating renamesse4.h: mkrename cinz_ 2 4 sse4 +#10 506.6 [4753/6823] Linking CXX executable bin/c10_optional_test +#10 506.7 [4754/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512fnofma.dir/sleefsimdsp.c.o +#10 506.9 [4755/6823] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o +#10 507.0 [4756/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512fnofma.dir/sleefsimddp.c.o +#10 507.0 [4757/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2.dir/sleefsimdsp.c.o +#10 507.2 [4758/6823] Linking CXX executable bin/c10_Metaprogramming_test +#10 507.3 [4759/6823] Generating ../../../include/sleef.h +#10 507.3 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ +#10 507.3 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ sse2 +#10 507.3 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ sse4 +#10 507.3 Generating sleef.h: mkrename cinz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ +#10 507.3 Generating sleef.h: mkrename cinz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ avx +#10 507.3 Generating sleef.h: mkrename finz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ fma4 +#10 507.3 Generating sleef.h: mkrename finz_ 4 8 __m256d __m256 __m128i __m256i __AVX__ avx2 +#10 507.3 Generating sleef.h: mkrename finz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ avx2128 +#10 507.3 Generating sleef.h: mkrename finz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ +#10 507.3 Generating sleef.h: mkrename finz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ avx512f +#10 507.3 Generating sleef.h: mkrename cinz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ avx512fnofma +#10 507.3 Generating sleef.h: mkrename cinz_ 1 1 double float int32_t int32_t __STDC__ purec +#10 507.3 Generating sleef.h: mkrename finz_ 1 1 double float int32_t int32_t FP_FAST_FMA purecfma +#10 507.3 [4760/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o +#10 507.3 [4761/6823] Generating include/renamecuda.h +#10 507.3 Generating renamecuda.h: mkrename finz_ 1 1 cuda +#10 507.3 [4762/6823] Generating include/renamepurecfma_scalar.h +#10 507.3 Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma +#10 507.3 [4763/6823] Generating include/renamepurec_scalar.h +#10 507.3 Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec +#10 507.3 [4764/6823] Generating include/renamesse2.h +#10 507.3 Generating renamesse2.h: mkrename cinz_ 2 4 sse2 +#10 507.4 [4765/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse4.dir/sleefsimdsp.c.o +#10 507.5 [4766/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2.dir/sleefsimddp.c.o +#10 507.6 [4767/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o +#10 507.6 [4768/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512fnofma.dir/sleefsimdsp.c.o +#10 507.6 [4769/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse4.dir/sleefsimddp.c.o +#10 507.8 [4770/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o +#10 507.8 [4771/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512fnofma.dir/sleefsimddp.c.o +#10 508.0 [4772/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o +#10 508.2 [4773/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o +#10 508.4 [4774/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o +#10 508.6 [4775/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o +#10 508.6 [4776/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o +#10 508.6 [4777/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o +#10 508.8 [4778/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2128.dir/sleefsimdsp.c.o +#10 508.9 [4779/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2128.dir/sleefsimddp.c.o +#10 508.9 [4780/6823] Generating renamedsp128.h +#10 509.0 [4781/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o +#10 509.5 [4782/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx.dir/sleefsimdsp.c.o +#10 509.5 [4783/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o +#10 509.7 [4784/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o +#10 509.7 [4785/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o +#10 509.7 [4786/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o +#10 509.8 [4787/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetfma4.dir/sleefsimdsp.c.o +#10 509.9 [4788/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx.dir/sleefsimddp.c.o +#10 509.9 [4789/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetfma4.dir/sleefsimddp.c.o +#10 510.6 [4790/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimdsp.c.o +#10 510.7 [4791/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512f.dir/sleefsimdsp.c.o +#10 510.8 [4792/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimddp.c.o +#10 510.8 [4793/6823] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o +#10 510.8 [4794/6823] Generating renamedsp256.h +#10 510.8 [4795/6823] Linking C executable sleef/bin/addSuffix +#10 510.9 [4796/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512f.dir/sleefsimddp.c.o +#10 511.1 [4797/6823] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o +#10 511.1 [4798/6823] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o +#10 511.2 [4799/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o +#10 511.5 [4800/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o +#10 511.7 [4801/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o +#10 511.8 [4802/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o +#10 511.8 [4803/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o +#10 511.8 [4804/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_AVX2.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 511.9 [4805/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o +#10 511.9 [4806/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o +#10 512.0 [4807/6823] Running C++/Python protocol buffer compiler on /pytorch/caffe2/proto/torch.proto +#10 512.0 [4808/6823] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o +#10 512.1 [4809/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_DEFAULT.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 512.1 [4810/6823] Running C++/Python protocol buffer compiler on /pytorch/caffe2/proto/caffe2.proto +#10 512.1 [4811/6823] Generating ../../../torch/utils/data/datapipes/datapipe.pyi +#10 512.2 [4812/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512f.dir/sleefsimdsp.c.o +#10 512.3 [4813/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512f.dir/sleefsimddp.c.o +#10 512.4 [4814/6823] Stringify NVFUSER runtime source file +#10 512.5 [4815/6823] Stringify NVFUSER runtime source file +#10 512.6 [4816/6823] Stringify NVFUSER runtime source file +#10 512.6 [4817/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o +#10 512.6 [4818/6823] Generating ../../../torch/version.py +#10 512.6 [4819/6823] Stringify NVFUSER runtime source file +#10 512.7 [4820/6823] Stringify NVFUSER runtime source file +#10 512.7 [4821/6823] Stringify NVFUSER runtime source file +#10 512.8 [4822/6823] Stringify NVFUSER runtime source file +#10 512.8 [4823/6823] Stringify NVFUSER runtime source file +#10 512.8 [4824/6823] Stringify NVFUSER runtime source file +#10 512.8 [4825/6823] Stringify NVFUSER runtime source file +#10 512.9 [4826/6823] Stringify NVFUSER runtime source file +#10 512.9 [4827/6823] Stringify NVFUSER runtime source file +#10 512.9 [4828/6823] Stringify NVFUSER runtime source file +#10 512.9 [4829/6823] Stringify NVFUSER runtime source file +#10 513.0 [4830/6823] Stringify NVFUSER runtime source file +#10 513.0 [4831/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o +#10 513.0 [4832/6823] Stringify NVFUSER runtime source file +#10 513.0 [4833/6823] Stringify NVFUSER runtime source file +#10 513.1 [4834/6823] Stringify NVFUSER runtime source file +#10 513.1 [4835/6823] Stringify NVFUSER runtime source file +#10 513.1 [4836/6823] Stringify NVFUSER runtime source file +#10 513.1 [4837/6823] Stringify NVFUSER runtime source file +#10 513.1 [4838/6823] Stringify NVFUSER runtime source file +#10 513.2 [4839/6823] Stringify NVFUSER runtime source file +#10 513.2 [4840/6823] Stringify NVFUSER runtime source file +#10 513.2 [4841/6823] Stringify NVFUSER runtime source file +#10 513.2 [4842/6823] Stringify NVFUSER runtime source file +#10 513.3 [4843/6823] Stringify NVFUSER runtime source file +#10 513.3 [4844/6823] Stringify NVFUSER runtime source file +#10 513.3 [4845/6823] Stringify NVFUSER runtime source file +#10 513.3 [4846/6823] Stringify NVFUSER runtime source file +#10 513.5 [4847/6823] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o +#10 513.6 [4848/6823] Linking C static library sleef/lib/libsleef.a +#10 513.9 [4849/6823] Generating sources +#10 514.2 [4850/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPCachingAllocator.cpp.o +#10 514.2 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 514.2 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 514.2 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 514.2 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 514.2 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 514.3 [4851/6823] Linking CXX shared library lib/libc10_hip.so +#10 514.4 [4852/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_1_var_test +#10 514.4 [4853/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_same_block +#10 514.4 [4854/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_catches_stream +#10 514.4 [4855/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_catches_thread_and_block_and_device +#10 514.4 [4856/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_blocks_and_threads +#10 514.5 [4857/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_from_2_processes +#10 514.5 [4858/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_multiple_blocks +#10 514.6 [4859/6823] Linking CXX executable bin/c10_hip_HIPTest +#10 515.1 [4860/6823] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o +#10 516.0 [4861/6823] Generating ../../torch/csrc/autograd/generated/Functions.cpp, ../../torch/csrc/autograd/generated/VariableType_0.cpp, ../../torch/csrc/autograd/generated/VariableType_1.cpp, ../../torch/csrc/autograd/generated/VariableType_2.cpp, ../../torch/csrc/autograd/generated/VariableType_3.cpp, ../../torch/csrc/autograd/generated/VariableType_4.cpp, ../../torch/csrc/autograd/generated/TraceType_0.cpp, ../../torch/csrc/autograd/generated/TraceType_1.cpp, ../../torch/csrc/autograd/generated/TraceType_2.cpp, ../../torch/csrc/autograd/generated/TraceType_3.cpp, ../../torch/csrc/autograd/generated/TraceType_4.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, ../../torch/csrc/lazy/generated/LazyNativeFunctions.cpp, ../../torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, ../../torch/csrc/lazy/generated/RegisterLazy.cpp, ../../torch/csrc/autograd/generated/Functions.h, ../../torch/csrc/autograd/generated/variable_factories.h, ../../torch/csrc/autograd/generated/VariableType.h, ../../torch/csrc/lazy/generated/LazyIr.h, ../../torch/csrc/lazy/generated/LazyNonNativeIr.h, ../../torch/csrc/lazy/generated/LazyNativeFunctions.h, ../../torch/csrc/autograd/generated/python_functions_0.cpp, ../../torch/csrc/autograd/generated/python_functions_1.cpp, ../../torch/csrc/autograd/generated/python_functions_2.cpp, ../../torch/csrc/autograd/generated/python_functions_3.cpp, ../../torch/csrc/autograd/generated/python_functions_4.cpp, ../../torch/csrc/autograd/generated/python_variable_methods.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_0.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_1.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_2.cpp, ../../torch/csrc/autograd/generated/python_nn_functions.cpp, ../../torch/csrc/autograd/generated/python_fft_functions.cpp, ../../torch/csrc/autograd/generated/python_linalg_functions.cpp, ../../torch/csrc/autograd/generated/python_nested_functions.cpp, ../../torch/csrc/autograd/generated/python_sparse_functions.cpp, ../../torch/csrc/autograd/generated/python_special_functions.cpp, ../../torch/csrc/autograd/generated/python_return_types.cpp, ../../torch/csrc/autograd/generated/python_enum_tag.cpp, ../../torch/csrc/autograd/generated/python_functions.h, ../../torch/testing/_internal/generated/annotated_fn_args.py +#10 516.3 [4862/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o +#10 517.2 [4863/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o +#10 517.8 [4864/6823] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o +#10 519.0 [4865/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o +#10 519.0 [4866/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o +#10 519.2 [4867/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o +#10 519.7 [4868/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o +#10 519.8 [4869/6823] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi +#10 520.6 [4870/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o +#10 521.6 [4871/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o +#10 522.0 [4872/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o +#10 523.2 [4873/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o +#10 523.5 [4874/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o +#10 523.7 [4875/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o +#10 525.0 [4876/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o +#10 525.4 [4877/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o +#10 525.5 [4878/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNativeTBB.cpp.o +#10 525.9 [4879/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o +#10 526.0 [4880/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o +#10 526.9 [4881/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o +#10 527.0 [4882/6823] Building CXX object c10/test/CMakeFiles/c10_SmallVectorTest.dir/util/SmallVectorTest.cpp.o +#10 527.1 [4883/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o +#10 527.2 [4884/6823] Linking CXX executable bin/c10_SmallVectorTest +#10 527.3 [4885/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o +#10 527.6 [4886/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o +#10 527.9 [4887/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o +#10 528.3 [4888/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o +#10 528.7 [4889/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o +#10 528.9 [4890/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o +#10 530.4 [4891/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o +#10 531.1 [4892/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o +#10 532.5 [4893/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o +#10 532.8 [4894/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o +#10 532.8 [4895/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o +#10 532.8 In file included from ../c10/core/ScalarType.h:3, +#10 532.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 532.8 from ../aten/src/ATen/Dispatch.h:3, +#10 532.8 from ../aten/src/ATen/ScalarOps.cpp:2: +#10 532.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 532.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 532.8 37 | res = *tempRes; +#10 532.8 | ~~~~^~~~~~~~~~ +#10 532.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 532.8 28 | uint32_t tmp = src; +#10 532.8 | ^~~ +#10 533.2 [4896/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o +#10 533.6 [4897/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o +#10 534.5 [4898/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o +#10 535.0 [4899/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o +#10 536.5 [4900/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o +#10 536.7 [4901/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o +#10 537.9 [4902/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorUtils.cpp.o +#10 538.1 [4903/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o +#10 538.2 [4904/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o +#10 538.3 [4905/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o +#10 538.4 [4906/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o +#10 538.6 [4907/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o +#10 538.9 [4908/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o +#10 539.0 [4909/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o +#10 539.2 [4910/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o +#10 539.9 [4911/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o +#10 540.0 [4912/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o +#10 540.1 [4913/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o +#10 540.5 [4914/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/ORTHooksInterface.cpp.o +#10 540.6 [4915/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o +#10 540.7 [4916/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o +#10 543.1 [4917/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o +#10 543.1 In file included from ../c10/core/ScalarType.h:3, +#10 543.1 from ../c10/core/StorageImpl.h:4, +#10 543.1 from ../c10/core/Storage.h:3, +#10 543.1 from ../c10/core/TensorImpl.h:8, +#10 543.1 from ../c10/core/GeneratorImpl.h:8, +#10 543.1 from ../aten/src/ATen/core/Generator.h:22, +#10 543.1 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 543.1 from ../aten/src/ATen/Context.h:3, +#10 543.1 from ../aten/src/ATen/Utils.cpp:1: +#10 543.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 543.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 543.1 37 | res = *tempRes; +#10 543.1 | ~~~~^~~~~~~~~~ +#10 543.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 543.1 28 | uint32_t tmp = src; +#10 543.1 | ^~~ +#10 543.6 [4918/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o +#10 545.3 [4919/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o +#10 546.3 [4920/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o +#10 552.6 [4921/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o +#10 554.3 [4922/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o +#10 555.4 [4923/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o +#10 555.9 [4924/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o +#10 556.1 [4925/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o +#10 556.6 [4926/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o +#10 557.9 [4927/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o +#10 558.6 [4928/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o +#10 560.2 [4929/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o +#10 561.6 [4930/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o +#10 562.1 [4931/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o +#10 563.2 [4932/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o +#10 563.3 [4933/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o +#10 566.5 [4934/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o +#10 567.9 [4935/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o +#10 568.0 [4936/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o +#10 570.0 [4937/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o +#10 570.1 [4938/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o +#10 570.3 [4939/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o +#10 571.4 [4940/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o +#10 571.4 [4941/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o +#10 571.5 [4942/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o +#10 572.5 [4943/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o +#10 573.8 [4944/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o +#10 574.9 [4945/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o +#10 574.9 [4946/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o +#10 575.0 [4947/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o +#10 575.2 [4948/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o +#10 576.0 [4949/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o +#10 576.2 [4950/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o +#10 576.2 [4951/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o +#10 577.0 [4952/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o +#10 577.7 [4953/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o +#10 578.1 [4954/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o +#10 578.4 [4955/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o +#10 578.9 [4956/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o +#10 579.0 [4957/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o +#10 579.1 [4958/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o +#10 579.2 [4959/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o +#10 579.5 [4960/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o +#10 579.9 [4961/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o +#10 581.0 [4962/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o +#10 581.2 [4963/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o +#10 581.3 [4964/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o +#10 582.2 [4965/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o +#10 582.5 [4966/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o +#10 582.9 [4967/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o +#10 583.4 [4968/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o +#10 583.7 [4969/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o +#10 583.8 [4970/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o +#10 583.9 [4971/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_AVX2.dir/__/aten/src/ATen/test/vec_test_all_types.cpp.o +#10 583.9 [4972/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o +#10 584.1 [4973/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o +#10 584.2 [4974/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o +#10 584.2 [4975/6823] Linking CXX executable bin/vec_test_all_types_AVX2 +#10 584.2 [4976/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o +#10 585.1 [4977/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o +#10 586.9 [4978/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o +#10 587.4 [4979/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_DEFAULT.dir/__/aten/src/ATen/test/vec_test_all_types.cpp.o +#10 587.8 [4980/6823] Linking CXX executable bin/vec_test_all_types_DEFAULT +#10 588.2 [4981/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o +#10 588.2 [4982/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o +#10 588.9 [4983/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o +#10 590.0 [4984/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o +#10 590.2 [4985/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o +#10 590.5 [4986/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o +#10 590.7 [4987/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o +#10 591.2 [4988/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o +#10 591.3 [4989/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o +#10 591.3 [4990/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o +#10 591.6 [4991/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o +#10 591.7 [4992/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o +#10 592.2 [4993/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o +#10 592.5 [4994/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o +#10 593.0 [4995/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o +#10 593.1 [4996/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o +#10 595.0 [4997/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o +#10 595.1 [4998/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o +#10 595.8 [4999/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o +#10 596.5 [5000/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o +#10 596.6 [5001/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o +#10 597.2 [5002/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o +#10 597.2 [5003/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o +#10 597.2 [5004/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o +#10 598.8 [5005/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o +#10 598.8 In file included from ../c10/core/ScalarType.h:3, +#10 598.8 from ../aten/src/ATen/native/BlasKernel.cpp:6: +#10 598.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 598.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 598.8 37 | res = *tempRes; +#10 598.8 | ~~~~^~~~~~~~~~ +#10 598.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 598.8 28 | uint32_t tmp = src; +#10 598.8 | ^~~ +#10 598.9 [5006/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o +#10 599.1 [5007/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o +#10 599.8 [5008/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o +#10 599.9 [5009/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o +#10 600.3 [5010/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o +#10 600.5 [5011/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o +#10 601.4 [5012/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o +#10 601.4 In file included from ../c10/core/ScalarType.h:3, +#10 601.4 from ../c10/core/Scalar.h:11, +#10 601.4 from aten/src/ATen/core/TensorBody.h:16, +#10 601.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 601.4 from ../aten/src/ATen/native/Activation.cpp:4: +#10 601.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 601.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 601.4 37 | res = *tempRes; +#10 601.4 | ~~~~^~~~~~~~~~ +#10 601.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 601.4 28 | uint32_t tmp = src; +#10 601.4 | ^~~ +#10 602.1 [5013/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o +#10 603.8 [5014/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o +#10 603.8 In file included from ../c10/core/ScalarType.h:3, +#10 603.8 from ../c10/core/Scalar.h:11, +#10 603.8 from aten/src/ATen/core/TensorBody.h:16, +#10 603.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 603.8 from ../aten/src/ATen/native/Blas.cpp:2: +#10 603.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 603.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 603.8 37 | res = *tempRes; +#10 603.8 | ~~~~^~~~~~~~~~ +#10 603.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 603.8 28 | uint32_t tmp = src; +#10 603.8 | ^~~ +#10 603.9 [5015/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o +#10 603.9 In file included from ../c10/core/ScalarType.h:3, +#10 603.9 from ../c10/core/Scalar.h:11, +#10 603.9 from aten/src/ATen/core/TensorBody.h:16, +#10 603.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 603.9 from ../aten/src/ATen/native/Bucketization.cpp:2: +#10 603.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 603.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 603.9 37 | res = *tempRes; +#10 603.9 | ~~~~^~~~~~~~~~ +#10 603.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 603.9 28 | uint32_t tmp = src; +#10 603.9 | ^~~ +#10 604.7 [5016/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o +#10 604.8 [5017/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o +#10 604.8 In file included from ../c10/core/ScalarType.h:3, +#10 604.8 from ../aten/src/ATen/OpMathType.h:3, +#10 604.8 from ../aten/src/ATen/native/CPUBlas.h:3, +#10 604.8 from ../aten/src/ATen/native/CPUBlas.cpp:2: +#10 604.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 604.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 604.8 37 | res = *tempRes; +#10 604.8 | ~~~~^~~~~~~~~~ +#10 604.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 604.8 28 | uint32_t tmp = src; +#10 604.8 | ^~~ +#10 605.0 [5018/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o +#10 605.1 [5019/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o +#10 606.2 [5020/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o +#10 606.7 [5021/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o +#10 606.9 [5022/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o +#10 606.9 [5023/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o +#10 606.9 In file included from ../c10/core/ScalarType.h:3, +#10 606.9 from ../c10/core/Scalar.h:11, +#10 606.9 from aten/src/ATen/core/TensorBody.h:16, +#10 606.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 606.9 from ../aten/src/ATen/native/Col2Im.cpp:2: +#10 606.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 606.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 606.9 37 | res = *tempRes; +#10 606.9 | ~~~~^~~~~~~~~~ +#10 606.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 606.9 28 | uint32_t tmp = src; +#10 606.9 | ^~~ +#10 607.3 [5024/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o +#10 607.3 [5025/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o +#10 607.3 In file included from ../c10/core/ScalarType.h:3, +#10 607.3 from ../c10/core/Scalar.h:11, +#10 607.3 from aten/src/ATen/core/TensorBody.h:16, +#10 607.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 607.3 from ../aten/src/ATen/native/ConvolutionMM2d.cpp:2: +#10 607.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 607.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 607.3 37 | res = *tempRes; +#10 607.3 | ~~~~^~~~~~~~~~ +#10 607.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 607.3 28 | uint32_t tmp = src; +#10 607.3 | ^~~ +#10 607.6 [5026/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o +#10 607.7 [5027/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o +#10 609.4 [5028/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o +#10 610.1 [5029/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o +#10 611.0 [5030/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o +#10 611.0 [5031/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o +#10 611.6 [5032/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o +#10 611.7 [5033/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o +#10 612.1 [5034/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o +#10 612.9 [5035/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o +#10 613.7 [5036/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o +#10 613.7 [5037/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o +#10 613.8 [5038/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o +#10 615.2 [5039/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o +#10 615.3 [5040/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o +#10 615.3 [5041/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o +#10 615.3 In file included from ../c10/core/ScalarType.h:3, +#10 615.3 from ../c10/core/Scalar.h:11, +#10 615.3 from aten/src/ATen/core/TensorBody.h:16, +#10 615.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 615.3 from ../aten/src/ATen/native/ForeachOpsKernels.cpp:2: +#10 615.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 615.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 615.3 37 | res = *tempRes; +#10 615.3 | ~~~~^~~~~~~~~~ +#10 615.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 615.3 28 | uint32_t tmp = src; +#10 615.3 | ^~~ +#10 615.4 [5042/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o +#10 617.4 [5043/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o +#10 617.4 [5044/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o +#10 617.7 [5045/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o +#10 617.7 In file included from ../c10/core/ScalarType.h:3, +#10 617.7 from ../c10/core/Scalar.h:11, +#10 617.7 from aten/src/ATen/core/TensorBody.h:16, +#10 617.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 617.7 from ../aten/src/ATen/native/Distributions.cpp:2: +#10 617.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 617.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 617.7 37 | res = *tempRes; +#10 617.7 | ~~~~^~~~~~~~~~ +#10 617.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 617.7 28 | uint32_t tmp = src; +#10 617.7 | ^~~ +#10 618.0 [5046/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o +#10 618.1 [5047/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o +#10 618.2 [5048/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o +#10 619.0 [5049/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o +#10 619.0 [5050/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o +#10 619.0 [5051/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o +#10 619.0 In file included from ../c10/core/ScalarType.h:3, +#10 619.0 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 619.0 from ../aten/src/ATen/Dispatch.h:3, +#10 619.0 from ../aten/src/ATen/native/EmbeddingBag.cpp:2: +#10 619.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 619.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 619.0 37 | res = *tempRes; +#10 619.0 | ~~~~^~~~~~~~~~ +#10 619.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 619.0 28 | uint32_t tmp = src; +#10 619.0 | ^~~ +#10 619.8 [5052/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o +#10 621.5 [5053/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o +#10 622.0 [5054/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o +#10 622.1 [5055/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o +#10 623.3 [5056/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o +#10 623.3 [5057/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o +#10 623.4 [5058/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o +#10 623.4 [5059/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o +#10 623.6 [5060/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o +#10 623.7 [5061/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o +#10 625.8 [5062/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o +#10 626.5 [5063/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o +#10 626.5 In file included from ../c10/core/ScalarType.h:3, +#10 626.5 from ../c10/core/Scalar.h:11, +#10 626.5 from aten/src/ATen/core/TensorBody.h:16, +#10 626.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 626.5 from ../aten/src/ATen/native/LossNLL2d.cpp:2: +#10 626.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 626.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 626.5 37 | res = *tempRes; +#10 626.5 | ~~~~^~~~~~~~~~ +#10 626.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 626.5 28 | uint32_t tmp = src; +#10 626.5 | ^~~ +#10 626.5 [5064/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o +#10 628.3 [5065/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o +#10 628.3 In file included from ../c10/core/ScalarType.h:3, +#10 628.3 from ../c10/core/Scalar.h:11, +#10 628.3 from aten/src/ATen/core/TensorBody.h:16, +#10 628.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 628.3 from ../aten/src/ATen/native/LossNLL.cpp:2: +#10 628.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 628.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 628.3 37 | res = *tempRes; +#10 628.3 | ~~~~^~~~~~~~~~ +#10 628.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 628.3 28 | uint32_t tmp = src; +#10 628.3 | ^~~ +#10 628.4 [5066/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o +#10 628.5 [5067/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o +#10 628.5 In file included from ../c10/core/ScalarType.h:3, +#10 628.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 628.5 from ../aten/src/ATen/Dispatch.h:3, +#10 628.5 from ../aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp:2: +#10 628.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 628.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 628.5 37 | res = *tempRes; +#10 628.5 | ~~~~^~~~~~~~~~ +#10 628.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 628.5 28 | uint32_t tmp = src; +#10 628.5 | ^~~ +#10 629.0 [5068/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o +#10 629.0 In file included from ../c10/core/ScalarType.h:3, +#10 629.0 from ../c10/core/Scalar.h:11, +#10 629.0 from aten/src/ATen/core/TensorBody.h:16, +#10 629.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 629.0 from ../aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp:2: +#10 629.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 629.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 629.0 37 | res = *tempRes; +#10 629.0 | ~~~~^~~~~~~~~~ +#10 629.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 629.0 28 | uint32_t tmp = src; +#10 629.0 | ^~~ +#10 629.2 [5069/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o +#10 629.4 [5070/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o +#10 629.9 [5071/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o +#10 629.9 In file included from ../c10/core/ScalarType.h:3, +#10 629.9 from ../c10/core/Scalar.h:11, +#10 629.9 from aten/src/ATen/core/TensorBody.h:16, +#10 629.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 629.9 from ../aten/src/ATen/native/LinearAlgebra.cpp:2: +#10 629.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 629.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 629.9 37 | res = *tempRes; +#10 629.9 | ~~~~^~~~~~~~~~ +#10 629.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 629.9 28 | uint32_t tmp = src; +#10 629.9 | ^~~ +#10 630.1 [5072/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o +#10 631.3 [5073/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o +#10 631.5 [5074/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o +#10 632.0 [5075/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o +#10 632.2 [5076/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o +#10 632.2 In file included from ../c10/core/ScalarType.h:3, +#10 632.2 from ../c10/core/Scalar.h:11, +#10 632.2 from aten/src/ATen/core/TensorBody.h:16, +#10 632.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 632.2 from ../aten/src/ATen/native/NaiveDilatedConvolution.cpp:2: +#10 632.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 632.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 632.2 37 | res = *tempRes; +#10 632.2 | ~~~~^~~~~~~~~~ +#10 632.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 632.2 28 | uint32_t tmp = src; +#10 632.2 | ^~~ +#10 633.3 [5077/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o +#10 634.1 [5078/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o +#10 634.1 [5079/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o +#10 634.2 [5080/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o +#10 634.2 In file included from ../c10/core/ScalarType.h:3, +#10 634.2 from ../c10/core/Scalar.h:11, +#10 634.2 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 634.2 from ../aten/src/ATen/native/RangeFactories.cpp:2: +#10 634.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 634.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 634.2 37 | res = *tempRes; +#10 634.2 | ~~~~^~~~~~~~~~ +#10 634.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 634.2 28 | uint32_t tmp = src; +#10 634.2 | ^~~ +#10 635.8 [5081/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o +#10 635.8 In file included from ../c10/core/ScalarType.h:3, +#10 635.8 from ../c10/core/Scalar.h:11, +#10 635.8 from aten/src/ATen/core/TensorBody.h:16, +#10 635.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 635.8 from ../aten/src/ATen/native/Normalization.cpp:2: +#10 635.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 635.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 635.8 37 | res = *tempRes; +#10 635.8 | ~~~~^~~~~~~~~~ +#10 635.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 635.8 28 | uint32_t tmp = src; +#10 635.8 | ^~~ +#10 636.7 [5082/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o +#10 636.8 [5083/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o +#10 637.2 [5084/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o +#10 637.7 [5085/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o +#10 637.8 [5086/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o +#10 638.4 [5087/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o +#10 638.4 In file included from ../c10/core/ScalarType.h:3, +#10 638.4 from ../c10/core/Scalar.h:11, +#10 638.4 from aten/src/ATen/core/TensorBody.h:16, +#10 638.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 638.4 from ../aten/src/ATen/native/Scalar.cpp:2: +#10 638.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 638.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 638.4 37 | res = *tempRes; +#10 638.4 | ~~~~^~~~~~~~~~ +#10 638.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 638.4 28 | uint32_t tmp = src; +#10 638.4 | ^~~ +#10 638.5 [5088/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o +#10 640.1 [5089/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o +#10 640.1 In file included from ../c10/core/ScalarType.h:3, +#10 640.1 from ../c10/core/Scalar.h:11, +#10 640.1 from aten/src/ATen/core/TensorBody.h:16, +#10 640.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 640.1 from ../aten/src/ATen/native/ReduceOps.cpp:4: +#10 640.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 640.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 640.1 37 | res = *tempRes; +#10 640.1 | ~~~~^~~~~~~~~~ +#10 640.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 640.1 28 | uint32_t tmp = src; +#10 640.1 | ^~~ +#10 640.3 [5090/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o +#10 640.4 [5091/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o +#10 640.4 In file included from ../c10/core/ScalarType.h:3, +#10 640.4 from ../c10/core/Scalar.h:11, +#10 640.4 from aten/src/ATen/core/TensorBody.h:16, +#10 640.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 640.4 from ../aten/src/ATen/native/ReflectionPad.cpp:2: +#10 640.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 640.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 640.4 37 | res = *tempRes; +#10 640.4 | ~~~~^~~~~~~~~~ +#10 640.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 640.4 28 | uint32_t tmp = src; +#10 640.4 | ^~~ +#10 642.7 [5092/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o +#10 642.7 In file included from ../c10/core/ScalarType.h:3, +#10 642.7 from ../c10/core/Scalar.h:11, +#10 642.7 from aten/src/ATen/core/TensorBody.h:16, +#10 642.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 642.7 from ../aten/src/ATen/native/SoftMax.cpp:2: +#10 642.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 642.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 642.7 37 | res = *tempRes; +#10 642.7 | ~~~~^~~~~~~~~~ +#10 642.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 642.7 28 | uint32_t tmp = src; +#10 642.7 | ^~~ +#10 643.0 [5093/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o +#10 644.2 [5094/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o +#10 644.2 In file included from ../c10/core/ScalarType.h:3, +#10 644.2 from ../c10/core/Scalar.h:11, +#10 644.2 from ../aten/src/ATen/native/ReductionType.h:3, +#10 644.2 from ../aten/src/ATen/native/SegmentReduce.h:4, +#10 644.2 from ../aten/src/ATen/native/SegmentReduce.cpp:2: +#10 644.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 644.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 644.2 37 | res = *tempRes; +#10 644.2 | ~~~~^~~~~~~~~~ +#10 644.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 644.2 28 | uint32_t tmp = src; +#10 644.2 | ^~~ +#10 644.3 [5095/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o +#10 645.5 [5096/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o +#10 645.5 [5097/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o +#10 645.7 [5098/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o +#10 645.7 In file included from ../c10/core/ScalarType.h:3, +#10 645.7 from ../c10/core/Scalar.h:11, +#10 645.7 from aten/src/ATen/core/TensorBody.h:16, +#10 645.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 645.7 from ../aten/src/ATen/native/TensorCompare.cpp:2: +#10 645.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 645.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 645.7 37 | res = *tempRes; +#10 645.7 | ~~~~^~~~~~~~~~ +#10 645.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 645.7 28 | uint32_t tmp = src; +#10 645.7 | ^~~ +#10 645.8 [5099/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o +#10 645.8 [5100/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o +#10 647.1 [5101/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o +#10 647.1 In file included from ../c10/core/ScalarType.h:3, +#10 647.1 from ../c10/core/Scalar.h:11, +#10 647.1 from aten/src/ATen/core/TensorBody.h:16, +#10 647.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 647.1 from ../aten/src/ATen/native/Sorting.cpp:2: +#10 647.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 647.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 647.1 37 | res = *tempRes; +#10 647.1 | ~~~~^~~~~~~~~~ +#10 647.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 647.1 28 | uint32_t tmp = src; +#10 647.1 | ^~~ +#10 647.5 [5102/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o +#10 648.2 [5103/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o +#10 648.7 [5104/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o +#10 649.0 [5105/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o +#10 649.8 [5106/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o +#10 650.7 [5107/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o +#10 650.7 In file included from ../c10/core/ScalarType.h:3, +#10 650.7 from ../c10/core/Scalar.h:11, +#10 650.7 from aten/src/ATen/core/TensorBody.h:16, +#10 650.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 650.7 from ../aten/src/ATen/native/Unfold3d.cpp:2: +#10 650.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 650.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 650.7 37 | res = *tempRes; +#10 650.7 | ~~~~^~~~~~~~~~ +#10 650.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 650.7 28 | uint32_t tmp = src; +#10 650.7 | ^~~ +#10 650.9 [5108/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o +#10 651.5 [5109/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o +#10 652.7 [5110/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o +#10 653.0 [5111/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o +#10 653.9 [5112/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o +#10 653.9 In file included from ../c10/core/ScalarType.h:3, +#10 653.9 from ../c10/core/Scalar.h:11, +#10 653.9 from aten/src/ATen/core/TensorBody.h:16, +#10 653.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 653.9 from ../aten/src/ATen/native/UpSampleBicubic2d.cpp:2: +#10 653.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 653.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 653.9 37 | res = *tempRes; +#10 653.9 | ~~~~^~~~~~~~~~ +#10 653.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 653.9 28 | uint32_t tmp = src; +#10 653.9 | ^~~ +#10 653.9 [5113/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o +#10 654.0 [5114/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o +#10 654.5 [5115/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o +#10 654.6 [5116/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o +#10 656.2 [5117/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o +#10 656.3 [5118/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o +#10 656.4 [5119/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o +#10 657.0 [5120/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o +#10 657.3 [5121/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o +#10 657.3 [5122/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o +#10 657.7 [5123/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o +#10 658.6 [5124/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o +#10 659.1 [5125/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o +#10 659.4 [5126/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o +#10 659.4 In file included from ../c10/core/ScalarType.h:3, +#10 659.4 from ../c10/core/Scalar.h:11, +#10 659.4 from aten/src/ATen/core/TensorBody.h:16, +#10 659.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 659.4 from ../aten/src/ATen/native/Unique.cpp:4: +#10 659.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 659.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 659.4 37 | res = *tempRes; +#10 659.4 | ~~~~^~~~~~~~~~ +#10 659.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 659.4 28 | uint32_t tmp = src; +#10 659.4 | ^~~ +#10 660.3 [5127/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o +#10 660.3 In file included from ../c10/core/ScalarType.h:3, +#10 660.3 from ../c10/core/StorageImpl.h:4, +#10 660.3 from ../c10/core/Storage.h:3, +#10 660.3 from ../c10/core/TensorImpl.h:8, +#10 660.3 from ../c10/core/GeneratorImpl.h:8, +#10 660.3 from ../aten/src/ATen/core/Generator.h:22, +#10 660.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 660.3 from ../aten/src/ATen/Context.h:3, +#10 660.3 from ../aten/src/ATen/ATen.h:7, +#10 660.3 from ../aten/src/ATen/native/TensorAdvancedIndexing.cpp:51: +#10 660.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 660.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 660.3 37 | res = *tempRes; +#10 660.3 | ~~~~^~~~~~~~~~ +#10 660.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 660.3 28 | uint32_t tmp = src; +#10 660.3 | ^~~ +#10 660.4 [5128/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o +#10 662.2 [5129/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o +#10 662.6 [5130/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o +#10 663.2 [5131/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o +#10 664.6 [5132/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o +#10 664.9 [5133/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o +#10 665.0 [5134/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o +#10 665.1 [5135/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o +#10 665.1 [5136/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o +#10 665.4 [5137/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o +#10 665.8 [5138/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o +#10 666.6 [5139/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o +#10 666.7 [5140/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o +#10 668.7 [5141/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o +#10 668.7 In file included from ../c10/core/ScalarType.h:3, +#10 668.7 from ../c10/core/Scalar.h:11, +#10 668.7 from aten/src/ATen/core/TensorBody.h:16, +#10 668.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 668.7 from ../aten/src/ATen/native/sparse/SparseTensor.cpp:4: +#10 668.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 668.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 668.7 37 | res = *tempRes; +#10 668.7 | ~~~~^~~~~~~~~~ +#10 668.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 668.7 28 | uint32_t tmp = src; +#10 668.7 | ^~~ +#10 670.4 [5142/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o +#10 671.1 [5143/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o +#10 672.1 [5144/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o +#10 673.1 [5145/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o +#10 673.8 [5146/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o +#10 675.0 [5147/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 676.1 [5148/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o +#10 676.6 [5149/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o +#10 676.9 [5150/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o +#10 677.2 [5151/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o +#10 677.2 [5152/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o +#10 677.2 In file included from ../c10/core/ScalarType.h:3, +#10 677.2 from ../c10/core/Scalar.h:11, +#10 677.2 from aten/src/ATen/core/TensorBody.h:16, +#10 677.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 677.2 from ../aten/src/ATen/Tensor.h:3, +#10 677.2 from ../aten/src/ATen/NestedTensorImpl.h:3, +#10 677.2 from ../aten/src/ATen/native/nested/NestedTensorMath.h:4, +#10 677.2 from ../aten/src/ATen/native/nested/NestedTensorMath.cpp:1: +#10 677.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 677.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 677.2 37 | res = *tempRes; +#10 677.2 | ~~~~^~~~~~~~~~ +#10 677.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 677.2 28 | uint32_t tmp = src; +#10 677.2 | ^~~ +#10 677.2 [5153/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o +#10 677.2 [5154/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o +#10 679.3 [5155/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o +#10 679.9 [5156/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o +#10 680.1 [5157/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o +#10 680.1 [5158/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o +#10 680.1 In file included from ../c10/core/ScalarType.h:3, +#10 680.1 from ../c10/core/Scalar.h:11, +#10 680.1 from aten/src/ATen/core/TensorBody.h:16, +#10 680.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 680.1 from ../aten/src/ATen/Tensor.h:3, +#10 680.1 from ../aten/src/ATen/native/sparse/SparseBinaryOpIntersectionCommon.h:3, +#10 680.1 from ../aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp:3: +#10 680.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 680.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 680.1 37 | res = *tempRes; +#10 680.1 | ~~~~^~~~~~~~~~ +#10 680.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 680.1 28 | uint32_t tmp = src; +#10 680.1 | ^~~ +#10 681.7 [5159/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o +#10 681.7 In file included from ../c10/core/ScalarType.h:3, +#10 681.7 from ../c10/core/StorageImpl.h:4, +#10 681.7 from ../c10/core/Storage.h:3, +#10 681.7 from ../c10/core/TensorImpl.h:8, +#10 681.7 from ../c10/core/GeneratorImpl.h:8, +#10 681.7 from ../aten/src/ATen/core/Generator.h:22, +#10 681.7 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 681.7 from ../aten/src/ATen/Context.h:3, +#10 681.7 from aten/src/ATen/ops/view.h:5, +#10 681.7 from ../aten/src/ATen/ExpandUtils.h:6, +#10 681.7 from ../aten/src/ATen/TensorIndexing.h:3, +#10 681.7 from ../aten/src/ATen/native/sparse/SparseTensorMath.cpp:2: +#10 681.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 681.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 681.7 37 | res = *tempRes; +#10 681.7 | ~~~~^~~~~~~~~~ +#10 681.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 681.7 28 | uint32_t tmp = src; +#10 681.7 | ^~~ +#10 683.1 [5160/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o +#10 683.3 [5161/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o +#10 683.3 In file included from ../c10/core/ScalarType.h:3, +#10 683.3 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 683.3 from ../aten/src/ATen/Dispatch.h:3, +#10 683.3 from ../aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp:2: +#10 683.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 683.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 683.3 37 | res = *tempRes; +#10 683.3 | ~~~~^~~~~~~~~~ +#10 683.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 683.3 28 | uint32_t tmp = src; +#10 683.3 | ^~~ +#10 683.6 [5162/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o +#10 684.8 [5163/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o +#10 685.5 [5164/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o +#10 686.1 [5165/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o +#10 686.2 [5166/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o +#10 686.2 [5167/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o +#10 686.4 [5168/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o +#10 686.7 [5169/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o +#10 687.1 [5170/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o +#10 687.6 [5171/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o +#10 688.2 [5172/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o +#10 688.4 [5173/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o +#10 690.0 [5174/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o +#10 690.0 [5175/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o +#10 690.2 [5176/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o +#10 690.9 [5177/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o +#10 692.2 [5178/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o +#10 693.0 [5179/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o +#10 693.1 [5180/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o +#10 693.2 [5181/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o +#10 693.3 [5182/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o +#10 694.0 [5183/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o +#10 694.4 [5184/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o +#10 694.5 [5185/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o +#10 695.3 [5186/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o +#10 697.4 [5187/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o +#10 698.4 [5188/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o +#10 699.1 [5189/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o +#10 700.2 [5190/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o +#10 700.5 [5191/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o +#10 700.6 [5192/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o +#10 703.7 [5193/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o +#10 704.0 [5194/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o +#10 704.0 [5195/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o +#10 704.2 [5196/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o +#10 705.9 [5197/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o +#10 705.9 [5198/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o +#10 708.0 [5199/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o +#10 708.6 [5200/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o +#10 709.0 [5201/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o +#10 709.6 [5202/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o +#10 710.3 [5203/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o +#10 711.1 [5204/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o +#10 711.5 [5205/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o +#10 711.8 [5206/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o +#10 712.8 [5207/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o +#10 713.4 [5208/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o +#10 714.3 [5209/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o +#10 714.6 [5210/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o +#10 714.8 [5211/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o +#10 715.3 [5212/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o +#10 716.3 [5213/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o +#10 716.6 [5214/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o +#10 717.0 [5215/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o +#10 717.3 [5216/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o +#10 717.7 [5217/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o +#10 719.5 [5218/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o +#10 721.0 [5219/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o +#10 721.1 [5220/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o +#10 721.4 [5221/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o +#10 722.1 [5222/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o +#10 722.2 [5223/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o +#10 724.1 [5224/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o +#10 726.0 [5225/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o +#10 727.6 [5226/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o +#10 728.3 [5227/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o +#10 728.7 [5228/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o +#10 728.8 [5229/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o +#10 729.2 [5230/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o +#10 729.3 [5231/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o +#10 729.5 [5232/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o +#10 730.1 [5233/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o +#10 731.3 [5234/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o +#10 731.9 [5235/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o +#10 733.0 [5236/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o +#10 733.2 [5237/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o +#10 733.4 [5238/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o +#10 733.7 [5239/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o +#10 733.9 [5240/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o +#10 734.5 [5241/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o +#10 734.5 [5242/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o +#10 734.6 [5243/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o +#10 734.8 [5244/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o +#10 735.4 [5245/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o +#10 736.2 [5246/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o +#10 736.5 [5247/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o +#10 736.6 [5248/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o +#10 736.7 [5249/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o +#10 738.7 [5250/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o +#10 739.9 [5251/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o +#10 740.0 [5252/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o +#10 740.2 [5253/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o +#10 740.6 [5254/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o +#10 740.6 In file included from ../c10/core/ScalarType.h:3, +#10 740.6 from ../c10/core/StorageImpl.h:4, +#10 740.6 from ../c10/core/Storage.h:3, +#10 740.6 from ../c10/core/TensorImpl.h:8, +#10 740.6 from ../c10/core/GeneratorImpl.h:8, +#10 740.6 from ../aten/src/ATen/core/Generator.h:22, +#10 740.6 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 740.6 from ../aten/src/ATen/Context.h:3, +#10 740.6 from ../aten/src/ATen/ATen.h:7, +#10 740.6 from ../aten/src/ATen/native/transformers/attention.cpp:3: +#10 740.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 740.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 740.6 37 | res = *tempRes; +#10 740.6 | ~~~~^~~~~~~~~~ +#10 740.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 740.6 28 | uint32_t tmp = src; +#10 740.6 | ^~~ +#10 742.6 [5255/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o +#10 745.1 [5256/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o +#10 745.9 [5257/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o +#10 748.2 [5258/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor.cpp.o +#10 750.6 [5259/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o +#10 754.0 [5260/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o +#10 790.4 [5261/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o +#10 791.8 [5262/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional.cpp.o +#10 793.8 [5263/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd.cpp.o +#10 795.0 [5264/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o +#10 795.5 [5265/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o +#10 797.6 [5266/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd.cpp.o +#10 798.9 [5267/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta.cpp.o +#10 801.3 [5268/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o +#10 802.3 [5269/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU.cpp.o +#10 802.4 [5270/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta.cpp.o +#10 802.6 [5271/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o +#10 803.6 [5272/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU.cpp.o +#10 804.9 [5273/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o +#10 807.4 [5274/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o +#10 808.2 [5275/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o +#10 808.2 In file included from ../c10/core/ScalarType.h:3, +#10 808.2 from ../c10/core/Scalar.h:11, +#10 808.2 from aten/src/ATen/core/TensorMethods.cpp:1: +#10 808.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 808.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 808.2 37 | res = *tempRes; +#10 808.2 | ~~~~^~~~~~~~~~ +#10 808.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 808.2 28 | uint32_t tmp = src; +#10 808.2 | ^~~ +#10 808.5 [5276/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU.cpp.o +#10 809.5 [5277/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor.cpp.o +#10 810.5 [5278/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta.cpp.o +#10 810.8 [5279/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o +#10 811.1 [5280/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o +#10 811.8 [5281/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o +#10 813.4 [5282/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o +#10 814.9 [5283/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU.cpp.o +#10 815.3 [5284/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o +#10 815.3 [5285/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o +#10 816.0 [5286/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU.cpp.o +#10 817.2 [5287/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o +#10 817.5 [5288/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o +#10 817.7 [5289/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o +#10 818.0 [5290/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o +#10 818.0 In file included from ../c10/core/ScalarType.h:3, +#10 818.0 from ../aten/src/ATen/AccumulateType.h:3, +#10 818.0 from ../aten/src/ATen/native/Math.h:3, +#10 818.0 from ../aten/src/ATen/cpu/vec/vec_base.h:25, +#10 818.0 from ../aten/src/ATen/cpu/vec/vec256/vec256.h:8, +#10 818.0 from ../aten/src/ATen/cpu/vec/vec.h:6, +#10 818.0 from ../aten/src/ATen/cpu/vec/functional_base.h:6, +#10 818.0 from ../aten/src/ATen/cpu/vec/functional.h:3, +#10 818.0 from ../aten/src/ATen/native/ufunc/add.h:6, +#10 818.0 from /pytorch/build/aten/src/ATen/UfuncCPUKernel_add.cpp:3, +#10 818.0 from aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp:1: +#10 818.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 818.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 818.0 37 | res = *tempRes; +#10 818.0 | ~~~~^~~~~~~~~~ +#10 818.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 818.0 28 | uint32_t tmp = src; +#10 818.0 | ^~~ +#10 818.2 [5291/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o +#10 819.0 [5292/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o +#10 821.1 [5293/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o +#10 821.8 [5294/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta.cpp.o +#10 824.0 [5295/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o +#10 824.0 In file included from ../c10/core/ScalarType.h:3, +#10 824.0 from ../aten/src/ATen/core/TensorBase.h:6, +#10 824.0 from /pytorch/aten/src/ATen/native/cpu/WeightNormKernel.cpp:2, +#10 824.0 from aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp:1: +#10 824.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 824.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 824.0 37 | res = *tempRes; +#10 824.0 | ~~~~^~~~~~~~~~ +#10 824.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 824.0 28 | uint32_t tmp = src; +#10 824.0 | ^~~ +#10 825.6 [5296/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o +#10 825.6 In file included from ../c10/core/ScalarType.h:3, +#10 825.6 from ../c10/core/Scalar.h:11, +#10 825.6 from aten/src/ATen/core/TensorBody.h:16, +#10 825.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 825.6 from /pytorch/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp:2, +#10 825.6 from aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp:1: +#10 825.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 825.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 825.6 37 | res = *tempRes; +#10 825.6 | ~~~~^~~~~~~~~~ +#10 825.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 825.6 28 | uint32_t tmp = src; +#10 825.6 | ^~~ +#10 826.1 [5297/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o +#10 826.4 [5298/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o +#10 829.1 [5299/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o +#10 829.1 In file included from ../c10/core/ScalarType.h:3, +#10 829.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 829.1 from ../aten/src/ATen/Dispatch.h:3, +#10 829.1 from /pytorch/aten/src/ATen/native/cpu/Unfold2d.cpp:2, +#10 829.1 from aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp:1: +#10 829.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 829.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 829.1 37 | res = *tempRes; +#10 829.1 | ~~~~^~~~~~~~~~ +#10 829.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 829.1 28 | uint32_t tmp = src; +#10 829.1 | ^~~ +#10 829.9 [5300/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o +#10 829.9 In file included from ../c10/core/ScalarType.h:3, +#10 829.9 from ../c10/core/Scalar.h:11, +#10 829.9 from aten/src/ATen/core/TensorBody.h:16, +#10 829.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 829.9 from ../aten/src/ATen/native/layer_norm.h:3, +#10 829.9 from /pytorch/aten/src/ATen/native/cpu/layer_norm_kernel.cpp:2, +#10 829.9 from aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp:1: +#10 829.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 829.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 829.9 37 | res = *tempRes; +#10 829.9 | ~~~~^~~~~~~~~~ +#10 829.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 829.9 28 | uint32_t tmp = src; +#10 829.9 | ^~~ +#10 830.1 [5301/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o +#10 830.8 [5302/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o +#10 830.8 In file included from ../c10/core/ScalarType.h:3, +#10 830.8 from ../c10/core/Scalar.h:11, +#10 830.8 from aten/src/ATen/core/TensorBody.h:16, +#10 830.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 830.8 from /pytorch/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp:4, +#10 830.8 from aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp:1: +#10 830.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 830.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 830.8 37 | res = *tempRes; +#10 830.8 | ~~~~^~~~~~~~~~ +#10 830.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 830.8 28 | uint32_t tmp = src; +#10 830.8 | ^~~ +#10 830.8 [5303/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o +#10 830.8 In file included from ../c10/core/ScalarType.h:3, +#10 830.8 from ../c10/core/Scalar.h:11, +#10 830.8 from aten/src/ATen/core/TensorBody.h:16, +#10 830.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 830.8 from ../aten/src/ATen/native/batch_norm.h:3, +#10 830.8 from /pytorch/aten/src/ATen/native/cpu/batch_norm_kernel.cpp:2, +#10 830.8 from aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp:1: +#10 830.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 830.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 830.8 37 | res = *tempRes; +#10 830.8 | ~~~~^~~~~~~~~~ +#10 830.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 830.8 28 | uint32_t tmp = src; +#10 830.8 | ^~~ +#10 834.0 [5304/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o +#10 834.0 In file included from ../c10/core/ScalarType.h:3, +#10 834.0 from ../c10/core/Scalar.h:11, +#10 834.0 from aten/src/ATen/core/TensorBody.h:16, +#10 834.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 834.0 from /pytorch/aten/src/ATen/native/cpu/UpSampleKernel.cpp:2, +#10 834.0 from aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp:1: +#10 834.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 834.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 834.0 37 | res = *tempRes; +#10 834.0 | ~~~~^~~~~~~~~~ +#10 834.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 834.0 28 | uint32_t tmp = src; +#10 834.0 | ^~~ +#10 834.1 [5305/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o +#10 834.5 [5306/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU.cpp.o +#10 834.6 [5307/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o +#10 837.5 [5308/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o +#10 837.5 In file included from ../c10/core/ScalarType.h:3, +#10 837.5 from ../c10/core/Scalar.h:11, +#10 837.5 from aten/src/ATen/core/TensorBody.h:16, +#10 837.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 837.5 from /pytorch/aten/src/ATen/native/cpu/group_norm_kernel.cpp:8, +#10 837.5 from aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp:1: +#10 837.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 837.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 837.5 37 | res = *tempRes; +#10 837.5 | ~~~~^~~~~~~~~~ +#10 837.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 837.5 28 | uint32_t tmp = src; +#10 837.5 | ^~~ +#10 838.5 [5309/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o +#10 838.5 In file included from ../c10/core/ScalarType.h:3, +#10 838.5 from ../c10/core/Scalar.h:11, +#10 838.5 from aten/src/ATen/core/TensorBody.h:16, +#10 838.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 838.5 from /pytorch/aten/src/ATen/native/cpu/MaxPooling.cpp:2, +#10 838.5 from aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp:1: +#10 838.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 838.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 838.5 37 | res = *tempRes; +#10 838.5 | ~~~~^~~~~~~~~~ +#10 838.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 838.5 28 | uint32_t tmp = src; +#10 838.5 | ^~~ +#10 839.2 [5310/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o +#10 840.5 [5311/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o +#10 840.5 In file included from ../c10/core/ScalarType.h:3, +#10 840.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 840.5 from ../aten/src/ATen/Dispatch.h:3, +#10 840.5 from /pytorch/aten/src/ATen/native/cpu/SoftMaxKernel.cpp:8, +#10 840.5 from aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp:1: +#10 840.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 840.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 840.5 37 | res = *tempRes; +#10 840.5 | ~~~~^~~~~~~~~~ +#10 840.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 840.5 28 | uint32_t tmp = src; +#10 840.5 | ^~~ +#10 840.9 [5312/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o +#10 841.0 In file included from ../c10/core/ScalarType.h:3, +#10 841.0 from ../aten/src/ATen/AccumulateType.h:3, +#10 841.0 from /pytorch/aten/src/ATen/native/cpu/SumKernel.cpp:2, +#10 841.0 from aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp:1: +#10 841.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 841.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 841.0 37 | res = *tempRes; +#10 841.0 | ~~~~^~~~~~~~~~ +#10 841.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 841.0 28 | uint32_t tmp = src; +#10 841.0 | ^~~ +#10 841.4 [5313/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o +#10 841.4 In file included from ../c10/core/ScalarType.h:3, +#10 841.4 from ../c10/core/Scalar.h:11, +#10 841.4 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 841.4 from /pytorch/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp:2, +#10 841.4 from aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp:1: +#10 841.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 841.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 841.4 37 | res = *tempRes; +#10 841.4 | ~~~~^~~~~~~~~~ +#10 841.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 841.4 28 | uint32_t tmp = src; +#10 841.4 | ^~~ +#10 844.5 [5314/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o +#10 844.5 In file included from ../c10/core/ScalarType.h:3, +#10 844.5 from ../aten/src/ATen/core/TensorBase.h:6, +#10 844.5 from /pytorch/aten/src/ATen/native/cpu/SortingKernel.cpp:3, +#10 844.5 from aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp:1: +#10 844.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 844.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 844.5 37 | res = *tempRes; +#10 844.5 | ~~~~^~~~~~~~~~ +#10 844.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 844.5 28 | uint32_t tmp = src; +#10 844.5 | ^~~ +#10 846.0 [5315/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o +#10 846.9 [5316/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o +#10 847.2 [5317/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o +#10 847.2 In file included from ../c10/core/ScalarType.h:3, +#10 847.2 from ../c10/core/Scalar.h:11, +#10 847.2 from aten/src/ATen/core/TensorBody.h:16, +#10 847.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 847.2 from /pytorch/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp:2, +#10 847.2 from aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp:1: +#10 847.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 847.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 847.2 37 | res = *tempRes; +#10 847.2 | ~~~~^~~~~~~~~~ +#10 847.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 847.2 28 | uint32_t tmp = src; +#10 847.2 | ^~~ +#10 847.2 [5318/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o +#10 847.2 In file included from ../c10/core/ScalarType.h:3, +#10 847.2 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 847.2 from ../aten/src/ATen/Dispatch.h:3, +#10 847.2 from /pytorch/aten/src/ATen/native/cpu/PowKernel.cpp:3, +#10 847.2 from aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp:1: +#10 847.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 847.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 847.2 37 | res = *tempRes; +#10 847.2 | ~~~~^~~~~~~~~~ +#10 847.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 847.2 28 | uint32_t tmp = src; +#10 847.2 | ^~~ +#10 847.4 [5319/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o +#10 847.4 In file included from ../c10/core/ScalarType.h:3, +#10 847.4 from ../c10/core/Scalar.h:11, +#10 847.4 from aten/src/ATen/core/TensorBody.h:16, +#10 847.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 847.4 from /pytorch/aten/src/ATen/native/cpu/MultinomialKernel.cpp:2, +#10 847.4 from aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp:1: +#10 847.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 847.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 847.4 37 | res = *tempRes; +#10 847.4 | ~~~~^~~~~~~~~~ +#10 847.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 847.4 28 | uint32_t tmp = src; +#10 847.4 | ^~~ +#10 848.0 [5320/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o +#10 848.2 [5321/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o +#10 848.2 In file included from ../c10/core/ScalarType.h:3, +#10 848.2 from ../c10/core/Scalar.h:11, +#10 848.2 from aten/src/ATen/core/TensorBody.h:16, +#10 848.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 848.2 from /pytorch/aten/src/ATen/native/cpu/TensorCompareKernel.cpp:2, +#10 848.2 from aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp:1: +#10 848.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 848.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 848.2 37 | res = *tempRes; +#10 848.2 | ~~~~^~~~~~~~~~ +#10 848.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 848.2 28 | uint32_t tmp = src; +#10 848.2 | ^~~ +#10 850.9 [5322/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o +#10 850.9 In file included from ../c10/core/ScalarType.h:3, +#10 850.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 850.9 from ../aten/src/ATen/Dispatch.h:3, +#10 850.9 from /pytorch/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp:4, +#10 850.9 from aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp:1: +#10 850.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 850.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 850.9 37 | res = *tempRes; +#10 850.9 | ~~~~^~~~~~~~~~ +#10 850.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 850.9 28 | uint32_t tmp = src; +#10 850.9 | ^~~ +#10 851.5 [5323/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o +#10 851.5 In file included from ../c10/core/ScalarType.h:3, +#10 851.5 from ../c10/core/Scalar.h:11, +#10 851.5 from aten/src/ATen/core/TensorBody.h:16, +#10 851.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 851.5 from ../aten/src/ATen/native/AdaptivePooling.h:3, +#10 851.5 from /pytorch/aten/src/ATen/native/cpu/MaxPoolKernel.cpp:2, +#10 851.5 from aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp:1: +#10 851.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 851.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 851.5 37 | res = *tempRes; +#10 851.5 | ~~~~^~~~~~~~~~ +#10 851.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 851.5 28 | uint32_t tmp = src; +#10 851.5 | ^~~ +#10 851.8 [5324/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o +#10 851.8 In file included from ../c10/core/ScalarType.h:3, +#10 851.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 851.8 from ../aten/src/ATen/Dispatch.h:3, +#10 851.8 from /pytorch/aten/src/ATen/native/cpu/FillKernel.cpp:2, +#10 851.8 from aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp:1: +#10 851.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 851.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 851.8 37 | res = *tempRes; +#10 851.8 | ~~~~^~~~~~~~~~ +#10 851.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 851.8 28 | uint32_t tmp = src; +#10 851.8 | ^~~ +#10 852.8 [5325/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o +#10 852.8 In file included from ../c10/core/ScalarType.h:3, +#10 852.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 852.8 from ../aten/src/ATen/Dispatch.h:3, +#10 852.8 from /pytorch/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp:3, +#10 852.8 from aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp:1: +#10 852.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 852.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 852.8 37 | res = *tempRes; +#10 852.8 | ~~~~^~~~~~~~~~ +#10 852.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 852.8 28 | uint32_t tmp = src; +#10 852.8 | ^~~ +#10 852.8 [5326/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o +#10 852.8 In file included from ../c10/core/ScalarType.h:3, +#10 852.8 from ../c10/core/Scalar.h:11, +#10 852.8 from aten/src/ATen/core/TensorBody.h:16, +#10 852.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 852.8 from /pytorch/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp:3, +#10 852.8 from aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp:1: +#10 852.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 852.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 852.8 37 | res = *tempRes; +#10 852.8 | ~~~~^~~~~~~~~~ +#10 852.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 852.8 28 | uint32_t tmp = src; +#10 852.8 | ^~~ +#10 853.4 [5327/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o +#10 853.4 In file included from ../c10/core/ScalarType.h:3, +#10 853.4 from ../aten/src/ATen/OpMathType.h:3, +#10 853.4 from ../aten/src/ATen/native/Lerp.h:4, +#10 853.4 from /pytorch/aten/src/ATen/native/cpu/LerpKernel.cpp:2, +#10 853.4 from aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp:1: +#10 853.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 853.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 853.4 37 | res = *tempRes; +#10 853.4 | ~~~~^~~~~~~~~~ +#10 853.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 853.4 28 | uint32_t tmp = src; +#10 853.4 | ^~~ +#10 855.0 [5328/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o +#10 855.0 In file included from ../c10/core/ScalarType.h:3, +#10 855.0 from ../c10/core/Scalar.h:11, +#10 855.0 from aten/src/ATen/core/TensorBody.h:16, +#10 855.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 855.0 from ../aten/src/ATen/native/Histogram.h:3, +#10 855.0 from /pytorch/aten/src/ATen/native/cpu/HistogramKernel.cpp:2, +#10 855.0 from aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp:1: +#10 855.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 855.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 855.0 37 | res = *tempRes; +#10 855.0 | ~~~~^~~~~~~~~~ +#10 855.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 855.0 28 | uint32_t tmp = src; +#10 855.0 | ^~~ +#10 856.1 [5329/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o +#10 856.1 In file included from ../c10/core/ScalarType.h:3, +#10 856.1 from ../aten/src/ATen/core/TensorBase.h:6, +#10 856.1 from ../aten/src/ATen/native/NonEmptyUtils.h:1, +#10 856.1 from /pytorch/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp:2, +#10 856.1 from aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp:1: +#10 856.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 856.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 856.1 37 | res = *tempRes; +#10 856.1 | ~~~~^~~~~~~~~~ +#10 856.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 856.1 28 | uint32_t tmp = src; +#10 856.1 | ^~~ +#10 857.0 [5330/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o +#10 857.8 [5331/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o +#10 857.8 In file included from ../c10/core/ScalarType.h:3, +#10 857.8 from ../c10/core/Scalar.h:11, +#10 857.8 from aten/src/ATen/core/TensorBody.h:16, +#10 857.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 857.8 from /pytorch/aten/src/ATen/native/cpu/CrossKernel.cpp:9, +#10 857.8 from aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp:1: +#10 857.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 857.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 857.8 37 | res = *tempRes; +#10 857.8 | ~~~~^~~~~~~~~~ +#10 857.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 857.8 28 | uint32_t tmp = src; +#10 857.8 | ^~~ +#10 858.8 [5332/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o +#10 858.8 In file included from ../c10/core/ScalarType.h:3, +#10 858.8 from ../c10/core/Scalar.h:11, +#10 858.8 from aten/src/ATen/core/TensorBody.h:16, +#10 858.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 858.8 from /pytorch/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp:2, +#10 858.8 from aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp:1: +#10 858.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 858.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 858.8 37 | res = *tempRes; +#10 858.8 | ~~~~^~~~~~~~~~ +#10 858.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 858.8 28 | uint32_t tmp = src; +#10 858.8 | ^~~ +#10 859.0 [5333/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o +#10 859.4 [5334/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o +#10 861.1 [5335/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o +#10 861.6 [5336/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o +#10 862.0 [5337/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o +#10 862.0 In file included from ../c10/core/ScalarType.h:3, +#10 862.0 from ../c10/core/StorageImpl.h:4, +#10 862.0 from ../c10/core/Storage.h:3, +#10 862.0 from ../c10/core/TensorImpl.h:8, +#10 862.0 from ../c10/core/GeneratorImpl.h:8, +#10 862.0 from ../aten/src/ATen/core/Generator.h:22, +#10 862.0 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 862.0 from /pytorch/aten/src/ATen/native/cpu/DistributionKernels.cpp:2, +#10 862.0 from aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp:1: +#10 862.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 862.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 862.0 37 | res = *tempRes; +#10 862.0 | ~~~~^~~~~~~~~~ +#10 862.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 862.0 28 | uint32_t tmp = src; +#10 862.0 | ^~~ +#10 863.4 [5338/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o +#10 863.4 In file included from ../c10/core/ScalarType.h:3, +#10 863.4 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 863.4 from ../aten/src/ATen/Dispatch.h:3, +#10 863.4 from /pytorch/aten/src/ATen/native/cpu/BlasKernel.cpp:2, +#10 863.4 from aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp:1: +#10 863.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 863.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 863.4 37 | res = *tempRes; +#10 863.4 | ~~~~^~~~~~~~~~ +#10 863.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 863.4 28 | uint32_t tmp = src; +#10 863.4 | ^~~ +#10 863.9 [5339/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o +#10 863.9 In file included from ../c10/core/ScalarType.h:3, +#10 863.9 from ../c10/core/Scalar.h:11, +#10 863.9 from aten/src/ATen/core/TensorBody.h:16, +#10 863.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 863.9 from /pytorch/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp:4, +#10 863.9 from aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp:1: +#10 863.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 863.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 863.9 37 | res = *tempRes; +#10 863.9 | ~~~~^~~~~~~~~~ +#10 863.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 863.9 28 | uint32_t tmp = src; +#10 863.9 | ^~~ +#10 866.0 [5340/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o +#10 866.2 [5341/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o +#10 866.8 [5342/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o +#10 866.8 In file included from ../c10/core/ScalarType.h:3, +#10 866.8 from ../c10/core/Scalar.h:11, +#10 866.8 from aten/src/ATen/core/TensorBody.h:16, +#10 866.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 866.8 from /pytorch/aten/src/ATen/native/cpu/AvgPoolKernel.cpp:2, +#10 866.8 from aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp:1: +#10 866.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 866.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 866.8 37 | res = *tempRes; +#10 866.8 | ~~~~^~~~~~~~~~ +#10 866.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 866.8 28 | uint32_t tmp = src; +#10 866.8 | ^~~ +#10 866.9 [5343/6823] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-2.1.0/miniz.c.o +#10 866.9 ../third_party/miniz-2.1.0/miniz.c:3157:9: note: ‘#pragma message: Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.’ +#10 866.9 3157 | #pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.") +#10 866.9 | ^~~~~~~ +#10 867.2 [5344/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o +#10 867.2 In file included from ../c10/core/ScalarType.h:3, +#10 867.2 from ../c10/core/Scalar.h:11, +#10 867.2 from aten/src/ATen/core/TensorBody.h:16, +#10 867.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 867.2 from /pytorch/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp:2, +#10 867.2 from aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp:1: +#10 867.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 867.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 867.2 37 | res = *tempRes; +#10 867.2 | ~~~~^~~~~~~~~~ +#10 867.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 867.2 28 | uint32_t tmp = src; +#10 867.2 | ^~~ +#10 867.2 [5345/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o +#10 867.3 [5346/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o +#10 867.4 [5347/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o +#10 868.1 [5348/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o +#10 868.2 [5349/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o +#10 868.4 [5350/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o +#10 868.5 [5351/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o +#10 868.6 [5352/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o +#10 868.9 [5353/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o +#10 869.0 [5354/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o +#10 869.0 In file included from ../c10/core/ScalarType.h:3, +#10 869.0 from ../c10/core/Scalar.h:11, +#10 869.0 from aten/src/ATen/core/TensorBody.h:16, +#10 869.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 869.0 from /pytorch/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp:2, +#10 869.0 from aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp:1: +#10 869.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 869.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 869.0 37 | res = *tempRes; +#10 869.0 | ~~~~^~~~~~~~~~ +#10 869.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 869.0 28 | uint32_t tmp = src; +#10 869.0 | ^~~ +#10 869.1 [5355/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o +#10 869.5 [5356/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o +#10 870.5 [5357/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o +#10 870.6 [5358/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o +#10 870.6 In file included from ../c10/core/ScalarType.h:3, +#10 870.6 from ../c10/core/StorageImpl.h:4, +#10 870.6 from ../c10/core/Storage.h:3, +#10 870.6 from ../c10/core/TensorImpl.h:8, +#10 870.6 from ../c10/core/GeneratorImpl.h:8, +#10 870.6 from ../aten/src/ATen/core/Generator.h:22, +#10 870.6 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 870.6 from ../aten/src/ATen/Context.h:3, +#10 870.6 from /pytorch/aten/src/ATen/native/cpu/IndexKernel.cpp:7, +#10 870.6 from aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp:1: +#10 870.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 870.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 870.6 37 | res = *tempRes; +#10 870.6 | ~~~~^~~~~~~~~~ +#10 870.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 870.6 28 | uint32_t tmp = src; +#10 870.6 | ^~~ +#10 871.8 [5359/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o +#10 871.8 In file included from ../c10/core/ScalarType.h:3, +#10 871.8 from ../c10/core/StorageImpl.h:4, +#10 871.8 from ../c10/core/Storage.h:3, +#10 871.8 from ../c10/core/TensorImpl.h:8, +#10 871.8 from ../c10/core/GeneratorImpl.h:8, +#10 871.8 from ../aten/src/ATen/core/Generator.h:22, +#10 871.8 from ../aten/src/ATen/Generator.h:2, +#10 871.8 from ../aten/src/ATen/native/UnaryOps.h:4, +#10 871.8 from /pytorch/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp:2, +#10 871.8 from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp:1: +#10 871.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 871.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 871.8 37 | res = *tempRes; +#10 871.8 | ~~~~^~~~~~~~~~ +#10 871.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 871.8 28 | uint32_t tmp = src; +#10 871.8 | ^~~ +#10 872.0 [5360/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o +#10 877.4 [5361/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o +#10 877.4 In file included from ../c10/core/ScalarType.h:3, +#10 877.4 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 877.4 from ../aten/src/ATen/Dispatch.h:3, +#10 877.4 from /pytorch/aten/src/ATen/native/cpu/CopyKernel.cpp:2, +#10 877.4 from aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp:1: +#10 877.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 877.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 877.4 37 | res = *tempRes; +#10 877.4 | ~~~~^~~~~~~~~~ +#10 877.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 877.4 28 | uint32_t tmp = src; +#10 877.4 | ^~~ +#10 878.5 [5362/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/defer_size_check.cpp.o +#10 879.3 [5363/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp.o +#10 879.9 [5364/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/register_interface.cpp.o +#10 880.2 [5365/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp.o +#10 881.3 [5366/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_fuser.cpp.o +#10 883.5 [5367/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/decompose_silu.cpp.o +#10 883.7 [5368/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_helper.cpp.o +#10 884.1 [5369/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/layout_propagation.cpp.o +#10 884.5 [5370/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/interface.cpp.o +#10 884.5 ../torch/csrc/jit/codegen/onednn/interface.cpp: In function ‘torch::jit::Operation torch::jit::createLlgaKernel(const torch::jit::Node*)’: +#10 884.5 ../torch/csrc/jit/codegen/onednn/interface.cpp:106:3: warning: ‘torch::jit::Operation::Operation(F&&) [with F = torch::jit::createLlgaKernel(const torch::jit::Node*)::; typename std::enable_if*)>, F&&>::value, int>::type = 0]’ is deprecated: Please use void(Stack&) to register operator instead. [-Wdeprecated-declarations] +#10 884.5 106 | }; +#10 884.5 | ^ +#10 884.5 In file included from ../aten/src/ATen/core/boxing/KernelFunction.h:5, +#10 884.5 from ../aten/src/ATen/core/dispatch/Dispatcher.h:4, +#10 884.5 from ../torch/csrc/jit/runtime/operator.h:6, +#10 884.5 from ../torch/csrc/jit/ir/ir.h:7, +#10 884.5 from ../torch/csrc/jit/codegen/onednn/decompose_silu.h:3, +#10 884.5 from ../torch/csrc/jit/codegen/onednn/interface.cpp:2: +#10 884.5 ../aten/src/ATen/core/stack.h:25:3: note: declared here +#10 884.5 25 | Operation(F&& raw): op_([raw = std::forward(raw)](Stack& stack) { +#10 884.5 | ^~~~~~~~~ +#10 884.5 ../torch/csrc/jit/codegen/onednn/interface.cpp: In function ‘torch::jit::Operation torch::jit::createLlgaGuardKernel(const torch::jit::Node*)’: +#10 884.5 ../torch/csrc/jit/codegen/onednn/interface.cpp:171:3: warning: ‘torch::jit::Operation::Operation(F&&) [with F = torch::jit::createLlgaGuardKernel(const torch::jit::Node*)::; typename std::enable_if*)>, F&&>::value, int>::type = 0]’ is deprecated: Please use void(Stack&) to register operator instead. [-Wdeprecated-declarations] +#10 884.5 171 | }; +#10 884.5 | ^ +#10 884.5 In file included from ../aten/src/ATen/core/boxing/KernelFunction.h:5, +#10 884.5 from ../aten/src/ATen/core/dispatch/Dispatcher.h:4, +#10 884.5 from ../torch/csrc/jit/runtime/operator.h:6, +#10 884.5 from ../torch/csrc/jit/ir/ir.h:7, +#10 884.5 from ../torch/csrc/jit/codegen/onednn/decompose_silu.h:3, +#10 884.5 from ../torch/csrc/jit/codegen/onednn/interface.cpp:2: +#10 884.5 ../aten/src/ATen/core/stack.h:25:3: note: declared here +#10 884.5 25 | Operation(F&& raw): op_([raw = std::forward(raw)](Stack& stack) { +#10 884.5 | ^~~~~~~~~ +#10 886.2 [5371/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/kernel.cpp.o +#10 886.8 [5372/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/prepare_binary.cpp.o +#10 887.6 [5373/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/guard_shape.cpp.o +#10 890.3 [5374/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o +#10 890.3 In file included from ../c10/core/ScalarType.h:3, +#10 890.3 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 890.3 from ../aten/src/ATen/Dispatch.h:3, +#10 890.3 from /pytorch/aten/src/ATen/native/cpu/Activation.cpp:12, +#10 890.3 from aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp:1: +#10 890.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 890.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 890.3 37 | res = *tempRes; +#10 890.3 | ~~~~^~~~~~~~~~ +#10 890.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 890.3 28 | uint32_t tmp = src; +#10 890.3 | ^~~ +#10 895.4 [5375/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o +#10 916.7 [5376/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o +#10 929.9 [5377/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o +#10 929.9 In file included from ../c10/core/ScalarType.h:3, +#10 929.9 from ../aten/src/ATen/core/TensorBase.h:6, +#10 929.9 from ../aten/src/ATen/native/BinaryOps.h:3, +#10 929.9 from /pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp:2, +#10 929.9 from aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp:1: +#10 929.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 929.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 929.9 37 | res = *tempRes; +#10 929.9 | ~~~~^~~~~~~~~~ +#10 929.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 929.9 28 | uint32_t tmp = src; +#10 929.9 | ^~~ +#10 931.4 [5378/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o +#10 936.2 [5379/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o +#10 937.8 [5380/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o +#10 937.8 [5381/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o +#10 940.1 [5382/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o +#10 941.8 [5383/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o +#10 942.1 [5384/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o +#10 943.0 [5385/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o +#10 943.3 [5386/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o +#10 945.1 [5387/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o +#10 946.3 [5388/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o +#10 947.8 [5389/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o +#10 948.5 [5390/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o +#10 949.4 [5391/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o +#10 949.9 [5392/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o +#10 950.1 [5393/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o +#10 951.7 [5394/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o +#10 952.0 [5395/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o +#10 952.4 [5396/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o +#10 952.8 [5397/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o +#10 953.1 [5398/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o +#10 953.9 [5399/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o +#10 954.5 [5400/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o +#10 956.2 [5401/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o +#10 956.7 [5402/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o +#10 956.7 [5403/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o +#10 957.3 [5404/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o +#10 958.0 [5405/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o +#10 958.6 [5406/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o +#10 961.2 [5407/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o +#10 962.5 [5408/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o +#10 963.6 [5409/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o +#10 964.8 [5410/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o +#10 965.1 [5411/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o +#10 965.7 [5412/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o +#10 966.9 [5413/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o +#10 967.7 [5414/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o +#10 968.6 [5415/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o +#10 968.7 [5416/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o +#10 968.9 [5417/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o +#10 969.1 [5418/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o +#10 969.6 [5419/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o +#10 970.5 [5420/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o +#10 971.7 [5421/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o +#10 973.3 [5422/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o +#10 974.5 [5423/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o +#10 976.5 [5424/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o +#10 976.7 [5425/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o +#10 977.3 [5426/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o +#10 977.4 [5427/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o +#10 978.2 [5428/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o +#10 978.4 [5429/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o +#10 978.8 [5430/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o +#10 979.1 [5431/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o +#10 979.2 [5432/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o +#10 979.3 [5433/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o +#10 981.7 [5434/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o +#10 982.0 [5435/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o +#10 983.7 [5436/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o +#10 987.2 [5437/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o +#10 987.3 [5438/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o +#10 988.0 [5439/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o +#10 988.0 [5440/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o +#10 988.1 [5441/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o +#10 988.8 [5442/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o +#10 989.7 [5443/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o +#10 990.2 [5444/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o +#10 992.0 [5445/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o +#10 992.2 [5446/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o +#10 992.9 [5447/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o +#10 993.1 [5448/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o +#10 993.3 [5449/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o +#10 996.0 [5450/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o +#10 996.2 [5451/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o +#10 996.9 [5452/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o +#10 997.4 [5453/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o +#10 997.6 [5454/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o +#10 998.1 [5455/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o +#10 998.5 [5456/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o +#10 999.4 [5457/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o +#10 999.4 [5458/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o +#10 1000.5 [5459/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o +#10 1003.0 [5460/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o +#10 1003.1 [5461/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o +#10 1003.3 [5462/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o +#10 1003.5 [5463/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o +#10 1003.7 [5464/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o +#10 1004.3 [5465/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o +#10 1004.9 [5466/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o +#10 1004.9 [5467/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o +#10 1005.2 [5468/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o +#10 1005.3 [5469/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o +#10 1005.8 [5470/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o +#10 1006.2 [5471/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o +#10 1007.3 [5472/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o +#10 1007.6 [5473/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o +#10 1011.3 [5474/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o +#10 1011.7 [5475/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o +#10 1011.8 [5476/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o +#10 1011.9 [5477/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o +#10 1014.0 [5478/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o +#10 1014.7 [5479/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o +#10 1014.9 [5480/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o +#10 1015.4 [5481/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o +#10 1015.6 [5482/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o +#10 1016.1 [5483/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o +#10 1016.3 [5484/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o +#10 1017.8 [5485/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o +#10 1018.9 [5486/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o +#10 1019.5 [5487/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o +#10 1019.9 [5488/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o +#10 1020.8 [5489/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o +#10 1021.9 [5490/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o +#10 1023.7 [5491/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o +#10 1023.9 [5492/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/cuda_graph_fuser.cpp.o +#10 1024.0 [5493/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o +#10 1024.3 [5494/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o +#10 1025.5 [5495/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o +#10 1025.8 [5496/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o +#10 1026.8 [5497/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o +#10 1026.9 [5498/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o +#10 1027.7 [5499/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o +#10 1027.8 [5500/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o +#10 1028.2 [5501/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o +#10 1029.0 [5502/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o +#10 1031.7 [5503/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o +#10 1032.1 [5504/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o +#10 1032.2 [5505/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o +#10 1032.2 [5506/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o +#10 1034.5 [5507/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o +#10 1034.5 [5508/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o +#10 1035.2 [5509/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o +#10 1037.3 [5510/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o +#10 1037.6 [5511/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o +#10 1037.7 [5512/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o +#10 1038.1 [5513/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o +#10 1040.4 [5514/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o +#10 1040.8 [5515/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o +#10 1042.0 [5516/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o +#10 1043.0 [5517/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o +#10 1044.5 [5518/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o +#10 1044.5 [5519/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o +#10 1045.6 [5520/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o +#10 1046.0 [5521/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o +#10 1046.4 [5522/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o +#10 1047.1 [5523/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o +#10 1048.1 [5524/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o +#10 1048.3 [5525/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o +#10 1049.0 [5526/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o +#10 1050.5 [5527/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o +#10 1050.5 [5528/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o +#10 1050.7 [5529/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o +#10 1051.7 [5530/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o +#10 1052.8 [5531/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o +#10 1054.1 [5532/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o +#10 1054.8 [5533/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o +#10 1055.3 [5534/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o +#10 1055.8 [5535/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o +#10 1056.4 [5536/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o +#10 1057.2 [5537/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o +#10 1057.5 [5538/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o +#10 1057.5 [5539/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o +#10 1059.0 [5540/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o +#10 1059.9 [5541/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o +#10 1063.4 [5542/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o +#10 1064.2 [5543/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o +#10 1064.5 [5544/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o +#10 1065.4 [5545/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o +#10 1066.1 [5546/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o +#10 1066.1 [5547/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o +#10 1066.3 [5548/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o +#10 1066.8 [5549/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o +#10 1067.2 [5550/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o +#10 1068.1 [5551/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o +#10 1068.3 [5552/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o +#10 1068.6 [5553/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o +#10 1070.9 [5554/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o +#10 1071.7 [5555/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o +#10 1072.1 [5556/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o +#10 1072.9 [5557/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o +#10 1075.3 [5558/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o +#10 1075.9 [5559/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o +#10 1076.0 [5560/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o +#10 1076.0 [5561/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o +#10 1076.0 [5562/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o +#10 1076.5 [5563/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o +#10 1079.2 [5564/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o +#10 1079.4 [5565/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o +#10 1079.8 [5566/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o +#10 1080.3 [5567/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o +#10 1081.3 [5568/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o +#10 1081.3 [5569/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o +#10 1082.1 [5570/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o +#10 1083.1 [5571/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o +#10 1084.0 [5572/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o +#10 1084.9 [5573/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o +#10 1085.6 [5574/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o +#10 1085.8 [5575/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o +#10 1085.9 [5576/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o +#10 1086.0 [5577/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o +#10 1088.4 [5578/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o +#10 1088.9 [5579/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o +#10 1089.1 [5580/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o +#10 1090.0 [5581/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o +#10 1092.2 [5582/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o +#10 1092.6 [5583/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o +#10 1093.3 [5584/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o +#10 1095.4 [5585/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o +#10 1095.5 [5586/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o +#10 1098.1 [5587/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o +#10 1098.5 [5588/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o +#10 1098.6 [5589/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o +#10 1100.6 [5590/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o +#10 1102.3 [5591/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o +#10 1103.1 [5592/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o +#10 1103.2 [5593/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o +#10 1103.4 [5594/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o +#10 1104.2 [5595/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o +#10 1104.3 [5596/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o +#10 1109.9 [5597/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o +#10 1110.4 [5598/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o +#10 1111.3 [5599/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o +#10 1111.8 [5600/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o +#10 1112.4 [5601/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o +#10 1113.6 [5602/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o +#10 1114.1 [5603/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o +#10 1115.5 [5604/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o +#10 1116.1 [5605/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o +#10 1118.5 [5606/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o +#10 1118.5 [5607/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o +#10 1121.3 [5608/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o +#10 1123.1 [5609/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o +#10 1126.2 [5610/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o +#10 1126.6 [5611/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o +#10 1126.8 [5612/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o +#10 1129.0 [5613/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o +#10 1130.4 [5614/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o +#10 1131.9 [5615/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o +#10 1132.2 [5616/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o +#10 1132.2 In file included from ../c10/core/ScalarType.h:3, +#10 1132.2 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1132.2 from ../aten/src/ATen/EmptyTensor.h:2, +#10 1132.2 from ../aten/src/ATen/Utils.h:3, +#10 1132.2 from ../torch/csrc/jit/runtime/static/ops.h:3, +#10 1132.2 from ../torch/csrc/jit/runtime/static/ops.cpp:1: +#10 1132.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1132.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1132.2 37 | res = *tempRes; +#10 1132.2 | ~~~~^~~~~~~~~~ +#10 1132.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1132.2 28 | uint32_t tmp = src; +#10 1132.2 | ^~~ +#10 1132.5 [5617/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o +#10 1132.6 [5618/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o +#10 1133.0 [5619/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o +#10 1133.2 [5620/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o +#10 1133.9 [5621/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o +#10 1135.5 [5622/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o +#10 1136.3 [5623/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o +#10 1136.3 In file included from ../c10/core/ScalarType.h:3, +#10 1136.3 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1136.3 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1136.3 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1136.3 from ../torch/csrc/jit/tensorexpr/bounds_overlap.cpp:1: +#10 1136.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1136.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1136.3 37 | res = *tempRes; +#10 1136.3 | ~~~~^~~~~~~~~~ +#10 1136.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1136.3 28 | uint32_t tmp = src; +#10 1136.3 | ^~~ +#10 1138.3 [5624/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o +#10 1138.7 [5625/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o +#10 1138.8 [5626/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o +#10 1139.4 [5627/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o +#10 1143.8 [5628/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o +#10 1143.9 [5629/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o +#10 1144.4 [5630/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o +#10 1144.4 In file included from ../c10/core/ScalarType.h:3, +#10 1144.4 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1144.4 from ../torch/csrc/jit/tensorexpr/exceptions.h:4, +#10 1144.4 from ../torch/csrc/jit/tensorexpr/ir.h:8, +#10 1144.4 from ../torch/csrc/jit/tensorexpr/ir.cpp:1: +#10 1144.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1144.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1144.4 37 | res = *tempRes; +#10 1144.4 | ~~~~^~~~~~~~~~ +#10 1144.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1144.4 28 | uint32_t tmp = src; +#10 1144.4 | ^~~ +#10 1146.3 [5631/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o +#10 1147.4 [5632/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o +#10 1151.7 [5633/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o +#10 1151.7 In file included from ../c10/core/ScalarType.h:3, +#10 1151.7 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1151.7 from ../torch/csrc/jit/tensorexpr/ir_printer.h:5, +#10 1151.7 from ../torch/csrc/jit/tensorexpr/ir_printer.cpp:1: +#10 1151.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1151.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1151.7 37 | res = *tempRes; +#10 1151.7 | ~~~~^~~~~~~~~~ +#10 1151.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1151.7 28 | uint32_t tmp = src; +#10 1151.7 | ^~~ +#10 1152.4 [5634/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o +#10 1152.4 [5635/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o +#10 1152.4 [5636/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o +#10 1153.3 [5637/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o +#10 1154.0 [5638/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o +#10 1159.0 [5639/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o +#10 1159.0 In file included from ../c10/core/ScalarType.h:3, +#10 1159.0 from ../c10/core/StorageImpl.h:4, +#10 1159.0 from ../c10/core/Storage.h:3, +#10 1159.0 from ../c10/core/TensorImpl.h:8, +#10 1159.0 from ../c10/core/GeneratorImpl.h:8, +#10 1159.0 from ../aten/src/ATen/core/Generator.h:22, +#10 1159.0 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1159.0 from ../aten/src/ATen/Context.h:3, +#10 1159.0 from ../aten/src/ATen/ATen.h:7, +#10 1159.0 from ../torch/csrc/jit/tensorexpr/codegen.h:3, +#10 1159.0 from ../torch/csrc/jit/tensorexpr/eval.h:14, +#10 1159.0 from ../torch/csrc/jit/tensorexpr/eval.cpp:1: +#10 1159.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1159.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1159.0 37 | res = *tempRes; +#10 1159.0 | ~~~~^~~~~~~~~~ +#10 1159.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1159.0 28 | uint32_t tmp = src; +#10 1159.0 | ^~~ +#10 1161.2 [5640/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o +#10 1166.4 [5641/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o +#10 1166.4 In file included from ../c10/core/ScalarType.h:3, +#10 1166.4 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1166.4 from ../torch/csrc/jit/tensorexpr/loopnest.h:9, +#10 1166.4 from ../torch/csrc/jit/tensorexpr/operators/conv2d.cpp:3: +#10 1166.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1166.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1166.4 37 | res = *tempRes; +#10 1166.4 | ~~~~^~~~~~~~~~ +#10 1166.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1166.4 28 | uint32_t tmp = src; +#10 1166.4 | ^~~ +#10 1167.6 [5642/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o +#10 1167.6 In file included from ../c10/core/ScalarType.h:3, +#10 1167.6 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1167.6 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1167.6 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1167.6 from ../torch/csrc/jit/tensorexpr/ir_simplifier.cpp:2: +#10 1167.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1167.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1167.6 37 | res = *tempRes; +#10 1167.6 | ~~~~^~~~~~~~~~ +#10 1167.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1167.6 28 | uint32_t tmp = src; +#10 1167.6 | ^~~ +#10 1169.2 [5643/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o +#10 1169.2 In file included from ../c10/core/ScalarType.h:3, +#10 1169.2 from ../torch/csrc/jit/tensorexpr/mem_dependency_checker.h:2, +#10 1169.2 from ../torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp:1: +#10 1169.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1169.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1169.2 37 | res = *tempRes; +#10 1169.2 | ~~~~^~~~~~~~~~ +#10 1169.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1169.2 28 | uint32_t tmp = src; +#10 1169.2 | ^~~ +#10 1169.3 [5644/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o +#10 1169.6 [5645/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o +#10 1169.6 In file included from ../c10/core/ScalarType.h:3, +#10 1169.6 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1169.6 from ../torch/csrc/jit/tensorexpr/loopnest.h:9, +#10 1169.6 from ../torch/csrc/jit/tensorexpr/loopnest.cpp:1: +#10 1169.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1169.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1169.6 37 | res = *tempRes; +#10 1169.6 | ~~~~^~~~~~~~~~ +#10 1169.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1169.6 28 | uint32_t tmp = src; +#10 1169.6 | ^~~ +#10 1169.8 [5646/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o +#10 1170.5 [5647/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o +#10 1171.0 [5648/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o +#10 1171.0 In file included from ../c10/core/ScalarType.h:3, +#10 1171.0 from ../c10/core/Scalar.h:11, +#10 1171.0 from aten/src/ATen/core/TensorBody.h:16, +#10 1171.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 1171.0 from ../torch/csrc/jit/ir/attributes.h:2, +#10 1171.0 from ../torch/csrc/jit/ir/ir.h:3, +#10 1171.0 from ../torch/csrc/jit/tensorexpr/kernel.h:4, +#10 1171.0 from ../torch/csrc/jit/tensorexpr/kernel.cpp:2: +#10 1171.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1171.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1171.0 37 | res = *tempRes; +#10 1171.0 | ~~~~^~~~~~~~~~ +#10 1171.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1171.0 28 | uint32_t tmp = src; +#10 1171.0 | ^~~ +#10 1171.1 [5649/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o +#10 1172.1 [5650/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o +#10 1173.2 [5651/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o +#10 1173.5 [5652/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o +#10 1174.7 [5653/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o +#10 1175.8 [5654/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o +#10 1175.8 In file included from ../c10/core/ScalarType.h:3, +#10 1175.8 from ../c10/core/Scalar.h:11, +#10 1175.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1175.8 from ../aten/src/ATen/core/jit_type.h:5, +#10 1175.8 from ../aten/src/ATen/core/function_schema.h:6, +#10 1175.8 from ../torch/csrc/jit/frontend/function_schema_parser.h:3, +#10 1175.8 from ../torch/csrc/jit/tensorexpr/lowerings.cpp:1: +#10 1175.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1175.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1175.8 37 | res = *tempRes; +#10 1175.8 | ~~~~^~~~~~~~~~ +#10 1175.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1175.8 28 | uint32_t tmp = src; +#10 1175.8 | ^~~ +#10 1176.5 [5655/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o +#10 1176.5 In file included from ../c10/core/ScalarType.h:3, +#10 1176.5 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1176.5 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1176.5 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1176.5 from ../torch/csrc/jit/tensorexpr/ir_simplifier.h:3, +#10 1176.5 from ../torch/csrc/jit/tensorexpr/operators/misc.cpp:1: +#10 1176.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1176.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1176.5 37 | res = *tempRes; +#10 1176.5 | ~~~~^~~~~~~~~~ +#10 1176.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1176.5 28 | uint32_t tmp = src; +#10 1176.5 | ^~~ +#10 1177.1 [5656/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o +#10 1178.0 [5657/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o +#10 1178.5 [5658/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o +#10 1178.5 [5659/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o +#10 1178.6 [5660/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o +#10 1178.8 [5661/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o +#10 1179.3 [5662/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o +#10 1179.5 [5663/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o +#10 1179.6 [5664/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o +#10 1179.7 [5665/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o +#10 1180.4 [5666/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o +#10 1181.7 [5667/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o +#10 1182.9 [5668/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o +#10 1183.5 [5669/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o +#10 1184.0 [5670/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o +#10 1184.4 [5671/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o +#10 1185.1 [5672/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o +#10 1186.3 [5673/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o +#10 1186.4 [5674/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o +#10 1186.7 [5675/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o +#10 1186.7 In file included from ../c10/core/ScalarType.h:3, +#10 1186.7 from ../torch/csrc/jit/tensorexpr/registerizer.h:2, +#10 1186.7 from ../torch/csrc/jit/tensorexpr/registerizer.cpp:1: +#10 1186.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1186.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1186.7 37 | res = *tempRes; +#10 1186.7 | ~~~~^~~~~~~~~~ +#10 1186.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1186.7 28 | uint32_t tmp = src; +#10 1186.7 | ^~~ +#10 1187.0 [5676/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o +#10 1188.1 [5677/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o +#10 1188.1 [5678/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o +#10 1189.5 [5679/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o +#10 1190.2 [5680/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o +#10 1191.0 [5681/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o +#10 1191.1 [5682/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o +#10 1191.5 [5683/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o +#10 1192.2 [5684/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o +#10 1192.3 [5685/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o +#10 1192.8 [5686/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o +#10 1192.9 [5687/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o +#10 1193.5 [5688/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o +#10 1193.9 [5689/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o +#10 1193.9 [5690/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o +#10 1194.5 [5691/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o +#10 1194.9 [5692/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o +#10 1194.9 [5693/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o +#10 1197.6 [5694/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o +#10 1197.7 [5695/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o +#10 1197.7 [5696/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o +#10 1198.4 [5697/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o +#10 1198.4 [5698/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o +#10 1201.5 [5699/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o +#10 1203.3 [5700/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o +#10 1203.4 [5701/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o +#10 1204.0 [5702/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o +#10 1204.4 [5703/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o +#10 1204.5 [5704/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o +#10 1205.0 [5705/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_graph_observer.cpp.o +#10 1205.4 [5706/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o +#10 1205.5 [5707/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o +#10 1205.7 [5708/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o +#10 1208.5 [5709/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o +#10 1210.6 [5710/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o +#10 1210.7 [5711/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o +#10 1212.5 [5712/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o +#10 1213.3 [5713/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/random_ops.cpp.o +#10 1213.8 [5714/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o +#10 1214.0 [5715/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o +#10 1214.3 [5716/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o +#10 1215.2 [5717/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o +#10 1217.0 [5718/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o +#10 1218.2 [5719/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o +#10 1218.3 [5720/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o +#10 1219.2 [5721/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o +#10 1219.2 [5722/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o +#10 1221.8 [5723/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o +#10 1221.9 [5724/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o +#10 1222.7 [5725/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/itt_wrapper.cpp.o +#10 1222.7 [5726/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/itt.cpp.o +#10 1223.7 [5727/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o +#10 1224.0 [5728/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o +#10 1224.4 [5729/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o +#10 1224.9 [5730/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o +#10 1225.0 [5731/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o +#10 1228.2 [5732/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o +#10 1228.3 [5733/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o +#10 1228.5 [5734/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o +#10 1229.1 [5735/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o +#10 1229.1 [5736/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o +#10 1229.6 [5737/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o +#10 1231.4 [5738/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp.o +#10 1233.1 [5739/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o +#10 1233.9 [5740/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o +#10 1235.0 [5741/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/FileStore.cpp.o +#10 1235.1 [5742/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o +#10 1235.1 [5743/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o +#10 1236.3 [5744/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o +#10 1236.4 [5745/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp.o +#10 1237.0 [5746/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o +#10 1238.4 [5747/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o +#10 1238.6 [5748/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ParamCommsUtils.cpp.o +#10 1238.8 [5749/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/PrefixStore.cpp.o +#10 1240.2 [5750/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o +#10 1241.1 [5751/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o +#10 1241.1 In file included from ../c10/core/ScalarType.h:3, +#10 1241.1 from ../c10/core/StorageImpl.h:4, +#10 1241.1 from ../c10/core/Storage.h:3, +#10 1241.1 from ../c10/core/TensorImpl.h:8, +#10 1241.1 from ../c10/core/GeneratorImpl.h:8, +#10 1241.1 from ../aten/src/ATen/core/Generator.h:22, +#10 1241.1 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1241.1 from ../aten/src/ATen/Context.h:3, +#10 1241.1 from ../aten/src/ATen/ATen.h:7, +#10 1241.1 from ../torch/csrc/autograd/FunctionsManual.h:12, +#10 1241.1 from ../torch/csrc/autograd/FunctionsManual.cpp:1: +#10 1241.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1241.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1241.1 37 | res = *tempRes; +#10 1241.1 | ~~~~^~~~~~~~~~ +#10 1241.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1241.1 28 | uint32_t tmp = src; +#10 1241.1 | ^~~ +#10 1241.3 [5752/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Backend.cpp.o +#10 1241.5 [5753/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/exception.cpp.o +#10 1241.7 [5754/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Store.cpp.o +#10 1242.7 [5755/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o +#10 1243.6 [5756/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logging.cpp.o +#10 1243.8 [5757/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/debug.cpp.o +#10 1246.9 [5758/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Ops.cpp.o +#10 1247.1 [5759/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp.o +#10 1247.2 [5760/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o +#10 1247.6 [5761/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Utils.cpp.o +#10 1247.8 [5762/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/sequence_num.cpp.o +#10 1250.0 [5763/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/TCPStore.cpp.o +#10 1251.9 [5764/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/quantization/quantization.cpp.o +#10 1252.9 [5765/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/comm.cpp.o +#10 1252.9 [5766/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp.o +#10 1253.3 [5767/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroup.cpp.o +#10 1254.2 [5768/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/socket.cpp.o +#10 1256.3 [5769/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp.o +#10 1257.1 [5770/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Work.cpp.o +#10 1257.2 [5771/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/utils.cpp.o +#10 1258.0 [5772/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/autograd.cpp.o +#10 1259.7 [5773/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp.o +#10 1260.4 [5774/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/container.cpp.o +#10 1260.8 [5775/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logger.cpp.o +#10 1261.8 [5776/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp.o +#10 1262.3 [5777/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/context.cpp.o +#10 1264.3 [5778/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/reducer.cpp.o +#10 1265.9 [5779/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp.o +#10 1265.9 [5780/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/default_comm_hooks.cpp.o +#10 1267.1 [5781/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp.o +#10 1267.1 [5782/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/engine/dist_engine.cpp.o +#10 1268.0 [5783/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/HashStore.cpp.o +#10 1268.4 [5784/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp.o +#10 1268.4 [5785/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp.o +#10 1269.3 [5786/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp.o +#10 1270.9 [5787/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp.o +#10 1273.5 [5788/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp.o +#10 1273.9 [5789/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp.o +#10 1274.6 [5790/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/message.cpp.o +#10 1274.8 [5791/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp.o +#10 1276.1 [5792/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp.o +#10 1277.0 [5793/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp.o +#10 1277.3 [5794/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_call.cpp.o +#10 1278.7 [5795/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_resp.cpp.o +#10 1280.4 [5796/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp.o +#10 1280.7 [5797/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_remote_call.cpp.o +#10 1282.4 [5798/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback.cpp.o +#10 1283.2 [5799/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rpc_agent.cpp.o +#10 1284.4 [5800/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/agent_utils.cpp.o +#10 1286.0 [5801/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o +#10 1286.0 [5802/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/types.cpp.o +#10 1288.9 [5803/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_resp.cpp.o +#10 1290.7 [5804/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_utils.cpp.o +#10 1290.7 [5805/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_proto.cpp.o +#10 1290.9 [5806/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_impl.cpp.o +#10 1291.5 [5807/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o +#10 1291.6 [5808/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_remote_call.cpp.o +#10 1292.6 [5809/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_context.cpp.o +#10 1294.3 [5810/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_call.cpp.o +#10 1294.8 [5811/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback_no_python.cpp.o +#10 1295.9 [5812/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o +#10 1297.6 [5813/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp.o +#10 1297.7 [5814/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o +#10 1298.3 [5815/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o +#10 1301.9 [5816/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o +#10 1302.4 [5817/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o +#10 1303.3 [5818/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/torchscript_functions.cpp.o +#10 1304.3 [5819/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o +#10 1304.5 [5820/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o +#10 1306.7 [5821/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/utils.cpp.o +#10 1306.7 [5822/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_agent.cpp.o +#10 1307.2 [5823/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o +#10 1308.8 [5824/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o +#10 1310.0 [5825/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o +#10 1311.7 [5826/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o +#10 1313.0 [5827/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o +#10 1314.2 [5828/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o +#10 1317.5 [5829/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o +#10 1318.1 [5830/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o +#10 1318.8 [5831/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o +#10 1319.6 [5832/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o +#10 1319.6 [5833/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o +#10 1323.4 [5834/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o +#10 1324.1 [5835/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o +#10 1324.2 [5836/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o +#10 1324.6 [5837/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o +#10 1326.2 [5838/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o +#10 1327.7 [5839/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o +#10 1328.0 [5840/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o +#10 1328.9 [5841/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o +#10 1329.0 [5842/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o +#10 1332.2 [5843/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o +#10 1332.8 [5844/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o +#10 1333.3 [5845/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o +#10 1333.7 [5846/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o +#10 1334.2 [5847/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o +#10 1334.6 [5848/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o +#10 1335.3 [5849/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o +#10 1335.4 [5850/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o +#10 1336.3 [5851/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o +#10 1336.4 [5852/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o +#10 1337.4 [5853/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o +#10 1337.5 [5854/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o +#10 1337.8 [5855/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o +#10 1339.6 [5856/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o +#10 1340.0 [5857/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o +#10 1342.9 [5858/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.AVX2.cpp.o +#10 1343.4 [5859/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.AVX2.cpp.o +#10 1344.9 [5860/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o +#10 1345.6 [5861/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.AVX2.cpp.o +#10 1345.6 In file included from ../c10/core/ScalarType.h:3, +#10 1345.6 from ../aten/src/ATen/AccumulateType.h:3, +#10 1345.6 from ../aten/src/ATen/native/Math.h:3, +#10 1345.6 from ../aten/src/ATen/cpu/vec/vec_base.h:25, +#10 1345.6 from ../aten/src/ATen/cpu/vec/vec256/vec256.h:8, +#10 1345.6 from ../aten/src/ATen/cpu/vec/vec.h:6, +#10 1345.6 from ../aten/src/ATen/cpu/vec/functional_base.h:6, +#10 1345.6 from ../aten/src/ATen/cpu/vec/functional.h:3, +#10 1345.6 from ../aten/src/ATen/native/ufunc/add.h:6, +#10 1345.6 from /pytorch/build/aten/src/ATen/UfuncCPUKernel_add.cpp:3, +#10 1345.6 from aten/src/ATen/UfuncCPUKernel_add.cpp.AVX2.cpp:1: +#10 1345.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1345.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1345.6 37 | res = *tempRes; +#10 1345.6 | ~~~~^~~~~~~~~~ +#10 1345.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1345.6 28 | uint32_t tmp = src; +#10 1345.6 | ^~~ +#10 1345.7 [5862/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o +#10 1346.9 [5863/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o +#10 1347.0 [5864/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.AVX2.cpp.o +#10 1348.2 [5865/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o +#10 1348.6 [5866/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o +#10 1349.4 [5867/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.AVX2.cpp.o +#10 1351.0 [5868/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o +#10 1351.2 [5869/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o +#10 1351.4 [5870/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o +#10 1351.8 [5871/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o +#10 1353.1 [5872/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o +#10 1353.8 [5873/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.AVX2.cpp.o +#10 1353.8 In file included from ../c10/core/ScalarType.h:3, +#10 1353.8 from ../c10/core/Scalar.h:11, +#10 1353.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1353.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1353.8 from ../aten/src/ATen/native/layer_norm.h:3, +#10 1353.8 from /pytorch/aten/src/ATen/native/cpu/layer_norm_kernel.cpp:2, +#10 1353.8 from aten/src/ATen/native/cpu/layer_norm_kernel.cpp.AVX2.cpp:1: +#10 1353.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1353.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1353.8 37 | res = *tempRes; +#10 1353.8 | ~~~~^~~~~~~~~~ +#10 1353.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1353.8 28 | uint32_t tmp = src; +#10 1353.8 | ^~~ +#10 1354.6 [5874/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.AVX2.cpp.o +#10 1354.6 In file included from ../c10/core/ScalarType.h:3, +#10 1354.6 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1354.6 from /pytorch/aten/src/ATen/native/cpu/WeightNormKernel.cpp:2, +#10 1354.6 from aten/src/ATen/native/cpu/WeightNormKernel.cpp.AVX2.cpp:1: +#10 1354.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1354.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1354.6 37 | res = *tempRes; +#10 1354.6 | ~~~~^~~~~~~~~~ +#10 1354.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1354.6 28 | uint32_t tmp = src; +#10 1354.6 | ^~~ +#10 1355.8 [5875/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.AVX2.cpp.o +#10 1355.8 In file included from ../c10/core/ScalarType.h:3, +#10 1355.8 from ../c10/core/Scalar.h:11, +#10 1355.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1355.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1355.8 from /pytorch/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp:2, +#10 1355.8 from aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.AVX2.cpp:1: +#10 1355.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1355.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1355.8 37 | res = *tempRes; +#10 1355.8 | ~~~~^~~~~~~~~~ +#10 1355.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1355.8 28 | uint32_t tmp = src; +#10 1355.8 | ^~~ +#10 1356.4 [5876/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.AVX2.cpp.o +#10 1356.4 In file included from ../c10/core/ScalarType.h:3, +#10 1356.4 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1356.4 from ../aten/src/ATen/Dispatch.h:3, +#10 1356.4 from /pytorch/aten/src/ATen/native/cpu/Unfold2d.cpp:2, +#10 1356.4 from aten/src/ATen/native/cpu/Unfold2d.cpp.AVX2.cpp:1: +#10 1356.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1356.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1356.4 37 | res = *tempRes; +#10 1356.4 | ~~~~^~~~~~~~~~ +#10 1356.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1356.4 28 | uint32_t tmp = src; +#10 1356.4 | ^~~ +#10 1356.5 [5877/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.AVX2.cpp.o +#10 1358.4 [5878/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.AVX2.cpp.o +#10 1358.4 In file included from ../c10/core/ScalarType.h:3, +#10 1358.4 from ../c10/core/Scalar.h:11, +#10 1358.4 from aten/src/ATen/core/TensorBody.h:16, +#10 1358.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 1358.4 from ../aten/src/ATen/native/batch_norm.h:3, +#10 1358.4 from /pytorch/aten/src/ATen/native/cpu/batch_norm_kernel.cpp:2, +#10 1358.4 from aten/src/ATen/native/cpu/batch_norm_kernel.cpp.AVX2.cpp:1: +#10 1358.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1358.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1358.4 37 | res = *tempRes; +#10 1358.4 | ~~~~^~~~~~~~~~ +#10 1358.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1358.4 28 | uint32_t tmp = src; +#10 1358.4 | ^~~ +#10 1358.9 [5879/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.AVX2.cpp.o +#10 1360.7 [5880/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.AVX2.cpp.o +#10 1360.7 In file included from ../c10/core/ScalarType.h:3, +#10 1360.7 from ../aten/src/ATen/AccumulateType.h:3, +#10 1360.7 from /pytorch/aten/src/ATen/native/cpu/SumKernel.cpp:2, +#10 1360.7 from aten/src/ATen/native/cpu/SumKernel.cpp.AVX2.cpp:1: +#10 1360.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1360.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1360.7 37 | res = *tempRes; +#10 1360.7 | ~~~~^~~~~~~~~~ +#10 1360.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1360.7 28 | uint32_t tmp = src; +#10 1360.7 | ^~~ +#10 1361.1 [5881/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.AVX2.cpp.o +#10 1361.1 In file included from ../c10/core/ScalarType.h:3, +#10 1361.1 from ../c10/core/Scalar.h:11, +#10 1361.1 from aten/src/ATen/core/TensorBody.h:16, +#10 1361.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 1361.1 from /pytorch/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp:4, +#10 1361.1 from aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.AVX2.cpp:1: +#10 1361.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1361.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1361.1 37 | res = *tempRes; +#10 1361.1 | ~~~~^~~~~~~~~~ +#10 1361.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1361.1 28 | uint32_t tmp = src; +#10 1361.1 | ^~~ +#10 1362.0 [5882/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.AVX2.cpp.o +#10 1363.3 [5883/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.AVX2.cpp.o +#10 1363.3 In file included from ../c10/core/ScalarType.h:3, +#10 1363.3 from ../c10/core/Scalar.h:11, +#10 1363.3 from aten/src/ATen/core/TensorBody.h:16, +#10 1363.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 1363.3 from /pytorch/aten/src/ATen/native/cpu/group_norm_kernel.cpp:8, +#10 1363.3 from aten/src/ATen/native/cpu/group_norm_kernel.cpp.AVX2.cpp:1: +#10 1363.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1363.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1363.3 37 | res = *tempRes; +#10 1363.3 | ~~~~^~~~~~~~~~ +#10 1363.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1363.3 28 | uint32_t tmp = src; +#10 1363.3 | ^~~ +#10 1364.1 [5884/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o +#10 1364.1 In file included from ../c10/core/ScalarType.h:3, +#10 1364.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1364.1 from ../aten/src/ATen/Dispatch.h:3, +#10 1364.1 from /pytorch/aten/src/ATen/native/cpu/SoftMaxKernel.cpp:8, +#10 1364.1 from aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp:1: +#10 1364.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1364.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1364.1 37 | res = *tempRes; +#10 1364.1 | ~~~~^~~~~~~~~~ +#10 1364.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1364.1 28 | uint32_t tmp = src; +#10 1364.1 | ^~~ +#10 1364.8 [5885/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.AVX2.cpp.o +#10 1364.8 In file included from ../c10/core/ScalarType.h:3, +#10 1364.8 from ../c10/core/Scalar.h:11, +#10 1364.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1364.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1364.8 from /pytorch/aten/src/ATen/native/cpu/UpSampleKernel.cpp:2, +#10 1364.8 from aten/src/ATen/native/cpu/UpSampleKernel.cpp.AVX2.cpp:1: +#10 1364.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1364.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1364.8 37 | res = *tempRes; +#10 1364.8 | ~~~~^~~~~~~~~~ +#10 1364.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1364.8 28 | uint32_t tmp = src; +#10 1364.8 | ^~~ +#10 1365.3 [5886/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.AVX2.cpp.o +#10 1368.5 [5887/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.AVX2.cpp.o +#10 1368.5 In file included from ../c10/core/ScalarType.h:3, +#10 1368.5 from ../c10/core/Scalar.h:11, +#10 1368.5 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 1368.5 from /pytorch/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp:2, +#10 1368.5 from aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.AVX2.cpp:1: +#10 1368.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1368.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1368.5 37 | res = *tempRes; +#10 1368.5 | ~~~~^~~~~~~~~~ +#10 1368.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1368.5 28 | uint32_t tmp = src; +#10 1368.5 | ^~~ +#10 1370.7 [5888/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.AVX2.cpp.o +#10 1370.9 [5889/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.AVX2.cpp.o +#10 1370.9 In file included from ../c10/core/ScalarType.h:3, +#10 1370.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1370.9 from ../aten/src/ATen/Dispatch.h:3, +#10 1370.9 from /pytorch/aten/src/ATen/native/cpu/PowKernel.cpp:3, +#10 1370.9 from aten/src/ATen/native/cpu/PowKernel.cpp.AVX2.cpp:1: +#10 1370.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1370.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1370.9 37 | res = *tempRes; +#10 1370.9 | ~~~~^~~~~~~~~~ +#10 1370.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1370.9 28 | uint32_t tmp = src; +#10 1370.9 | ^~~ +#10 1372.0 [5890/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.AVX2.cpp.o +#10 1372.8 [5891/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.AVX2.cpp.o +#10 1372.8 [5892/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.AVX2.cpp.o +#10 1372.8 In file included from ../c10/core/ScalarType.h:3, +#10 1372.8 from ../c10/core/Scalar.h:11, +#10 1372.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1372.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1372.8 from /pytorch/aten/src/ATen/native/cpu/MultinomialKernel.cpp:2, +#10 1372.8 from aten/src/ATen/native/cpu/MultinomialKernel.cpp.AVX2.cpp:1: +#10 1372.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1372.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1372.8 37 | res = *tempRes; +#10 1372.8 | ~~~~^~~~~~~~~~ +#10 1372.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1372.8 28 | uint32_t tmp = src; +#10 1372.8 | ^~~ +#10 1372.9 [5893/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o +#10 1372.9 In file included from ../c10/core/ScalarType.h:3, +#10 1372.9 from ../c10/core/Scalar.h:11, +#10 1372.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1372.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1372.9 from /pytorch/aten/src/ATen/native/cpu/TensorCompareKernel.cpp:2, +#10 1372.9 from aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp:1: +#10 1372.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1372.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1372.9 37 | res = *tempRes; +#10 1372.9 | ~~~~^~~~~~~~~~ +#10 1372.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1372.9 28 | uint32_t tmp = src; +#10 1372.9 | ^~~ +#10 1374.0 [5894/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.AVX2.cpp.o +#10 1374.0 In file included from ../c10/core/ScalarType.h:3, +#10 1374.0 from ../c10/core/Scalar.h:11, +#10 1374.0 from aten/src/ATen/core/TensorBody.h:16, +#10 1374.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 1374.0 from /pytorch/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp:2, +#10 1374.0 from aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.AVX2.cpp:1: +#10 1374.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1374.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1374.0 37 | res = *tempRes; +#10 1374.0 | ~~~~^~~~~~~~~~ +#10 1374.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1374.0 28 | uint32_t tmp = src; +#10 1374.0 | ^~~ +#10 1374.9 [5895/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.AVX2.cpp.o +#10 1374.9 In file included from ../c10/core/ScalarType.h:3, +#10 1374.9 from ../c10/core/Scalar.h:11, +#10 1374.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1374.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1374.9 from /pytorch/aten/src/ATen/native/cpu/MaxPooling.cpp:2, +#10 1374.9 from aten/src/ATen/native/cpu/MaxPooling.cpp.AVX2.cpp:1: +#10 1374.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1374.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1374.9 37 | res = *tempRes; +#10 1374.9 | ~~~~^~~~~~~~~~ +#10 1374.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1374.9 28 | uint32_t tmp = src; +#10 1374.9 | ^~~ +#10 1375.1 [5896/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.AVX2.cpp.o +#10 1375.1 In file included from ../c10/core/ScalarType.h:3, +#10 1375.1 from ../c10/core/Scalar.h:11, +#10 1375.1 from aten/src/ATen/core/TensorBody.h:16, +#10 1375.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 1375.1 from /pytorch/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp:2, +#10 1375.1 from aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.AVX2.cpp:1: +#10 1375.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1375.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1375.1 37 | res = *tempRes; +#10 1375.1 | ~~~~^~~~~~~~~~ +#10 1375.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1375.1 28 | uint32_t tmp = src; +#10 1375.1 | ^~~ +#10 1376.4 [5897/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.AVX2.cpp.o +#10 1376.4 In file included from ../c10/core/ScalarType.h:3, +#10 1376.4 from ../aten/src/ATen/OpMathType.h:3, +#10 1376.4 from ../aten/src/ATen/native/Lerp.h:4, +#10 1376.4 from /pytorch/aten/src/ATen/native/cpu/LerpKernel.cpp:2, +#10 1376.4 from aten/src/ATen/native/cpu/LerpKernel.cpp.AVX2.cpp:1: +#10 1376.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1376.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1376.4 37 | res = *tempRes; +#10 1376.4 | ~~~~^~~~~~~~~~ +#10 1376.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1376.4 28 | uint32_t tmp = src; +#10 1376.4 | ^~~ +#10 1377.2 [5898/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.o +#10 1377.2 In file included from ../c10/core/ScalarType.h:3, +#10 1377.2 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1377.2 from ../aten/src/ATen/Dispatch.h:3, +#10 1377.2 from /pytorch/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp:4, +#10 1377.2 from aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp:1: +#10 1377.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1377.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1377.2 37 | res = *tempRes; +#10 1377.2 | ~~~~^~~~~~~~~~ +#10 1377.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1377.2 28 | uint32_t tmp = src; +#10 1377.2 | ^~~ +#10 1377.6 [5899/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.AVX2.cpp.o +#10 1377.6 In file included from ../c10/core/ScalarType.h:3, +#10 1377.6 from ../c10/core/Scalar.h:11, +#10 1377.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1377.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1377.6 from ../aten/src/ATen/native/AdaptivePooling.h:3, +#10 1377.6 from /pytorch/aten/src/ATen/native/cpu/MaxPoolKernel.cpp:2, +#10 1377.6 from aten/src/ATen/native/cpu/MaxPoolKernel.cpp.AVX2.cpp:1: +#10 1377.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1377.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1377.6 37 | res = *tempRes; +#10 1377.6 | ~~~~^~~~~~~~~~ +#10 1377.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1377.6 28 | uint32_t tmp = src; +#10 1377.6 | ^~~ +#10 1378.7 [5900/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.AVX2.cpp.o +#10 1378.7 In file included from ../c10/core/ScalarType.h:3, +#10 1378.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1378.7 from ../aten/src/ATen/Dispatch.h:3, +#10 1378.7 from /pytorch/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp:3, +#10 1378.7 from aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.AVX2.cpp:1: +#10 1378.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1378.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1378.7 37 | res = *tempRes; +#10 1378.7 | ~~~~^~~~~~~~~~ +#10 1378.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1378.7 28 | uint32_t tmp = src; +#10 1378.7 | ^~~ +#10 1379.9 [5901/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.AVX2.cpp.o +#10 1379.9 In file included from ../c10/core/ScalarType.h:3, +#10 1379.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1379.9 from ../aten/src/ATen/Dispatch.h:3, +#10 1379.9 from /pytorch/aten/src/ATen/native/cpu/FillKernel.cpp:2, +#10 1379.9 from aten/src/ATen/native/cpu/FillKernel.cpp.AVX2.cpp:1: +#10 1379.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1379.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1379.9 37 | res = *tempRes; +#10 1379.9 | ~~~~^~~~~~~~~~ +#10 1379.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1379.9 28 | uint32_t tmp = src; +#10 1379.9 | ^~~ +#10 1380.7 [5902/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.AVX2.cpp.o +#10 1380.7 In file included from ../c10/core/ScalarType.h:3, +#10 1380.7 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1380.7 from /pytorch/aten/src/ATen/native/cpu/SortingKernel.cpp:3, +#10 1380.7 from aten/src/ATen/native/cpu/SortingKernel.cpp.AVX2.cpp:1: +#10 1380.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1380.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1380.7 37 | res = *tempRes; +#10 1380.7 | ~~~~^~~~~~~~~~ +#10 1380.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1380.7 28 | uint32_t tmp = src; +#10 1380.7 | ^~~ +#10 1381.4 [5903/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.AVX2.cpp.o +#10 1381.4 In file included from ../c10/core/ScalarType.h:3, +#10 1381.4 from ../c10/core/Scalar.h:11, +#10 1381.4 from aten/src/ATen/core/TensorBody.h:16, +#10 1381.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 1381.4 from ../aten/src/ATen/native/Histogram.h:3, +#10 1381.4 from /pytorch/aten/src/ATen/native/cpu/HistogramKernel.cpp:2, +#10 1381.4 from aten/src/ATen/native/cpu/HistogramKernel.cpp.AVX2.cpp:1: +#10 1381.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1381.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1381.4 37 | res = *tempRes; +#10 1381.4 | ~~~~^~~~~~~~~~ +#10 1381.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1381.4 28 | uint32_t tmp = src; +#10 1381.4 | ^~~ +#10 1382.5 [5904/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.AVX2.cpp.o +#10 1383.2 [5905/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.AVX2.cpp.o +#10 1383.2 In file included from ../c10/core/ScalarType.h:3, +#10 1383.2 from ../c10/core/Scalar.h:11, +#10 1383.2 from aten/src/ATen/core/TensorBody.h:16, +#10 1383.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 1383.2 from /pytorch/aten/src/ATen/native/cpu/CrossKernel.cpp:9, +#10 1383.2 from aten/src/ATen/native/cpu/CrossKernel.cpp.AVX2.cpp:1: +#10 1383.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1383.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1383.2 37 | res = *tempRes; +#10 1383.2 | ~~~~^~~~~~~~~~ +#10 1383.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1383.2 28 | uint32_t tmp = src; +#10 1383.2 | ^~~ +#10 1383.2 [5906/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.AVX2.cpp.o +#10 1383.2 In file included from ../c10/core/ScalarType.h:3, +#10 1383.2 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1383.2 from ../aten/src/ATen/native/NonEmptyUtils.h:1, +#10 1383.2 from /pytorch/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp:2, +#10 1383.2 from aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.AVX2.cpp:1: +#10 1383.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1383.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1383.2 37 | res = *tempRes; +#10 1383.2 | ~~~~^~~~~~~~~~ +#10 1383.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1383.2 28 | uint32_t tmp = src; +#10 1383.2 | ^~~ +#10 1383.6 [5907/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.AVX2.cpp.o +#10 1383.6 In file included from ../c10/core/ScalarType.h:3, +#10 1383.6 from ../c10/core/Scalar.h:11, +#10 1383.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1383.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1383.6 from /pytorch/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp:3, +#10 1383.6 from aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.AVX2.cpp:1: +#10 1383.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1383.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1383.6 37 | res = *tempRes; +#10 1383.6 | ~~~~^~~~~~~~~~ +#10 1383.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1383.6 28 | uint32_t tmp = src; +#10 1383.6 | ^~~ +#10 1385.1 [5908/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.AVX2.cpp.o +#10 1386.1 [5909/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o +#10 1386.9 [5910/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o +#10 1386.9 In file included from ../c10/core/ScalarType.h:3, +#10 1386.9 from ../c10/core/Scalar.h:11, +#10 1386.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1386.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1386.9 from /pytorch/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp:4, +#10 1386.9 from aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp:1: +#10 1386.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1386.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1386.9 37 | res = *tempRes; +#10 1386.9 | ~~~~^~~~~~~~~~ +#10 1386.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1386.9 28 | uint32_t tmp = src; +#10 1386.9 | ^~~ +#10 1387.0 [5911/6823] Linking CXX static library lib/libcaffe2_protos.a +#10 1387.4 [5912/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.AVX2.cpp.o +#10 1387.4 In file included from ../c10/core/ScalarType.h:3, +#10 1387.4 from ../c10/core/StorageImpl.h:4, +#10 1387.4 from ../c10/core/Storage.h:3, +#10 1387.4 from ../c10/core/TensorImpl.h:8, +#10 1387.4 from ../c10/core/GeneratorImpl.h:8, +#10 1387.4 from ../aten/src/ATen/core/Generator.h:22, +#10 1387.4 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1387.4 from /pytorch/aten/src/ATen/native/cpu/DistributionKernels.cpp:2, +#10 1387.4 from aten/src/ATen/native/cpu/DistributionKernels.cpp.AVX2.cpp:1: +#10 1387.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1387.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1387.4 37 | res = *tempRes; +#10 1387.4 | ~~~~^~~~~~~~~~ +#10 1387.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1387.4 28 | uint32_t tmp = src; +#10 1387.4 | ^~~ +#10 1387.8 [5913/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.AVX2.cpp.o +#10 1388.7 [5914/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.AVX2.cpp.o +#10 1389.2 [5915/6823] Building CXX object test_edge_op_registration/CMakeFiles/test_edge_op_registration.dir/test_main.cpp.o +#10 1390.6 [5916/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.AVX2.cpp.o +#10 1390.6 In file included from ../c10/core/ScalarType.h:3, +#10 1390.6 from ../c10/core/Scalar.h:11, +#10 1390.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1390.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1390.6 from /pytorch/aten/src/ATen/native/cpu/AvgPoolKernel.cpp:2, +#10 1390.6 from aten/src/ATen/native/cpu/AvgPoolKernel.cpp.AVX2.cpp:1: +#10 1390.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1390.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1390.6 37 | res = *tempRes; +#10 1390.6 | ~~~~^~~~~~~~~~ +#10 1390.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1390.6 28 | uint32_t tmp = src; +#10 1390.6 | ^~~ +#10 1391.4 [5917/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.AVX2.cpp.o +#10 1391.4 In file included from ../c10/core/ScalarType.h:3, +#10 1391.4 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1391.4 from ../aten/src/ATen/Dispatch.h:3, +#10 1391.4 from /pytorch/aten/src/ATen/native/cpu/BlasKernel.cpp:2, +#10 1391.4 from aten/src/ATen/native/cpu/BlasKernel.cpp.AVX2.cpp:1: +#10 1391.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1391.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1391.4 37 | res = *tempRes; +#10 1391.4 | ~~~~^~~~~~~~~~ +#10 1391.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1391.4 28 | uint32_t tmp = src; +#10 1391.4 | ^~~ +#10 1391.6 [5918/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.AVX2.cpp.o +#10 1391.6 In file included from ../c10/core/ScalarType.h:3, +#10 1391.6 from ../c10/core/Scalar.h:11, +#10 1391.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1391.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1391.6 from /pytorch/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp:2, +#10 1391.6 from aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.AVX2.cpp:1: +#10 1391.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1391.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1391.6 37 | res = *tempRes; +#10 1391.6 | ~~~~^~~~~~~~~~ +#10 1391.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1391.6 28 | uint32_t tmp = src; +#10 1391.6 | ^~~ +#10 1392.6 [5919/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.AVX2.cpp.o +#10 1392.6 In file included from ../c10/core/ScalarType.h:3, +#10 1392.6 from ../c10/core/Scalar.h:11, +#10 1392.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1392.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1392.6 from /pytorch/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp:2, +#10 1392.6 from aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.AVX2.cpp:1: +#10 1392.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1392.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1392.6 37 | res = *tempRes; +#10 1392.6 | ~~~~^~~~~~~~~~ +#10 1392.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1392.6 28 | uint32_t tmp = src; +#10 1392.6 | ^~~ +#10 1393.4 [5920/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/custom_ops.cpp.o +#10 1394.9 [5921/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/__/out/RegisterCPUCustomOps.cpp.o +#10 1395.1 [5922/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o +#10 1395.1 In file included from ../c10/core/ScalarType.h:3, +#10 1395.1 from ../c10/core/StorageImpl.h:4, +#10 1395.1 from ../c10/core/Storage.h:3, +#10 1395.1 from ../c10/core/TensorImpl.h:8, +#10 1395.1 from ../c10/core/GeneratorImpl.h:8, +#10 1395.1 from ../aten/src/ATen/core/Generator.h:22, +#10 1395.1 from ../aten/src/ATen/Generator.h:2, +#10 1395.1 from ../aten/src/ATen/native/UnaryOps.h:4, +#10 1395.1 from /pytorch/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp:2, +#10 1395.1 from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp:1: +#10 1395.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1395.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1395.1 37 | res = *tempRes; +#10 1395.1 | ~~~~^~~~~~~~~~ +#10 1395.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1395.1 28 | uint32_t tmp = src; +#10 1395.1 | ^~~ +#10 1395.7 [5923/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.AVX2.cpp.o +#10 1395.7 In file included from ../c10/core/ScalarType.h:3, +#10 1395.7 from ../c10/core/StorageImpl.h:4, +#10 1395.7 from ../c10/core/Storage.h:3, +#10 1395.7 from ../c10/core/TensorImpl.h:8, +#10 1395.7 from ../c10/core/GeneratorImpl.h:8, +#10 1395.7 from ../aten/src/ATen/core/Generator.h:22, +#10 1395.7 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1395.7 from ../aten/src/ATen/Context.h:3, +#10 1395.7 from /pytorch/aten/src/ATen/native/cpu/IndexKernel.cpp:7, +#10 1395.7 from aten/src/ATen/native/cpu/IndexKernel.cpp.AVX2.cpp:1: +#10 1395.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1395.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1395.7 37 | res = *tempRes; +#10 1395.7 | ~~~~^~~~~~~~~~ +#10 1395.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1395.7 28 | uint32_t tmp = src; +#10 1395.7 | ^~~ +#10 1396.6 [5924/6823] Building CXX object test_edge_op_registration/CMakeFiles/test_edge_op_registration.dir/test_operator_registration.cpp.o +#10 1397.3 [5925/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/operator_registry.cpp.o +#10 1397.9 [5926/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/__/out/RegisterCodegenUnboxedKernelsEverything.cpp.o +#10 1398.5 [5927/6823] Building CXX object test_cpp_c10d/CMakeFiles/FileStoreTest.dir/FileStoreTest.cpp.o +#10 1399.3 [5928/6823] Building CXX object test_cpp_c10d/CMakeFiles/TCPStoreTest.dir/TCPStoreTest.cpp.o +#10 1399.5 [5929/6823] Building CXX object test_cpp_c10d/CMakeFiles/HashStoreTest.dir/HashStoreTest.cpp.o +#10 1401.5 [5930/6823] Building CXX object test_cpp_c10d/CMakeFiles/example_allreduce.dir/example/allreduce.cpp.o +#10 1402.6 [5931/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o +#10 1403.3 [5932/6823] Building CXX object test_cpp_c10d/CMakeFiles/ProcessGroupGlooTest.dir/ProcessGroupGlooTest.cpp.o +#10 1403.5 [5933/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o +#10 1403.5 In file included from ../c10/core/ScalarType.h:3, +#10 1403.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1403.5 from ../aten/src/ATen/Dispatch.h:3, +#10 1403.5 from /pytorch/aten/src/ATen/native/cpu/Activation.cpp:12, +#10 1403.5 from aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp:1: +#10 1403.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1403.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1403.5 37 | res = *tempRes; +#10 1403.5 | ~~~~^~~~~~~~~~ +#10 1403.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1403.5 28 | uint32_t tmp = src; +#10 1403.5 | ^~~ +#10 1403.5 [5934/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.AVX2.cpp.o +#10 1403.5 In file included from ../c10/core/ScalarType.h:3, +#10 1403.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1403.5 from ../aten/src/ATen/Dispatch.h:3, +#10 1403.5 from /pytorch/aten/src/ATen/native/cpu/CopyKernel.cpp:2, +#10 1403.5 from aten/src/ATen/native/cpu/CopyKernel.cpp.AVX2.cpp:1: +#10 1403.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1403.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1403.5 37 | res = *tempRes; +#10 1403.5 | ~~~~^~~~~~~~~~ +#10 1403.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1403.5 28 | uint32_t tmp = src; +#10 1403.5 | ^~~ +#10 1422.7 [5935/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o +#10 1422.7 In file included from ../c10/core/ScalarType.h:3, +#10 1422.7 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1422.7 from ../aten/src/ATen/native/BinaryOps.h:3, +#10 1422.7 from /pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp:2, +#10 1422.7 from aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp:1: +#10 1422.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1422.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1422.7 37 | res = *tempRes; +#10 1422.7 | ~~~~^~~~~~~~~~ +#10 1422.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1422.7 28 | uint32_t tmp = src; +#10 1422.7 | ^~~ +#10 1430.4 [5936/6823] Linking CXX shared library lib/libtorch_cpu.so +#10 1442.8 [5937/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionUniform.hip.o +#10 1442.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1442.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1442.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1442.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1442.8 ^ +#10 1442.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1442.8 DEPRECATED("use atomicAdd instead") +#10 1442.8 ^ +#10 1442.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1442.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1442.8 ^ +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1442.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1442.8 hipGetLastError(); +#10 1442.8 ^~~~~~~~~~~~~~~ +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1442.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1442.8 hipEventDestroy(event_); +#10 1442.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1442.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1442.8 hipGetLastError(); +#10 1442.8 ^~~~~~~~~~~~~~~ +#10 1442.8 4 warnings generated when compiling for gfx803. +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1442.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1442.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1442.8 ^ +#10 1442.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1442.8 DEPRECATED("use atomicAdd instead") +#10 1442.8 ^ +#10 1442.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1442.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1442.8 ^ +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1442.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1442.8 hipGetLastError(); +#10 1442.8 ^~~~~~~~~~~~~~~ +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1442.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1442.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1442.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1442.8 hipEventDestroy(event_); +#10 1442.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1442.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1442.8 hipGetLastError(); +#10 1442.8 ^~~~~~~~~~~~~~~ +#10 1442.8 4 warnings generated when compiling for host. +#10 1446.2 [5938/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationSiluKernel.hip.o +#10 1446.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1446.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1446.9 [5939/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationLeakyReluKernel.hip.o +#10 1446.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1446.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.3 [5940/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationGluKernel.hip.o +#10 1447.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.3 [5941/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationEluKernel.hip.o +#10 1447.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.4 [5942/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_jiterator.hip.o +#10 1447.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.4 In file included from /pytorch/aten/src/ATen/hip/jiterator.hip:6: +#10 1447.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1447.4 hipGetLastError(); +#10 1447.4 ^~~~~~~~~~~~~~~ +#10 1447.4 1 warning generated when compiling for gfx803. +#10 1447.4 In file included from /pytorch/aten/src/ATen/hip/jiterator.hip:6: +#10 1447.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1447.4 hipGetLastError(); +#10 1447.4 ^~~~~~~~~~~~~~~ +#10 1447.4 1 warning generated when compiling for host. +#10 1447.6 [5943/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MaxUnpooling.hip.o +#10 1447.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.9 [5944/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_AdaptiveAveragePooling.hip.o +#10 1447.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1447.9 In file included from /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip:7: +#10 1447.9 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1447.9 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1447.9 ^ +#10 1447.9 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1447.9 DEPRECATED("use atomicAdd instead") +#10 1447.9 ^ +#10 1447.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1447.9 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1447.9 ^ +#10 1447.9 1 warning generated when compiling for gfx803. +#10 1447.9 In file included from /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip:7: +#10 1447.9 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1447.9 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1447.9 ^ +#10 1447.9 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1447.9 DEPRECATED("use atomicAdd instead") +#10 1447.9 ^ +#10 1447.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1447.9 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1447.9 ^ +#10 1447.9 1 warning generated when compiling for host. +#10 1449.9 [5945/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationGeluKernel.hip.o +#10 1449.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1449.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1452.0 [5946/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryGeometricKernels.hip.o +#10 1452.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1452.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1455.1 [5947/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationHardshrinkKernel.hip.o +#10 1455.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1455.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1456.6 [5948/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryDivTrueKernel.hip.o +#10 1456.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1456.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1456.6 In file included from /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip:8: +#10 1456.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1456.6 hipGetLastError(); +#10 1456.6 ^~~~~~~~~~~~~~~ +#10 1456.6 1 warning generated when compiling for gfx803. +#10 1456.6 In file included from /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip:8: +#10 1456.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1456.6 hipGetLastError(); +#10 1456.6 ^~~~~~~~~~~~~~~ +#10 1456.6 1 warning generated when compiling for host. +#10 1461.8 [5949/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_cub.hip.o +#10 1461.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1461.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1461.8 inclusive_scan(input, output, Sum{}, num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1461.8 inclusive_scan(input, output, Sum{}, num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1461.8 inclusive_scan(input, output, Sum{}, num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, int, 1073741824>' requested here +#10 1461.8 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long, 1073741824>' requested here +#10 1461.8 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:50:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long *, at::cuda::cub::(anonymous namespace)::SumOp, long, 1073741824>' requested here +#10 1461.8 exclusive_scan(iter, output_idx, SumOp{}, int64_t{0}, n); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 12 warnings generated when compiling for gfx803. +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1461.8 inclusive_scan(input, output, Sum{}, num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1461.8 inclusive_scan(input, output, Sum{}, num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1461.8 inclusive_scan(input, output, Sum{}, num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, int, 1073741824>' requested here +#10 1461.8 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long, 1073741824>' requested here +#10 1461.8 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.hip:50:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long *, at::cuda::cub::(anonymous namespace)::SumOp, long, 1073741824>' requested here +#10 1461.8 exclusive_scan(iter, output_idx, SumOp{}, int64_t{0}, n); +#10 1461.8 ^ +#10 1461.8 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1461.8 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1461.8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1461.8 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1461.8 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1461.8 ^~~~ +#10 1461.8 12 warnings generated when compiling for host. +#10 1462.4 [5950/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_AbsKernel.hip.o +#10 1462.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1462.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1470.1 [5951/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMiscBackwardOpsKernels.hip.o +#10 1470.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1470.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1471.3 [5952/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Bucketization.hip.o +#10 1471.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1471.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1474.5 [5953/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ScatterGatherKernel.hip.o +#10 1474.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1474.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1474.5 In file included from /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip:15: +#10 1474.5 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1474.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1474.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1474.5 ^ +#10 1474.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1474.5 DEPRECATED("use atomicAdd instead") +#10 1474.5 ^ +#10 1474.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1474.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1474.5 ^ +#10 1474.5 1 warning generated when compiling for gfx803. +#10 1474.5 In file included from /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip:15: +#10 1474.5 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1474.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1474.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1474.5 ^ +#10 1474.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1474.5 DEPRECATED("use atomicAdd instead") +#10 1474.5 ^ +#10 1474.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1474.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1474.5 ^ +#10 1474.5 1 warning generated when compiling for host. +#10 1475.5 [5954/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMulKernel.hip.o +#10 1475.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1475.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1475.5 In file included from /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip:8: +#10 1475.5 In file included from /pytorch/aten/src/ATen/native/hip/BinaryInternal.h:11: +#10 1475.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1475.5 hipGetLastError(); +#10 1475.5 ^~~~~~~~~~~~~~~ +#10 1475.5 1 warning generated when compiling for gfx803. +#10 1475.5 In file included from /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip:8: +#10 1475.5 In file included from /pytorch/aten/src/ATen/native/hip/BinaryInternal.h:11: +#10 1475.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1475.5 hipGetLastError(); +#10 1475.5 ^~~~~~~~~~~~~~~ +#10 1475.5 1 warning generated when compiling for host. +#10 1477.9 [5955/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Col2Im.hip.o +#10 1477.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1477.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1480.6 [5956/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryShiftOpsKernels.hip.o +#10 1480.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1480.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.5 [5957/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CompareKernels.hip.o +#10 1481.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1481.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1482.0 [5958/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ComplexKernel.hip.o +#10 1482.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1482.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1484.7 [5959/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMiscOpsKernels.hip.o +#10 1484.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1484.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1486.7 [5960/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CrossKernel.hip.o +#10 1486.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1486.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1488.0 [5961/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ConvolutionMM2d.hip.o +#10 1488.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1488.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1494.9 [5962/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumminmaxKernel.hip.o +#10 1494.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1494.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1495.7 [5963/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryLogicalOpsKernels.hip.o +#10 1495.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1495.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1496.8 [5964/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CopysignKernel.hip.o +#10 1496.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1496.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1498.9 [5965/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CompareEQKernel.hip.o +#10 1498.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1498.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1499.1 [5966/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryRemainderKernel.hip.o +#10 1499.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1499.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1502.5 [5967/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Copy.hip.o +#10 1502.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1502.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1502.5 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1502.5 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1502.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1502.5 hipGetLastError(); +#10 1502.5 ^~~~~~~~~~~~~~~ +#10 1502.5 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1502.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1502.5 hipEventDestroy(event_); +#10 1502.5 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1502.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1502.5 hipGetLastError(); +#10 1502.5 ^~~~~~~~~~~~~~~ +#10 1502.5 3 warnings generated when compiling for gfx803. +#10 1502.5 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1502.5 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1502.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1502.5 hipGetLastError(); +#10 1502.5 ^~~~~~~~~~~~~~~ +#10 1502.5 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1502.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1502.5 hipEventDestroy(event_); +#10 1502.5 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1502.5 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1502.5 hipGetLastError(); +#10 1502.5 ^~~~~~~~~~~~~~~ +#10 1502.5 3 warnings generated when compiling for host. +#10 1502.7 [5968/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DepthwiseConv2d.hip.o +#10 1502.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1502.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1504.8 [5969/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistanceKernel.hip.o +#10 1504.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1504.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1507.6 [5970/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DepthwiseConv3d.hip.o +#10 1507.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1507.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 conv_depthwise3d_cuda_backward_weight_kernel( +#10 1507.6 ^ +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1507.6 9 warnings generated when compiling for gfx803. +#10 1509.1 [5971/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumsumKernel.hip.o +#10 1509.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1509.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 22 warnings generated when compiling for gfx803. +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1509.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1509.1 ^ +#10 1509.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1509.1 scan_dim( +#10 1509.1 ^ +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1509.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1509.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1509.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1509.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1509.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1509.1 ^~~~ +#10 1509.1 22 warnings generated when compiling for host. +#10 1511.8 [5972/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DilatedMaxPool3d.hip.o +#10 1511.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1511.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1511.8 In file included from /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip:11: +#10 1511.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1511.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1511.8 ^ +#10 1511.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1511.8 DEPRECATED("use atomicAdd instead") +#10 1511.8 ^ +#10 1511.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1511.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1511.8 ^ +#10 1511.8 1 warning generated when compiling for gfx803. +#10 1511.8 In file included from /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip:11: +#10 1511.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1511.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1511.8 ^ +#10 1511.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1511.8 DEPRECATED("use atomicAdd instead") +#10 1511.8 ^ +#10 1511.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1511.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1511.8 ^ +#10 1511.8 1 warning generated when compiling for host. +#10 1512.4 [5973/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DilatedMaxPool2d.hip.o +#10 1512.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1512.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1512.7 [5974/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumprodKernel.hip.o +#10 1512.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1512.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 22 warnings generated when compiling for gfx803. +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1512.7 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1512.7 ^ +#10 1512.7 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1512.7 scan_dim( +#10 1512.7 ^ +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1512.7 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.7 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1512.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1512.7 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1512.7 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1512.7 ^~~~ +#10 1512.7 22 warnings generated when compiling for host. +#10 1512.8 [5975/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionExponentialKernel.hip.o +#10 1512.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1512.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1512.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1512.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1512.8 ^ +#10 1512.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1512.8 DEPRECATED("use atomicAdd instead") +#10 1512.8 ^ +#10 1512.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1512.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1512.8 ^ +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1512.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.8 hipGetLastError(); +#10 1512.8 ^~~~~~~~~~~~~~~ +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1512.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.8 hipEventDestroy(event_); +#10 1512.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1512.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.8 hipGetLastError(); +#10 1512.8 ^~~~~~~~~~~~~~~ +#10 1512.8 4 warnings generated when compiling for gfx803. +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1512.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1512.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1512.8 ^ +#10 1512.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1512.8 DEPRECATED("use atomicAdd instead") +#10 1512.8 ^ +#10 1512.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1512.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1512.8 ^ +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1512.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.8 hipGetLastError(); +#10 1512.8 ^~~~~~~~~~~~~~~ +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1512.8 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1512.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1512.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.8 hipEventDestroy(event_); +#10 1512.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1512.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1512.8 hipGetLastError(); +#10 1512.8 ^~~~~~~~~~~~~~~ +#10 1512.8 4 warnings generated when compiling for host. +#10 1515.4 [5976/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionNormal.hip.o +#10 1515.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1515.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1515.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1515.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1515.4 ^ +#10 1515.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1515.4 DEPRECATED("use atomicAdd instead") +#10 1515.4 ^ +#10 1515.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1515.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1515.4 ^ +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1515.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1515.4 hipGetLastError(); +#10 1515.4 ^~~~~~~~~~~~~~~ +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1515.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1515.4 hipEventDestroy(event_); +#10 1515.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1515.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1515.4 hipGetLastError(); +#10 1515.4 ^~~~~~~~~~~~~~~ +#10 1515.4 4 warnings generated when compiling for gfx803. +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1515.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1515.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1515.4 ^ +#10 1515.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1515.4 DEPRECATED("use atomicAdd instead") +#10 1515.4 ^ +#10 1515.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1515.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1515.4 ^ +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1515.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1515.4 hipGetLastError(); +#10 1515.4 ^~~~~~~~~~~~~~~ +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1515.4 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1515.4 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1515.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1515.4 hipEventDestroy(event_); +#10 1515.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1515.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1515.4 hipGetLastError(); +#10 1515.4 ^~~~~~~~~~~~~~~ +#10 1515.4 4 warnings generated when compiling for host. +#10 1517.6 [5977/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Repeat.hip.o +#10 1517.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1517.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1517.7 [5978/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReplicationPadding.hip.o +#10 1517.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1517.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1517.7 In file included from /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip:7: +#10 1517.7 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1517.7 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1517.7 ^ +#10 1517.7 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1517.7 DEPRECATED("use atomicAdd instead") +#10 1517.7 ^ +#10 1517.7 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1517.7 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1517.7 ^ +#10 1517.7 1 warning generated when compiling for gfx803. +#10 1517.7 In file included from /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip:7: +#10 1517.7 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1517.7 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1517.7 ^ +#10 1517.7 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1517.7 DEPRECATED("use atomicAdd instead") +#10 1517.7 ^ +#10 1517.7 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1517.7 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1517.7 ^ +#10 1517.7 1 warning generated when compiling for host. +#10 1525.6 [5979/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Embedding.hip.o +#10 1525.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1525.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:15: +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1525.6 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1525.6 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1525.6 ^ +#10 1525.6 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1525.6 DEPRECATED("use atomicAdd instead") +#10 1525.6 ^ +#10 1525.6 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1525.6 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1525.6 ^ +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1525.6 cuda::cub::unique( +#10 1525.6 ^ +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1525.6 cuda::cub::unique( +#10 1525.6 ^ +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 5 warnings generated when compiling for gfx803. +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:15: +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1525.6 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1525.6 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1525.6 ^ +#10 1525.6 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1525.6 DEPRECATED("use atomicAdd instead") +#10 1525.6 ^ +#10 1525.6 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1525.6 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1525.6 ^ +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1525.6 cuda::cub::unique( +#10 1525.6 ^ +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1525.6 cuda::cub::unique( +#10 1525.6 ^ +#10 1525.6 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1525.6 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1525.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1525.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1525.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1525.6 ^~~~ +#10 1525.6 5 warnings generated when compiling for host. +#10 1526.9 [5980/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_EmbeddingBackwardKernel.hip.o +#10 1526.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1526.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1526.9 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip:4: +#10 1526.9 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1526.9 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1526.9 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1526.9 ^ +#10 1526.9 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1526.9 DEPRECATED("use atomicAdd instead") +#10 1526.9 ^ +#10 1526.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1526.9 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1526.9 ^ +#10 1526.9 1 warning generated when compiling for gfx803. +#10 1526.9 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip:4: +#10 1526.9 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1526.9 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1526.9 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1526.9 ^ +#10 1526.9 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1526.9 DEPRECATED("use atomicAdd instead") +#10 1526.9 ^ +#10 1526.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1526.9 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1526.9 ^ +#10 1526.9 1 warning generated when compiling for host. +#10 1529.8 [5981/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FillKernel.hip.o +#10 1529.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1529.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1531.8 [5982/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_EmbeddingBag.hip.o +#10 1531.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1531.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1531.8 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip:8: +#10 1531.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1531.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1531.8 ^ +#10 1531.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1531.8 DEPRECATED("use atomicAdd instead") +#10 1531.8 ^ +#10 1531.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1531.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1531.8 ^ +#10 1531.8 1 warning generated when compiling for gfx803. +#10 1531.8 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip:8: +#10 1531.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1531.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1531.8 ^ +#10 1531.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1531.8 DEPRECATED("use atomicAdd instead") +#10 1531.8 ^ +#10 1531.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1531.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1531.8 ^ +#10 1531.8 1 warning generated when compiling for host. +#10 1535.2 [5983/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachReduceOp.hip.o +#10 1535.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1535.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1535.2 In file included from /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip:10: +#10 1535.2 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1535.2 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1535.2 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1535.2 hipGetLastError(); +#10 1535.2 ^~~~~~~~~~~~~~~ +#10 1535.2 1 warning generated when compiling for gfx803. +#10 1535.2 In file included from /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip:10: +#10 1535.2 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1535.2 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1535.2 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1535.2 hipGetLastError(); +#10 1535.2 ^~~~~~~~~~~~~~~ +#10 1535.2 1 warning generated when compiling for host. +#10 1543.8 [5984/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FractionalMaxPool2d.hip.o +#10 1543.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1543.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1543.8 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip:7: +#10 1543.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1543.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1543.8 ^ +#10 1543.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1543.8 DEPRECATED("use atomicAdd instead") +#10 1543.8 ^ +#10 1543.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1543.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1543.8 ^ +#10 1543.8 1 warning generated when compiling for gfx803. +#10 1543.8 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip:7: +#10 1543.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1543.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1543.8 ^ +#10 1543.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1543.8 DEPRECATED("use atomicAdd instead") +#10 1543.8 ^ +#10 1543.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1543.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1543.8 ^ +#10 1543.8 1 warning generated when compiling for host. +#10 1544.4 [5985/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachTernaryOp.hip.o +#10 1544.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1544.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1544.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip:6: +#10 1544.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1544.4 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1544.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1544.4 hipGetLastError(); +#10 1544.4 ^~~~~~~~~~~~~~~ +#10 1544.4 1 warning generated when compiling for gfx803. +#10 1544.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip:6: +#10 1544.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1544.4 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1544.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1544.4 hipGetLastError(); +#10 1544.4 ^~~~~~~~~~~~~~~ +#10 1544.4 1 warning generated when compiling for host. +#10 1545.3 [5986/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Dropout.hip.o +#10 1545.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1545.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1545.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1545.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1545.3 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1545.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.3 hipGetLastError(); +#10 1545.3 ^~~~~~~~~~~~~~~ +#10 1545.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1545.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1545.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.3 hipEventDestroy(event_); +#10 1545.3 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1545.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.3 hipGetLastError(); +#10 1545.3 ^~~~~~~~~~~~~~~ +#10 1545.3 3 warnings generated when compiling for gfx803. +#10 1545.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1545.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1545.3 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1545.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.3 hipGetLastError(); +#10 1545.3 ^~~~~~~~~~~~~~~ +#10 1545.3 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1545.3 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1545.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.3 hipEventDestroy(event_); +#10 1545.3 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1545.3 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.3 hipGetLastError(); +#10 1545.3 ^~~~~~~~~~~~~~~ +#10 1545.3 3 warnings generated when compiling for host. +#10 1545.4 [5987/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FunctionOfAMatrixUtilsKernel.hip.o +#10 1545.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1545.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1545.4 In file included from /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip:9: +#10 1545.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1545.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1545.4 ^ +#10 1545.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1545.4 DEPRECATED("use atomicAdd instead") +#10 1545.4 ^ +#10 1545.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1545.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1545.4 ^ +#10 1545.4 1 warning generated when compiling for gfx803. +#10 1545.4 In file included from /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip:9: +#10 1545.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1545.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1545.4 ^ +#10 1545.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1545.4 DEPRECATED("use atomicAdd instead") +#10 1545.4 ^ +#10 1545.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1545.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1545.4 ^ +#10 1545.4 1 warning generated when compiling for host. +#10 1545.7 [5988/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachPointwiseOp.hip.o +#10 1545.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1545.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1545.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip:5: +#10 1545.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1545.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1545.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.7 hipGetLastError(); +#10 1545.7 ^~~~~~~~~~~~~~~ +#10 1545.7 1 warning generated when compiling for gfx803. +#10 1545.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip:5: +#10 1545.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1545.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1545.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1545.7 hipGetLastError(); +#10 1545.7 ^~~~~~~~~~~~~~~ +#10 1545.7 1 warning generated when compiling for host. +#10 1546.4 [5989/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FractionalMaxPool3d.hip.o +#10 1546.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1546.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1546.4 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip:7: +#10 1546.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1546.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1546.4 ^ +#10 1546.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1546.4 DEPRECATED("use atomicAdd instead") +#10 1546.4 ^ +#10 1546.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1546.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1546.4 ^ +#10 1546.4 1 warning generated when compiling for gfx803. +#10 1546.4 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip:7: +#10 1546.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1546.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1546.4 ^ +#10 1546.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1546.4 DEPRECATED("use atomicAdd instead") +#10 1546.4 ^ +#10 1546.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1546.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1546.4 ^ +#10 1546.4 1 warning generated when compiling for host. +#10 1546.7 [5990/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpScalar.hip.o +#10 1546.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1546.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1546.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip:5: +#10 1546.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1546.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1546.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1546.7 hipGetLastError(); +#10 1546.7 ^~~~~~~~~~~~~~~ +#10 1546.7 1 warning generated when compiling for gfx803. +#10 1546.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip:5: +#10 1546.7 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1546.7 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1546.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1546.7 hipGetLastError(); +#10 1546.7 ^~~~~~~~~~~~~~~ +#10 1546.7 1 warning generated when compiling for host. +#10 1549.9 [5991/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpList.hip.o +#10 1549.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip:5: +#10 1549.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1549.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1549.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.9 hipGetLastError(); +#10 1549.9 ^~~~~~~~~~~~~~~ +#10 1549.9 1 warning generated when compiling for gfx803. +#10 1549.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip:5: +#10 1549.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1549.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1549.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.9 hipGetLastError(); +#10 1549.9 ^~~~~~~~~~~~~~~ +#10 1549.9 1 warning generated when compiling for host. +#10 1551.1 [5992/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpScalarList.hip.o +#10 1551.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1551.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1551.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip:5: +#10 1551.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1551.1 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1551.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1551.1 hipGetLastError(); +#10 1551.1 ^~~~~~~~~~~~~~~ +#10 1551.1 1 warning generated when compiling for gfx803. +#10 1551.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip:5: +#10 1551.1 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1551.1 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1551.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1551.1 hipGetLastError(); +#10 1551.1 ^~~~~~~~~~~~~~~ +#10 1551.1 1 warning generated when compiling for host. +#10 1553.2 [5993/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FusedAdamKernel.hip.o +#10 1553.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1554.2 [5994/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FusedAdamWKernel.hip.o +#10 1554.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1554.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1555.6 [5995/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_GcdLcmKernel.hip.o +#10 1555.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1555.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1556.4 [5996/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_HIPScalar.hip.o +#10 1556.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1556.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1561.1 [5997/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Im2Col.hip.o +#10 1561.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1561.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1569.7 [5998/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_IGammaKernel.hip.o +#10 1569.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1569.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1572.0 [5999/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LogAddExpKernel.hip.o +#10 1572.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1572.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1572.6 [6000/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Lerp.hip.o +#10 1572.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1572.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1578.7 [6001/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceMomentKernel.hip.o +#10 1578.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1578.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1578.7 In file included from /pytorch/aten/src/ATen/native/hip/ReduceMomentKernel.hip:5: +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 __global__ void reduce_kernel(R reduction) { +#10 1578.7 ^ +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1578.7 252 warnings generated when compiling for gfx803. +#10 1585.2 [6002/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LinearAlgebra.hip.o +#10 1585.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1585.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1586.4 [6003/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_cub-RadixSortKeys.hip.o +#10 1586.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1586.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 36 warnings generated when compiling for gfx803. +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1586.4 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1586.4 ^ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1586.4 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1586.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1586.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1586.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1586.4 ^~~~ +#10 1586.4 36 warnings generated when compiling for host. +#10 1586.5 [6004/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LegacyThrustHelpers.hip.o +#10 1586.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1586.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1589.9 [6005/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_GridSampler.hip.o +#10 1589.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1589.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1589.9 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.hip:7: +#10 1589.9 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.cuh:3: +#10 1589.9 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1589.9 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1589.9 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1589.9 ^ +#10 1589.9 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1589.9 DEPRECATED("use atomicAdd instead") +#10 1589.9 ^ +#10 1589.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1589.9 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1589.9 ^ +#10 1589.9 1 warning generated when compiling for gfx803. +#10 1589.9 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.hip:7: +#10 1589.9 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.cuh:3: +#10 1589.9 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1589.9 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1589.9 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1589.9 ^ +#10 1589.9 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1589.9 DEPRECATED("use atomicAdd instead") +#10 1589.9 ^ +#10 1589.9 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1589.9 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1589.9 ^ +#10 1589.9 1 warning generated when compiling for host. +#10 1590.8 [6006/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LossCTC.hip.o +#10 1590.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1590.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1590.8 In file included from /pytorch/aten/src/ATen/native/hip/LossCTC.hip:19: +#10 1590.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1590.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1590.8 ^ +#10 1590.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1590.8 DEPRECATED("use atomicAdd instead") +#10 1590.8 ^ +#10 1590.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1590.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1590.8 ^ +#10 1590.8 1 warning generated when compiling for gfx803. +#10 1590.8 In file included from /pytorch/aten/src/ATen/native/hip/LossCTC.hip:19: +#10 1590.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1590.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1590.8 ^ +#10 1590.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1590.8 DEPRECATED("use atomicAdd instead") +#10 1590.8 ^ +#10 1590.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1590.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1590.8 ^ +#10 1590.8 1 warning generated when compiling for host. +#10 1593.9 [6007/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultiLabelMarginCriterion.hip.o +#10 1593.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1593.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1597.6 [6008/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Loss.hip.o +#10 1597.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1597.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1600.0 [6009/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultinomialKernel.hip.o +#10 1600.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1600.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1600.0 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1600.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1600.0 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1600.0 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1600.0 hipGetLastError(); +#10 1600.0 ^~~~~~~~~~~~~~~ +#10 1600.0 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1600.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1600.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1600.0 hipEventDestroy(event_); +#10 1600.0 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1600.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1600.0 hipGetLastError(); +#10 1600.0 ^~~~~~~~~~~~~~~ +#10 1600.0 3 warnings generated when compiling for gfx803. +#10 1600.0 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1600.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1600.0 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1600.0 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1600.0 hipGetLastError(); +#10 1600.0 ^~~~~~~~~~~~~~~ +#10 1600.0 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1600.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1600.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1600.0 hipEventDestroy(event_); +#10 1600.0 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1600.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1600.0 hipGetLastError(); +#10 1600.0 ^~~~~~~~~~~~~~~ +#10 1600.0 3 warnings generated when compiling for host. +#10 1600.9 [6010/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultiMarginLoss.hip.o +#10 1600.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1600.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1604.5 [6011/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NLLLoss2d.hip.o +#10 1604.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1604.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1604.5 In file included from /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip:8: +#10 1604.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1604.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1604.5 ^ +#10 1604.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1604.5 DEPRECATED("use atomicAdd instead") +#10 1604.5 ^ +#10 1604.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1604.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1604.5 ^ +#10 1604.5 1 warning generated when compiling for gfx803. +#10 1604.5 In file included from /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip:8: +#10 1604.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1604.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1604.5 ^ +#10 1604.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1604.5 DEPRECATED("use atomicAdd instead") +#10 1604.5 ^ +#10 1604.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1604.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1604.5 ^ +#10 1604.5 1 warning generated when compiling for host. +#10 1606.7 [6012/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveConvolutionTranspose2d.hip.o +#10 1606.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1606.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1607.8 [6013/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveConvolutionTranspose3d.hip.o +#10 1607.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1607.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1611.1 [6014/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_IndexKernel.hip.o +#10 1611.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1611.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1611.1 In file included from /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:16: +#10 1611.1 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1611.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1611.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1611.1 ^ +#10 1611.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1611.1 DEPRECATED("use atomicAdd instead") +#10 1611.1 ^ +#10 1611.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1611.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:416:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1611.1 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:418:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1611.1 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 __global__ void index_elementwise_kernel(int N, func_t f) { +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1611.1 97 warnings generated when compiling for gfx803. +#10 1611.1 In file included from /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:16: +#10 1611.1 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1611.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1611.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1611.1 ^ +#10 1611.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1611.1 DEPRECATED("use atomicAdd instead") +#10 1611.1 ^ +#10 1611.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1611.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:416:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1611.1 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:418:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1611.1 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1611.1 ^ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1611.1 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1611.1 hipGetLastError(); +#10 1611.1 ^~~~~~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1611.1 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1611.1 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1611.1 return __VA_ARGS__(); \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1611.1 __VA_ARGS__ \ +#10 1611.1 ^~~~~~~~~~~ +#10 1611.1 37 warnings generated when compiling for host. +#10 1612.3 [6015/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveDilatedConvolution.hip.o +#10 1612.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1612.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1620.9 [6016/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RecordStream.hip.o +#10 1621.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1621.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1623.8 [6017/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MaxMinElementwiseKernel.hip.o +#10 1623.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1623.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1624.7 [6018/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Nonzero.hip.o +#10 1624.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1624.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 52 warnings generated when compiling for gfx803. +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1624.7 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1624.7 ^ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1624.7 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1624.7 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1624.7 52 warnings generated when compiling for host. +#10 1625.2 [6019/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Randperm.hip.o +#10 1625.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1625.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1625.2 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1625.2 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1625.2 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1625.2 hipGetLastError(); +#10 1625.2 ^~~~~~~~~~~~~~~ +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1625.2 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1625.2 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1625.2 hipEventDestroy(event_); +#10 1625.2 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1625.2 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1625.2 hipGetLastError(); +#10 1625.2 ^~~~~~~~~~~~~~~ +#10 1625.2 3 warnings generated when compiling for gfx803. +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1625.2 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1625.2 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1625.2 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1625.2 hipGetLastError(); +#10 1625.2 ^~~~~~~~~~~~~~~ +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1625.2 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1625.2 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1625.2 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1625.2 hipEventDestroy(event_); +#10 1625.2 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1625.2 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1625.2 hipGetLastError(); +#10 1625.2 ^~~~~~~~~~~~~~~ +#10 1625.2 3 warnings generated when compiling for host. +#10 1629.6 [6020/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Reduce.hip.o +#10 1629.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1629.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1632.2 [6021/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RNN.hip.o +#10 1632.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1632.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1632.2 In file included from /pytorch/aten/src/ATen/native/hip/RNN.hip:9: +#10 1632.2 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1632.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1632.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1632.2 ^ +#10 1632.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1632.2 DEPRECATED("use atomicAdd instead") +#10 1632.2 ^ +#10 1632.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1632.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1632.2 ^ +#10 1632.2 /pytorch/aten/src/ATen/native/hip/RNN.hip:61:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.2 hipGetDevice(&curDevice); +#10 1632.2 ^~~~~~~~~~~~ ~~~~~~~~~~ +#10 1632.2 2 warnings generated when compiling for gfx803. +#10 1632.2 In file included from /pytorch/aten/src/ATen/native/hip/RNN.hip:9: +#10 1632.2 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1632.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1632.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1632.2 ^ +#10 1632.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1632.2 DEPRECATED("use atomicAdd instead") +#10 1632.2 ^ +#10 1632.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1632.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1632.2 ^ +#10 1632.2 /pytorch/aten/src/ATen/native/hip/RNN.hip:61:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.2 hipGetDevice(&curDevice); +#10 1632.2 ^~~~~~~~~~~~ ~~~~~~~~~~ +#10 1632.2 2 warnings generated when compiling for host. +#10 1633.4 [6022/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RangeFactories.hip.o +#10 1633.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1633.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1651.8 [6023/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_PointwiseOpsKernel.hip.o +#10 1651.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1651.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1662.5 [6024/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Normalization.hip.o +#10 1662.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1662.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1662.5 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:8: +#10 1662.5 In file included from /pytorch/aten/src/ATen/native/hip/Resize.h:7: +#10 1662.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipGetLastError(); +#10 1662.5 ^~~~~~~~~~~~~~~ +#10 1662.5 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:9: +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 __global__ void batch_norm_backward_reduce_channels_last_kernel( +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 batch_norm_collect_statistics_channels_last_kernel( +#10 1662.5 ^ +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1662.5 29 warnings generated when compiling for gfx803. +#10 1662.5 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:8: +#10 1662.5 In file included from /pytorch/aten/src/ATen/native/hip/Resize.h:7: +#10 1662.5 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1662.5 hipGetLastError(); +#10 1662.5 ^~~~~~~~~~~~~~~ +#10 1662.5 1 warning generated when compiling for host. +#10 1671.1 [6025/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceNormKernel.hip.o +#10 1671.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1671.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1671.1 In file included from /pytorch/aten/src/ATen/native/hip/ReduceNormKernel.hip:5: +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 __global__ void reduce_kernel(R reduction) { +#10 1671.1 ^ +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1671.1 864 warnings generated when compiling for gfx803. +#10 1679.0 [6026/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceArgMaxKernel.hip.o +#10 1679.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1679.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1679.0 In file included from /pytorch/aten/src/ATen/native/hip/ReduceArgMaxKernel.hip:13: +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 __global__ void reduce_kernel(R reduction) { +#10 1679.0 ^ +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1679.0 162 warnings generated when compiling for gfx803. +#10 1680.3 [6027/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_PowKernel.hip.o +#10 1680.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1680.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1680.8 [6028/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceAMinMaxKernel.hip.o +#10 1680.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1680.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1680.8 In file included from /pytorch/aten/src/ATen/native/hip/ReduceAMinMaxKernel.hip:13: +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 __global__ void reduce_kernel(R reduction) { +#10 1680.8 ^ +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1680.8 180 warnings generated when compiling for gfx803. +#10 1681.4 [6029/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceArgMinKernel.hip.o +#10 1681.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1681.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1681.4 In file included from /pytorch/aten/src/ATen/native/hip/ReduceArgMinKernel.hip:13: +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 __global__ void reduce_kernel(R reduction) { +#10 1681.4 ^ +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1681.4 /pytorch/at +#10 1681.4 [output clipped, log limit 2MiB reached] +#10 2736.9 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#10 2736.9 !! +#10 2736.9 +#10 2736.9 ******************************************************************************** +#10 2736.9 Please consider removing the following classifiers in favor of a SPDX license expression: +#10 2736.9 +#10 2736.9 License :: OSI Approved :: BSD License +#10 2736.9 +#10 2736.9 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#10 2736.9 ******************************************************************************** +#10 2736.9 +#10 2736.9 !! +#10 2736.9 self._finalize_license_expression() +#10 2740.3 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. +#10 2740.3 !! +#10 2740.3 +#10 2740.3 ******************************************************************************** +#10 2740.3 Please avoid running ``setup.py`` directly. +#10 2740.3 Instead, use pypa/build, pypa/installer or other +#10 2740.3 standards-based tools. +#10 2740.3 +#10 2740.3 By 2025-Oct-31, you need to update your project and remove deprecated calls +#10 2740.3 or your builds will no longer be supported. +#10 2740.3 +#10 2740.3 See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. +#10 2740.3 ******************************************************************************** +#10 2740.3 +#10 2740.3 !! +#10 2740.3 self.initialize_options() +#10 2746.0 warning: no previously-included files matching '*.o' found anywhere in distribution +#10 2746.1 warning: no previously-included files matching '*.dylib' found anywhere in distribution +#10 2746.3 warning: no previously-included files matching '*.swp' found anywhere in distribution +#10 DONE 2805.2s + +#11 [ 8/18] RUN echo "Checkout Torchvision Version: v0.15.2" && git clone --depth 1 --branch v0.15.2 https://github.com/pytorch/vision.git /vision && true +#11 0.280 Checkout Torchvision Version: v0.15.2 +#11 0.281 Cloning into '/vision'... +#11 7.759 Note: switching to 'fa99a5360fbcd1683311d57a76fcc0e7323a4c1e'. +#11 7.759 +#11 7.759 You are in 'detached HEAD' state. You can look around, make experimental +#11 7.759 changes and commit them, and you can discard any commits you make in this +#11 7.759 state without impacting any branches by switching back to a branch. +#11 7.759 +#11 7.759 If you want to create a new branch to retain commits you create, you may +#11 7.759 do so (now or later) by using -c with the switch command. Example: +#11 7.759 +#11 7.759 git switch -c +#11 7.759 +#11 7.759 Or undo this operation with: +#11 7.759 +#11 7.759 git switch - +#11 7.759 +#11 7.759 Turn off this advice by setting config variable advice.detachedHead to false +#11 7.759 +#11 DONE 8.0s + +#12 [ 9/18] WORKDIR /vision +#12 DONE 0.1s + +#13 [10/18] RUN echo "BUILDING TorchVision v0.15.2 *** " && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchvision-*.whl && ls /vision/dist/torchvision*.whl | head -n 1 > /opt/torchvision_wheel_name.txt && true +#13 0.265 BUILDING TorchVision v0.15.2 *** +#13 1.819 /vision/setup.py:10: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html +#13 1.819 from pkg_resources import DistributionNotFound, get_distribution, parse_version +#13 2.069 Building wheel torchvision-0.15.2a0+fa99a53 +#13 2.071 Compiling extensions with following flags: +#13 2.071 FORCE_CUDA: False +#13 2.071 DEBUG: False +#13 2.071 TORCHVISION_USE_PNG: True +#13 2.071 TORCHVISION_USE_JPEG: True +#13 2.071 TORCHVISION_USE_NVJPEG: True +#13 2.071 TORCHVISION_USE_FFMPEG: True +#13 2.071 TORCHVISION_USE_VIDEO_CODEC: True +#13 2.071 NVCC_FLAGS: +#13 2.092 /vision/MANIFEST.in -> /vision/MANIFEST.in [skipped, no changes] +#13 2.092 /vision/ios/VisionTestApp/VisionTestApp/ModelRunner.h -> /vision/ios/VisionTestApp/VisionTestApp/ModelRunner.h [skipped, no changes] +#13 2.093 /vision/ios/VisionTestApp/VisionTestApp/ViewController.h -> /vision/ios/VisionTestApp/VisionTestApp/ViewController.h [skipped, no changes] +#13 2.093 /vision/ios/VisionTestApp/VisionTestApp/AppDelegate.h -> /vision/ios/VisionTestApp/VisionTestApp/AppDelegate.h [skipped, no changes] +#13 2.093 /vision/torchvision/csrc/macros.h -> /vision/torchvision/csrc/macros.h [skipped, no changes] +#13 2.093 /vision/torchvision/csrc/vision.h -> /vision/torchvision/csrc/vision.h [skipped, no changes] +#13 2.094 /vision/torchvision/csrc/vision.cpp -> /vision/torchvision/csrc/vision_hip.cpp [ok] +#13 2.094 /vision/torchvision/csrc/macros.h -> /vision/torchvision/csrc/macros.h [skipped, no changes] +#13 2.094 /vision/torchvision/csrc/vision.h -> /vision/torchvision/csrc/vision.h [skipped, no changes] +#13 2.094 /vision/torchvision/csrc/io/video_reader/video_reader.h -> /vision/torchvision/csrc/io/video_reader/video_reader.h [skipped, no changes] +#13 2.098 /vision/torchvision/csrc/io/decoder/defs.h -> /vision/torchvision/csrc/io/decoder/defs.h [skipped, no changes] +#13 2.098 /vision/torchvision/csrc/io/decoder/memory_buffer.h -> /vision/torchvision/csrc/io/decoder/memory_buffer.h [skipped, no changes] +#13 2.099 /vision/torchvision/csrc/io/decoder/seekable_buffer.h -> /vision/torchvision/csrc/io/decoder/seekable_buffer.h [skipped, no changes] +#13 2.099 /vision/torchvision/csrc/io/decoder/time_keeper.h -> /vision/torchvision/csrc/io/decoder/time_keeper.h [skipped, no changes] +#13 2.100 /vision/torchvision/csrc/io/decoder/stream.h -> /vision/torchvision/csrc/io/decoder/stream.h [skipped, no changes] +#13 2.100 /vision/torchvision/csrc/io/decoder/decoder.h -> /vision/torchvision/csrc/io/decoder/decoder.h [skipped, no changes] +#13 2.100 /vision/torchvision/csrc/io/decoder/sync_decoder.h -> /vision/torchvision/csrc/io/decoder/sync_decoder.h [skipped, no changes] +#13 2.104 /vision/torchvision/csrc/io/video_reader/video_reader.cpp -> /vision/torchvision/csrc/io/video_reader/video_reader.cpp [skipped, no changes] +#13 2.105 /vision/torchvision/csrc/io/decoder/audio_sampler.h -> /vision/torchvision/csrc/io/decoder/audio_sampler.h [skipped, no changes] +#13 2.105 /vision/torchvision/csrc/io/decoder/util.h -> /vision/torchvision/csrc/io/decoder/util.h [skipped, no changes] +#13 2.106 /vision/torchvision/csrc/io/decoder/audio_sampler.cpp -> /vision/torchvision/csrc/io/decoder/audio_sampler.cpp [skipped, no changes] +#13 2.106 /vision/torchvision/csrc/io/decoder/subtitle_sampler.h -> /vision/torchvision/csrc/io/decoder/subtitle_sampler.h [skipped, no changes] +#13 2.107 /vision/torchvision/csrc/io/decoder/subtitle_stream.h -> /vision/torchvision/csrc/io/decoder/subtitle_stream.h [skipped, no changes] +#13 2.107 /vision/torchvision/csrc/io/decoder/cc_stream.h -> /vision/torchvision/csrc/io/decoder/cc_stream.h [skipped, no changes] +#13 2.107 /vision/torchvision/csrc/io/decoder/audio_sampler.h -> /vision/torchvision/csrc/io/decoder/audio_sampler.h [skipped, no changes] +#13 2.109 /vision/torchvision/csrc/io/decoder/stream.cpp -> /vision/torchvision/csrc/io/decoder/stream.cpp [skipped, no changes] +#13 2.109 /vision/torchvision/csrc/io/decoder/audio_stream.h -> /vision/torchvision/csrc/io/decoder/audio_stream.h [skipped, no changes] +#13 2.110 /vision/torchvision/csrc/io/decoder/audio_stream.cpp -> /vision/torchvision/csrc/io/decoder/audio_stream.cpp [skipped, no changes] +#13 2.110 /vision/torchvision/csrc/io/decoder/util.h -> /vision/torchvision/csrc/io/decoder/util.h [skipped, no changes] +#13 2.111 /vision/torchvision/csrc/io/decoder/stream.h -> /vision/torchvision/csrc/io/decoder/stream.h [skipped, no changes] +#13 2.112 /vision/torchvision/csrc/io/decoder/decoder.h -> /vision/torchvision/csrc/io/decoder/decoder.h [skipped, no changes] +#13 2.112 /vision/torchvision/csrc/io/decoder/memory_buffer.cpp -> /vision/torchvision/csrc/io/decoder/memory_buffer.cpp [skipped, no changes] +#13 2.112 /vision/torchvision/csrc/io/decoder/util_test.cpp -> /vision/torchvision/csrc/io/decoder/util_test.cpp [skipped, no changes] +#13 2.115 /vision/torchvision/csrc/io/decoder/util.cpp -> /vision/torchvision/csrc/io/decoder/util.cpp [skipped, no changes] +#13 2.115 /vision/torchvision/csrc/io/decoder/memory_buffer.h -> /vision/torchvision/csrc/io/decoder/memory_buffer.h [skipped, no changes] +#13 2.116 /vision/torchvision/csrc/io/decoder/audio_stream.h -> /vision/torchvision/csrc/io/decoder/audio_stream.h [skipped, no changes] +#13 2.118 /vision/torchvision/csrc/io/decoder/defs.h -> /vision/torchvision/csrc/io/decoder/defs.h [skipped, no changes] +#13 2.119 /vision/torchvision/csrc/io/decoder/sync_decoder.h -> /vision/torchvision/csrc/io/decoder/sync_decoder.h [skipped, no changes] +#13 2.119 /vision/torchvision/csrc/io/decoder/subtitle_stream.cpp -> /vision/torchvision/csrc/io/decoder/subtitle_stream.cpp [skipped, no changes] +#13 2.121 /vision/torchvision/csrc/io/decoder/video_sampler.h -> /vision/torchvision/csrc/io/decoder/video_sampler.h [skipped, no changes] +#13 2.121 /vision/torchvision/csrc/io/decoder/video_stream.h -> /vision/torchvision/csrc/io/decoder/video_stream.h [skipped, no changes] +#13 2.124 /vision/torchvision/csrc/io/decoder/decoder.cpp -> /vision/torchvision/csrc/io/decoder/decoder.cpp [skipped, no changes] +#13 2.125 /vision/torchvision/csrc/io/decoder/video_sampler.h -> /vision/torchvision/csrc/io/decoder/video_sampler.h [skipped, no changes] +#13 2.125 /vision/torchvision/csrc/io/decoder/subtitle_sampler.cpp -> /vision/torchvision/csrc/io/decoder/subtitle_sampler.cpp [skipped, no changes] +#13 2.127 /vision/torchvision/csrc/io/decoder/video_sampler.cpp -> /vision/torchvision/csrc/io/decoder/video_sampler.cpp [skipped, no changes] +#13 2.128 /vision/torchvision/csrc/io/decoder/video_stream.cpp -> /vision/torchvision/csrc/io/decoder/video_stream.cpp [skipped, no changes] +#13 2.129 /vision/torchvision/csrc/io/decoder/video_stream.h -> /vision/torchvision/csrc/io/decoder/video_stream.h [skipped, no changes] +#13 2.129 /vision/torchvision/csrc/io/decoder/sync_decoder.cpp -> /vision/torchvision/csrc/io/decoder/sync_decoder.cpp [skipped, no changes] +#13 2.129 /vision/torchvision/csrc/io/decoder/time_keeper.cpp -> /vision/torchvision/csrc/io/decoder/time_keeper.cpp [skipped, no changes] +#13 2.130 /vision/torchvision/csrc/io/decoder/seekable_buffer.cpp -> /vision/torchvision/csrc/io/decoder/seekable_buffer.cpp [skipped, no changes] +#13 2.131 /vision/torchvision/csrc/io/decoder/seekable_buffer.h -> /vision/torchvision/csrc/io/decoder/seekable_buffer.h [skipped, no changes] +#13 2.133 /vision/torchvision/csrc/io/decoder/sync_decoder_test.cpp -> /vision/torchvision/csrc/io/decoder/sync_decoder_test.cpp [skipped, no changes] +#13 2.134 /vision/torchvision/csrc/io/decoder/time_keeper.h -> /vision/torchvision/csrc/io/decoder/time_keeper.h [skipped, no changes] +#13 2.134 /vision/torchvision/csrc/io/decoder/subtitle_sampler.h -> /vision/torchvision/csrc/io/decoder/subtitle_sampler.h [skipped, no changes] +#13 2.134 /vision/torchvision/csrc/io/decoder/subtitle_stream.h -> /vision/torchvision/csrc/io/decoder/subtitle_stream.h [skipped, no changes] +#13 2.135 /vision/torchvision/csrc/io/decoder/cc_stream.cpp -> /vision/torchvision/csrc/io/decoder/cc_stream.cpp [skipped, no changes] +#13 2.135 /vision/torchvision/csrc/io/decoder/gpu/decoder.h -> /vision/torchvision/csrc/io/decoder/gpu/decoder_hip.h [ok] +#13 2.137 /vision/torchvision/csrc/io/decoder/gpu/demuxer.h -> /vision/torchvision/csrc/io/decoder/gpu/demuxer.h [skipped, no changes] +#13 2.138 /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder.h -> /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder_hip.h [ok] +#13 2.138 /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder.cpp -> /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder_hip.cpp [ok] +#13 2.140 /vision/torchvision/csrc/io/decoder/gpu/demuxer.h -> /vision/torchvision/csrc/io/decoder/gpu/demuxer.h [skipped, no changes] +#13 2.140 /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder.h -> /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder_hip.h [skipped, already hipified] +#13 2.143 /vision/torchvision/csrc/io/decoder/gpu/decoder.cpp -> /vision/torchvision/csrc/io/decoder/gpu/decoder_hip.cpp [ok] +#13 2.144 /vision/torchvision/csrc/io/video/video.h -> /vision/torchvision/csrc/io/video/video.h [skipped, no changes] +#13 2.146 /vision/torchvision/csrc/io/video/video.cpp -> /vision/torchvision/csrc/io/video/video.cpp [skipped, no changes] +#13 2.147 /vision/torchvision/csrc/io/image/image_read_mode.h -> /vision/torchvision/csrc/io/image/image_read_mode.h [skipped, no changes] +#13 2.147 /vision/torchvision/csrc/io/image/cpu/decode_image.h -> /vision/torchvision/csrc/io/image/cpu/decode_image.h [skipped, no changes] +#13 2.147 /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h [skipped, no changes] +#13 2.147 /vision/torchvision/csrc/io/image/cpu/decode_png.h -> /vision/torchvision/csrc/io/image/cpu/decode_png.h [skipped, no changes] +#13 2.147 /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h [skipped, no changes] +#13 2.148 /vision/torchvision/csrc/io/image/cpu/encode_png.h -> /vision/torchvision/csrc/io/image/cpu/encode_png.h [skipped, no changes] +#13 2.148 /vision/torchvision/csrc/io/image/cpu/read_write_file.h -> /vision/torchvision/csrc/io/image/cpu/read_write_file.h [skipped, no changes] +#13 2.148 /vision/torchvision/csrc/io/image/cuda/decode_jpeg_cuda.h -> /vision/torchvision/csrc/io/image/hip/decode_jpeg_hip.h [ok] +#13 2.149 /vision/torchvision/csrc/io/image/image.h -> /vision/torchvision/csrc/io/image/image_hip.h [ok] +#13 2.149 /vision/torchvision/csrc/io/image/image.cpp -> /vision/torchvision/csrc/io/image/image_hip.cpp [ok] +#13 2.149 /vision/torchvision/csrc/io/image/image_read_mode.h -> /vision/torchvision/csrc/io/image/image_read_mode.h [skipped, no changes] +#13 2.150 /vision/torchvision/csrc/io/image/cuda/decode_jpeg_cuda.h -> /vision/torchvision/csrc/io/image/hip/decode_jpeg_hip.h [skipped, already hipified] +#13 2.151 /vision/torchvision/csrc/io/image/cuda/decode_jpeg_cuda.cpp -> /vision/torchvision/csrc/io/image/hip/decode_jpeg_hip.cpp [ok] +#13 2.151 /vision/torchvision/csrc/io/image/cpu/common_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/common_jpeg.h [skipped, no changes] +#13 2.152 /vision/torchvision/csrc/io/image/cpu/decode_jpeg.cpp -> /vision/torchvision/csrc/io/image/cpu/decode_jpeg.cpp [skipped, no changes] +#13 2.153 /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h [skipped, no changes] +#13 2.153 /vision/torchvision/csrc/io/image/cpu/encode_jpeg.cpp -> /vision/torchvision/csrc/io/image/cpu/encode_jpeg.cpp [skipped, no changes] +#13 2.154 /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h [skipped, no changes] +#13 2.154 /vision/torchvision/csrc/io/image/cpu/common_png.h -> /vision/torchvision/csrc/io/image/cpu/common_png.h [skipped, no changes] +#13 2.154 /vision/torchvision/csrc/io/image/cpu/read_write_file.h -> /vision/torchvision/csrc/io/image/cpu/read_write_file.h [skipped, no changes] +#13 2.154 /vision/torchvision/csrc/io/image/cpu/decode_image.cpp -> /vision/torchvision/csrc/io/image/cpu/decode_image.cpp [skipped, no changes] +#13 2.154 /vision/torchvision/csrc/io/image/cpu/encode_png.h -> /vision/torchvision/csrc/io/image/cpu/encode_png.h [skipped, no changes] +#13 2.155 /vision/torchvision/csrc/io/image/cpu/decode_png.h -> /vision/torchvision/csrc/io/image/cpu/decode_png.h [skipped, no changes] +#13 2.156 /vision/torchvision/csrc/io/image/cpu/encode_png.cpp -> /vision/torchvision/csrc/io/image/cpu/encode_png.cpp [skipped, no changes] +#13 2.156 /vision/torchvision/csrc/io/image/cpu/decode_image.h -> /vision/torchvision/csrc/io/image/cpu/decode_image.h [skipped, no changes] +#13 2.158 /vision/torchvision/csrc/io/image/cpu/decode_png.cpp -> /vision/torchvision/csrc/io/image/cpu/decode_png.cpp [skipped, no changes] +#13 2.158 /vision/torchvision/csrc/io/image/cpu/common_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/common_jpeg.h [skipped, no changes] +#13 2.158 /vision/torchvision/csrc/io/image/cpu/common_jpeg.cpp -> /vision/torchvision/csrc/io/image/cpu/common_jpeg.cpp [skipped, no changes] +#13 2.159 /vision/torchvision/csrc/io/image/cpu/read_write_file.cpp -> /vision/torchvision/csrc/io/image/cpu/read_write_file.cpp [skipped, no changes] +#13 2.159 /vision/torchvision/csrc/ops/ps_roi_align.h -> /vision/torchvision/csrc/ops/ps_roi_align.h [skipped, no changes] +#13 2.160 /vision/torchvision/csrc/ops/ps_roi_pool.h -> /vision/torchvision/csrc/ops/ps_roi_pool.h [skipped, no changes] +#13 2.160 /vision/torchvision/csrc/ops/roi_align.h -> /vision/torchvision/csrc/ops/roi_align.h [skipped, no changes] +#13 2.160 /vision/torchvision/csrc/ops/roi_align.cpp -> /vision/torchvision/csrc/ops/roi_align.cpp [skipped, no changes] +#13 2.161 /vision/torchvision/csrc/ops/roi_pool.h -> /vision/torchvision/csrc/ops/roi_pool.h [skipped, no changes] +#13 2.161 /vision/torchvision/csrc/ops/roi_pool.cpp -> /vision/torchvision/csrc/ops/roi_pool.cpp [skipped, no changes] +#13 2.162 /vision/torchvision/csrc/ops/deform_conv2d.h -> /vision/torchvision/csrc/ops/deform_conv2d.h [skipped, no changes] +#13 2.162 /vision/torchvision/csrc/ops/deform_conv2d.cpp -> /vision/torchvision/csrc/ops/deform_conv2d.cpp [skipped, no changes] +#13 2.163 /vision/torchvision/csrc/ops/roi_align.h -> /vision/torchvision/csrc/ops/roi_align.h [skipped, no changes] +#13 2.163 /vision/torchvision/csrc/ops/deform_conv2d.h -> /vision/torchvision/csrc/ops/deform_conv2d.h [skipped, no changes] +#13 2.163 /vision/torchvision/csrc/ops/nms.h -> /vision/torchvision/csrc/ops/nms.h [skipped, no changes] +#13 2.163 /vision/torchvision/csrc/ops/ops.h -> /vision/torchvision/csrc/ops/ops.h [skipped, no changes] +#13 2.164 /vision/torchvision/csrc/ops/nms.cpp -> /vision/torchvision/csrc/ops/nms.cpp [skipped, no changes] +#13 2.164 /vision/torchvision/csrc/ops/nms.h -> /vision/torchvision/csrc/ops/nms.h [skipped, no changes] +#13 2.164 /vision/torchvision/csrc/ops/roi_pool.h -> /vision/torchvision/csrc/ops/roi_pool.h [skipped, no changes] +#13 2.165 /vision/torchvision/csrc/ops/ps_roi_align.cpp -> /vision/torchvision/csrc/ops/ps_roi_align.cpp [skipped, no changes] +#13 2.165 /vision/torchvision/csrc/ops/ps_roi_pool.cpp -> /vision/torchvision/csrc/ops/ps_roi_pool.cpp [skipped, no changes] +#13 2.166 /vision/torchvision/csrc/ops/autocast/roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/roi_pool_kernel.cpp [skipped, no changes] +#13 2.166 /vision/torchvision/csrc/ops/autocast/deform_conv2d_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/deform_conv2d_kernel.cpp [skipped, no changes] +#13 2.167 /vision/torchvision/csrc/ops/autocast/roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/roi_align_kernel.cpp [skipped, no changes] +#13 2.167 /vision/torchvision/csrc/ops/autocast/nms_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/nms_kernel.cpp [skipped, no changes] +#13 2.167 /vision/torchvision/csrc/ops/autocast/ps_roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/ps_roi_pool_kernel.cpp [skipped, no changes] +#13 2.168 /vision/torchvision/csrc/ops/autocast/ps_roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/ps_roi_align_kernel.cpp [skipped, no changes] +#13 2.169 /vision/torchvision/csrc/ops/cpu/roi_align_common.h -> /vision/torchvision/csrc/ops/cpu/roi_align_common.h [skipped, no changes] +#13 2.171 /vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.cpp -> /vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.cpp [skipped, no changes] +#13 2.172 /vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp -> /vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp [skipped, no changes] +#13 2.173 /vision/torchvision/csrc/ops/cuda/cuda_helpers.h -> /vision/torchvision/csrc/ops/hip/hip_helpers.h [ok] +#13 2.175 /vision/torchvision/csrc/ops/cuda/ps_roi_pool_kernel.cu -> /vision/torchvision/csrc/ops/hip/ps_roi_pool_kernel.hip [ok] +#13 2.176 /vision/torchvision/csrc/ops/cuda/nms_kernel.cu -> /vision/torchvision/csrc/ops/hip/nms_kernel.hip [ok] +#13 2.185 /vision/torchvision/csrc/ops/cuda/deform_conv2d_kernel.cu -> /vision/torchvision/csrc/ops/hip/deform_conv2d_kernel.hip [ok] +#13 2.185 /vision/torchvision/csrc/ops/cuda/cuda_helpers.h -> /vision/torchvision/csrc/ops/hip/hip_helpers.h [skipped, already hipified] +#13 2.187 /vision/torchvision/csrc/ops/cuda/roi_pool_kernel.cu -> /vision/torchvision/csrc/ops/hip/roi_pool_kernel.hip [ok] +#13 2.190 /vision/torchvision/csrc/ops/cuda/roi_align_kernel.cu -> /vision/torchvision/csrc/ops/hip/roi_align_kernel.hip [ok] +#13 2.193 /vision/torchvision/csrc/ops/cuda/ps_roi_align_kernel.cu -> /vision/torchvision/csrc/ops/hip/ps_roi_align_kernel.hip [ok] +#13 2.194 /vision/torchvision/csrc/ops/autograd/roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/roi_pool_kernel.cpp [skipped, no changes] +#13 2.196 /vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.cpp [skipped, no changes] +#13 2.197 /vision/torchvision/csrc/ops/autograd/roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/roi_align_kernel.cpp [skipped, no changes] +#13 2.198 /vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp [skipped, no changes] +#13 2.199 /vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.cpp [skipped, no changes] +#13 2.200 /vision/torchvision/csrc/ops/cpu/roi_align_common.h -> /vision/torchvision/csrc/ops/cpu/roi_align_common.h [skipped, no changes] +#13 2.202 /vision/torchvision/csrc/ops/cpu/roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/roi_pool_kernel.cpp [skipped, no changes] +#13 2.209 /vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.cpp [skipped, no changes] +#13 2.211 /vision/torchvision/csrc/ops/cpu/roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/roi_align_kernel_hip.cpp [ok] +#13 2.212 /vision/torchvision/csrc/ops/cpu/nms_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/nms_kernel.cpp [skipped, no changes] +#13 2.214 /vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.cpp [skipped, no changes] +#13 2.217 /vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.cpp [skipped, no changes] +#13 2.217 /vision/examples/cpp/hello_world/main.cpp -> /vision/examples/cpp/hello_world/main.cpp [skipped, no changes] +#13 2.225 /vision/.circleci/config.yml.in -> /vision/.circleci/config.yml_hip.in [ok] +#13 2.225 /vision/test/cpp/test_custom_operators.cpp -> /vision/test/cpp/test_custom_operators.cpp [skipped, no changes] +#13 2.226 /vision/test/tracing/frcnn/test_frcnn_tracing.cpp -> /vision/test/tracing/frcnn/test_frcnn_tracing.cpp [skipped, no changes] +#13 2.226 /vision/cmake/TorchVisionConfig.cmake.in -> /vision/cmake/TorchVisionConfig.cmake.in [skipped, no changes] +#13 2.226 Total number of unsupported CUDA function calls: 0 +#13 2.226 +#13 2.226 +#13 2.226 Total number of replaced kernel launches: 15 +#13 2.226 Successfully preprocessed all matching files. +#13 2.229 Building torchvision without PNG image support +#13 2.230 Running build on conda-build: False +#13 2.230 Running build on conda: False +#13 2.230 Building torchvision without JPEG image support +#13 2.230 Building torchvision without NVJPEG image support +#13 2.297 Building torchvision without ffmpeg support +#13 2.297 libavformat header files were not found, disabling ffmpeg support +#13 2.297 Building torchvision without ffmpeg support +#13 2.297 libavcodec header files were not found, disabling ffmpeg support +#13 2.297 Building torchvision without ffmpeg support +#13 2.297 libavutil header files were not found, disabling ffmpeg support +#13 2.297 Building torchvision without ffmpeg support +#13 2.297 libswscale header files were not found, disabling ffmpeg support +#13 2.297 Building torchvision without ffmpeg support +#13 2.297 libswresample header files were not found, disabling ffmpeg support +#13 2.297 Building torchvision without video codec support +#13 2.315 running bdist_wheel +#13 2.321 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:135: SetuptoolsDeprecationWarning: bdist_wheel.universal is deprecated +#13 2.321 !! +#13 2.321 +#13 2.321 ******************************************************************************** +#13 2.321 With Python 2.7 end-of-life, support for building universal wheels +#13 2.321 (i.e., wheels that support both Python 2 and Python 3) +#13 2.321 is being obviated. +#13 2.321 Please discontinue using this option, or if you still need it, +#13 2.321 file an issue with pypa/setuptools describing your use case. +#13 2.321 +#13 2.321 By 2025-Aug-30, you need to update your project and remove deprecated calls +#13 2.321 or your builds will no longer be supported. +#13 2.321 ******************************************************************************** +#13 2.321 +#13 2.321 !! +#13 2.321 self.finalize_options() +#13 2.325 running build +#13 2.325 running build_py +#13 2.328 creating build/lib.linux-x86_64-cpython-310/torchvision +#13 2.328 copying torchvision/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.328 copying torchvision/extension.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.329 copying torchvision/_internally_replaced_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.329 copying torchvision/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.329 copying torchvision/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.329 copying torchvision/version.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.329 creating build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.329 copying torchvision/io/_video_opt.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.330 copying torchvision/io/video_reader.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.330 copying torchvision/io/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.330 copying torchvision/io/image.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.330 copying torchvision/io/video.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.330 copying torchvision/io/_load_gpu_decoder.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.331 creating build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.331 copying torchvision/datasets/voc.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.331 copying torchvision/datasets/country211.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.332 copying torchvision/datasets/_stereo_matching.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.332 copying torchvision/datasets/dtd.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.332 copying torchvision/datasets/celeba.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.332 copying torchvision/datasets/stl10.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.332 copying torchvision/datasets/gtsrb.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.333 copying torchvision/datasets/omniglot.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.333 copying torchvision/datasets/video_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.333 copying torchvision/datasets/sbd.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.333 copying torchvision/datasets/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.333 copying torchvision/datasets/lfw.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.334 copying torchvision/datasets/semeion.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.334 copying torchvision/datasets/kitti.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.334 copying torchvision/datasets/sun397.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.334 copying torchvision/datasets/phototour.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.334 copying torchvision/datasets/vision.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.335 copying torchvision/datasets/clevr.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.335 copying torchvision/datasets/folder.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.335 copying torchvision/datasets/coco.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.335 copying torchvision/datasets/fakedata.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.335 copying torchvision/datasets/caltech.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.335 copying torchvision/datasets/svhn.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.336 copying torchvision/datasets/fer2013.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.336 copying torchvision/datasets/rendered_sst2.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.336 copying torchvision/datasets/places365.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.336 copying torchvision/datasets/moving_mnist.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.336 copying torchvision/datasets/imagenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.337 copying torchvision/datasets/_optical_flow.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.337 copying torchvision/datasets/hmdb51.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.337 copying torchvision/datasets/fgvc_aircraft.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.337 copying torchvision/datasets/kinetics.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.337 copying torchvision/datasets/cityscapes.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.338 copying torchvision/datasets/inaturalist.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.338 copying torchvision/datasets/oxford_iiit_pet.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.338 copying torchvision/datasets/food101.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.338 copying torchvision/datasets/flickr.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.338 copying torchvision/datasets/stanford_cars.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.339 copying torchvision/datasets/eurosat.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.339 copying torchvision/datasets/pcam.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.339 copying torchvision/datasets/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.339 copying torchvision/datasets/mnist.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.339 copying torchvision/datasets/cifar.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.340 copying torchvision/datasets/flowers102.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.340 copying torchvision/datasets/ucf101.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.340 copying torchvision/datasets/usps.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.340 copying torchvision/datasets/lsun.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.340 copying torchvision/datasets/widerface.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.340 copying torchvision/datasets/sbu.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.341 creating build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.341 copying torchvision/datapoints/_dataset_wrapper.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.341 copying torchvision/datapoints/_bounding_box.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.341 copying torchvision/datapoints/_mask.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.341 copying torchvision/datapoints/_image.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.342 copying torchvision/datapoints/_video.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.342 copying torchvision/datapoints/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.342 copying torchvision/datapoints/_datapoint.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.342 creating build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.343 copying torchvision/models/mobilenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.343 copying torchvision/models/_meta.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.343 copying torchvision/models/vision_transformer.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.343 copying torchvision/models/googlenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.343 copying torchvision/models/mobilenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.344 copying torchvision/models/convnext.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.344 copying torchvision/models/_api.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.344 copying torchvision/models/efficientnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.344 copying torchvision/models/vgg.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.344 copying torchvision/models/mnasnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.345 copying torchvision/models/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.345 copying torchvision/models/squeezenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.345 copying torchvision/models/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.345 copying torchvision/models/resnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.345 copying torchvision/models/inception.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.346 copying torchvision/models/alexnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.346 copying torchvision/models/shufflenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.346 copying torchvision/models/mobilenetv3.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.346 copying torchvision/models/maxvit.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.346 copying torchvision/models/regnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.347 copying torchvision/models/feature_extraction.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.347 copying torchvision/models/densenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.347 copying torchvision/models/swin_transformer.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.347 creating build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.348 copying torchvision/transforms/_transforms_video.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.348 copying torchvision/transforms/autoaugment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.348 copying torchvision/transforms/functional.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.348 copying torchvision/transforms/functional_tensor.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.348 copying torchvision/transforms/_functional_video.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.349 copying torchvision/transforms/_presets.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.349 copying torchvision/transforms/transforms.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.349 copying torchvision/transforms/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.349 copying torchvision/transforms/functional_pil.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.349 copying torchvision/transforms/_functional_pil.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.350 copying torchvision/transforms/_functional_tensor.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.350 creating build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.350 copying torchvision/ops/ps_roi_align.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.350 copying torchvision/ops/stochastic_depth.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.350 copying torchvision/ops/boxes.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.351 copying torchvision/ops/deform_conv.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.351 copying torchvision/ops/ciou_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.351 copying torchvision/ops/roi_pool.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.351 copying torchvision/ops/_register_onnx_ops.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.351 copying torchvision/ops/roi_align.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.352 copying torchvision/ops/drop_block.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.352 copying torchvision/ops/misc.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.352 copying torchvision/ops/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.352 copying torchvision/ops/ps_roi_pool.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.352 copying torchvision/ops/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.353 copying torchvision/ops/poolers.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.353 copying torchvision/ops/_box_convert.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.353 copying torchvision/ops/diou_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.353 copying torchvision/ops/giou_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.353 copying torchvision/ops/focal_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.353 copying torchvision/ops/feature_pyramid_network.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.354 creating build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers +#13 2.354 copying torchvision/datasets/samplers/clip_sampler.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers +#13 2.354 copying torchvision/datasets/samplers/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers +#13 2.354 creating build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.355 copying torchvision/models/optical_flow/raft.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.355 copying torchvision/models/optical_flow/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.355 copying torchvision/models/optical_flow/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.355 creating build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.355 copying torchvision/models/video/mvit.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.356 copying torchvision/models/video/s3d.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.356 copying torchvision/models/video/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.356 copying torchvision/models/video/resnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.356 copying torchvision/models/video/swin_transformer.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.356 creating build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.357 copying torchvision/models/segmentation/deeplabv3.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.357 copying torchvision/models/segmentation/lraspp.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.357 copying torchvision/models/segmentation/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.357 copying torchvision/models/segmentation/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.357 copying torchvision/models/segmentation/fcn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.358 creating build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.358 copying torchvision/models/quantization/mobilenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.358 copying torchvision/models/quantization/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.358 copying torchvision/models/quantization/googlenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.358 copying torchvision/models/quantization/mobilenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.359 copying torchvision/models/quantization/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.359 copying torchvision/models/quantization/resnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.359 copying torchvision/models/quantization/inception.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.359 copying torchvision/models/quantization/shufflenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.359 copying torchvision/models/quantization/mobilenetv3.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.360 creating build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.360 copying torchvision/models/detection/backbone_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.360 copying torchvision/models/detection/roi_heads.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.360 copying torchvision/models/detection/retinanet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.360 copying torchvision/models/detection/rpn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.361 copying torchvision/models/detection/mask_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.361 copying torchvision/models/detection/ssd.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.361 copying torchvision/models/detection/transform.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.361 copying torchvision/models/detection/fcos.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.361 copying torchvision/models/detection/generalized_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.362 copying torchvision/models/detection/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.362 copying torchvision/models/detection/faster_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.362 copying torchvision/models/detection/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.362 copying torchvision/models/detection/image_list.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.362 copying torchvision/models/detection/keypoint_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.363 copying torchvision/models/detection/ssdlite.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.363 copying torchvision/models/detection/anchor_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.363 creating build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.363 copying torchvision/transforms/v2/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.364 copying torchvision/transforms/v2/_type_conversion.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.364 copying torchvision/transforms/v2/_meta.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.364 copying torchvision/transforms/v2/_misc.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.364 copying torchvision/transforms/v2/_transform.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.364 copying torchvision/transforms/v2/_color.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.364 copying torchvision/transforms/v2/_container.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.365 copying torchvision/transforms/v2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.365 copying torchvision/transforms/v2/_auto_augment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.365 copying torchvision/transforms/v2/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.365 copying torchvision/transforms/v2/_temporal.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.365 copying torchvision/transforms/v2/_deprecated.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.366 copying torchvision/transforms/v2/_geometry.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.366 copying torchvision/transforms/v2/_augment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.366 creating build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.366 copying torchvision/transforms/v2/functional/_type_conversion.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.367 copying torchvision/transforms/v2/functional/_meta.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.367 copying torchvision/transforms/v2/functional/_misc.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.367 copying torchvision/transforms/v2/functional/_color.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.367 copying torchvision/transforms/v2/functional/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.367 copying torchvision/transforms/v2/functional/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.368 copying torchvision/transforms/v2/functional/_temporal.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.368 copying torchvision/transforms/v2/functional/_deprecated.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.368 copying torchvision/transforms/v2/functional/_geometry.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.368 copying torchvision/transforms/v2/functional/_augment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.372 running build_ext +#13 2.374 building 'torchvision._C' extension +#13 2.374 creating /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd +#13 2.374 creating /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu +#13 2.375 creating /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu +#13 2.376 Emitting ninja build file /vision/build/temp.linux-x86_64-cpython-310/build.ninja... +#13 2.377 Compiling objects... +#13 2.377 Using envvar MAX_JOBS (14) as the number of workers... +#13 19.25 [1/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/nms.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/nms.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/nms.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.40 [2/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/deform_conv2d.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/deform_conv2d.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/deform_conv2d.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.47 [3/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_align.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/ps_roi_align.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_align.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.64 [4/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.67 [5/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/nms_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/nms_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/nms_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.87 [6/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.97 [7/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 22.86 [8/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 23.05 [9/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 23.45 [10/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 24.97 [11/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 24.99 [12/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 25.67 [13/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 26.73 [14/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 26.88 [15/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/vision.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/vision.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/vision.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 26.88 In file included from /vision/torchvision/csrc/vision.cpp:1: +#13 26.88 /vision/torchvision/csrc/vision.h:10:40: warning: ‘_register_ops’ initialized and declared ‘extern’ +#13 26.88 10 | extern "C" VISION_INLINE_VARIABLE auto _register_ops = &cuda_version; +#13 26.88 | ^~~~~~~~~~~~~ +#13 31.11 [16/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 31.29 [17/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_pool.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/ps_roi_pool.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_pool.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 31.50 [18/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 31.71 [19/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_pool.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/roi_pool.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_pool.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 31.85 [20/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_align.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/roi_align.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_align.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 31.85 x86_64-linux-gnu-g++ -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -shared -Wl,-O1 -Wl,-Bsymbolic-functions /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/nms_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/deform_conv2d.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/nms.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_align.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_pool.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_align.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_pool.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/vision.o -L/usr/local/lib/python3.10/dist-packages/torch/lib -L/usr/lib/x86_64-linux-gnu -lc10 -ltorch -ltorch_cpu -ltorch_python -o build/lib.linux-x86_64-cpython-310/torchvision/_C.so +#13 32.34 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. +#13 32.34 !! +#13 32.34 +#13 32.34 ******************************************************************************** +#13 32.34 Please avoid running ``setup.py`` directly. +#13 32.34 Instead, use pypa/build, pypa/installer or other +#13 32.34 standards-based tools. +#13 32.34 +#13 32.34 By 2025-Oct-31, you need to update your project and remove deprecated calls +#13 32.34 or your builds will no longer be supported. +#13 32.34 +#13 32.34 See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. +#13 32.34 ******************************************************************************** +#13 32.34 +#13 32.34 !! +#13 32.34 self.initialize_options() +#13 32.34 installing to build/bdist.linux-x86_64/wheel +#13 32.34 running install +#13 32.34 running install_lib +#13 32.35 creating build/bdist.linux-x86_64/wheel +#13 32.35 creating build/bdist.linux-x86_64/wheel/torchvision +#13 32.35 creating build/bdist.linux-x86_64/wheel/torchvision/io +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/io/_video_opt.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/io/video_reader.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/io/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/io/image.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/io/video.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/io/_load_gpu_decoder.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 32.35 creating build/bdist.linux-x86_64/wheel/torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/voc.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/country211.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/_stereo_matching.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/dtd.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/celeba.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/stl10.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/gtsrb.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/omniglot.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/video_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/sbd.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/lfw.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/semeion.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/kitti.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/sun397.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/phototour.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/vision.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/clevr.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/folder.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/coco.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/fakedata.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/caltech.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/svhn.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/fer2013.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/rendered_sst2.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/places365.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 creating build/bdist.linux-x86_64/wheel/torchvision/datasets/samplers +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers/clip_sampler.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets/samplers +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets/samplers +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/moving_mnist.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/imagenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/_optical_flow.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/hmdb51.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/fgvc_aircraft.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/kinetics.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/cityscapes.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/inaturalist.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/oxford_iiit_pet.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/food101.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/flickr.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/stanford_cars.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/eurosat.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/pcam.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/mnist.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.35 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/cifar.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/flowers102.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/ucf101.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/usps.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/lsun.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/widerface.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/sbu.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.36 creating build/bdist.linux-x86_64/wheel/torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_dataset_wrapper.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_bounding_box.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_mask.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_image.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_video.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_datapoint.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/extension.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.36 creating build/bdist.linux-x86_64/wheel/torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mobilenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/_meta.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/vision_transformer.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/googlenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mobilenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/convnext.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/_api.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 creating build/bdist.linux-x86_64/wheel/torchvision/models/optical_flow +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow/raft.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/optical_flow +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/optical_flow +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/optical_flow +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/efficientnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/vgg.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mnasnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/squeezenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 creating build/bdist.linux-x86_64/wheel/torchvision/models/video +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/mvit.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/s3d.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/resnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/swin_transformer.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 32.36 creating build/bdist.linux-x86_64/wheel/torchvision/models/segmentation +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/deeplabv3.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/lraspp.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/fcn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/resnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/inception.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.36 creating build/bdist.linux-x86_64/wheel/torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/mobilenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/googlenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/mobilenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/resnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.36 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/inception.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/shufflenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/mobilenetv3.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/alexnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 creating build/bdist.linux-x86_64/wheel/torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/backbone_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/roi_heads.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/retinanet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/rpn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/mask_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/ssd.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/transform.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/fcos.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/generalized_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/faster_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/image_list.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/keypoint_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/ssdlite.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/anchor_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/shufflenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mobilenetv3.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/maxvit.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/regnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/feature_extraction.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/densenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/models/swin_transformer.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/_internally_replaced_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.37 creating build/bdist.linux-x86_64/wheel/torchvision/transforms +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_transforms_video.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/autoaugment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/functional.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/functional_tensor.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_functional_video.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.37 creating build/bdist.linux-x86_64/wheel/torchvision/transforms/v2 +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_type_conversion.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.37 creating build/bdist.linux-x86_64/wheel/torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_type_conversion.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_meta.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_misc.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_color.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_temporal.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_deprecated.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_geometry.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_augment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_meta.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_misc.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.37 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_transform.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_color.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_container.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_auto_augment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_temporal.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_deprecated.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_geometry.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_augment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_presets.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/transforms.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/functional_pil.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_functional_pil.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_functional_tensor.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.38 creating build/bdist.linux-x86_64/wheel/torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/ps_roi_align.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/stochastic_depth.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/boxes.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/deform_conv.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/ciou_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/roi_pool.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/_register_onnx_ops.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/roi_align.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/drop_block.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/misc.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/ps_roi_pool.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/poolers.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/_box_convert.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/diou_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/giou_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/focal_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/feature_pyramid_network.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/version.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.38 copying build/lib.linux-x86_64-cpython-310/torchvision/_C.so -> build/bdist.linux-x86_64/wheel/./torchvision +#13 32.42 running install_egg_info +#13 32.42 running egg_info +#13 32.42 creating torchvision.egg-info +#13 32.42 writing torchvision.egg-info/PKG-INFO +#13 32.42 writing dependency_links to torchvision.egg-info/dependency_links.txt +#13 32.42 writing requirements to torchvision.egg-info/requires.txt +#13 32.42 writing top-level names to torchvision.egg-info/top_level.txt +#13 32.43 writing manifest file 'torchvision.egg-info/SOURCES.txt' +#13 32.43 reading manifest file 'torchvision.egg-info/SOURCES.txt' +#13 32.43 reading manifest template 'MANIFEST.in' +#13 32.43 warning: no previously-included files matching '__pycache__' found under directory '*' +#13 32.43 warning: no previously-included files matching '*.py[co]' found under directory '*' +#13 32.43 adding license file 'LICENSE' +#13 32.44 writing manifest file 'torchvision.egg-info/SOURCES.txt' +#13 32.44 Copying torchvision.egg-info to build/bdist.linux-x86_64/wheel/./torchvision-0.15.2a0+fa99a53-py3.10.egg-info +#13 32.44 running install_scripts +#13 32.45 creating build/bdist.linux-x86_64/wheel/torchvision-0.15.2a0+fa99a53.dist-info/WHEEL +#13 32.45 creating 'dist/torchvision-0.15.2a0+fa99a53-cp310-cp310-linux_x86_64.whl' and adding 'build/bdist.linux-x86_64/wheel' to it +#13 33.58 adding 'torchvision/_C.so' +#13 33.59 adding 'torchvision/__init__.py' +#13 33.59 adding 'torchvision/_internally_replaced_utils.py' +#13 33.59 adding 'torchvision/_utils.py' +#13 33.59 adding 'torchvision/extension.py' +#13 33.59 adding 'torchvision/utils.py' +#13 33.59 adding 'torchvision/version.py' +#13 33.60 adding 'torchvision/datapoints/__init__.py' +#13 33.60 adding 'torchvision/datapoints/_bounding_box.py' +#13 33.60 adding 'torchvision/datapoints/_datapoint.py' +#13 33.60 adding 'torchvision/datapoints/_dataset_wrapper.py' +#13 33.60 adding 'torchvision/datapoints/_image.py' +#13 33.60 adding 'torchvision/datapoints/_mask.py' +#13 33.60 adding 'torchvision/datapoints/_video.py' +#13 33.60 adding 'torchvision/datasets/__init__.py' +#13 33.60 adding 'torchvision/datasets/_optical_flow.py' +#13 33.60 adding 'torchvision/datasets/_stereo_matching.py' +#13 33.60 adding 'torchvision/datasets/caltech.py' +#13 33.60 adding 'torchvision/datasets/celeba.py' +#13 33.60 adding 'torchvision/datasets/cifar.py' +#13 33.60 adding 'torchvision/datasets/cityscapes.py' +#13 33.60 adding 'torchvision/datasets/clevr.py' +#13 33.60 adding 'torchvision/datasets/coco.py' +#13 33.60 adding 'torchvision/datasets/country211.py' +#13 33.60 adding 'torchvision/datasets/dtd.py' +#13 33.60 adding 'torchvision/datasets/eurosat.py' +#13 33.60 adding 'torchvision/datasets/fakedata.py' +#13 33.60 adding 'torchvision/datasets/fer2013.py' +#13 33.60 adding 'torchvision/datasets/fgvc_aircraft.py' +#13 33.60 adding 'torchvision/datasets/flickr.py' +#13 33.60 adding 'torchvision/datasets/flowers102.py' +#13 33.60 adding 'torchvision/datasets/folder.py' +#13 33.60 adding 'torchvision/datasets/food101.py' +#13 33.60 adding 'torchvision/datasets/gtsrb.py' +#13 33.60 adding 'torchvision/datasets/hmdb51.py' +#13 33.60 adding 'torchvision/datasets/imagenet.py' +#13 33.60 adding 'torchvision/datasets/inaturalist.py' +#13 33.60 adding 'torchvision/datasets/kinetics.py' +#13 33.60 adding 'torchvision/datasets/kitti.py' +#13 33.60 adding 'torchvision/datasets/lfw.py' +#13 33.60 adding 'torchvision/datasets/lsun.py' +#13 33.60 adding 'torchvision/datasets/mnist.py' +#13 33.61 adding 'torchvision/datasets/moving_mnist.py' +#13 33.61 adding 'torchvision/datasets/omniglot.py' +#13 33.61 adding 'torchvision/datasets/oxford_iiit_pet.py' +#13 33.61 adding 'torchvision/datasets/pcam.py' +#13 33.61 adding 'torchvision/datasets/phototour.py' +#13 33.61 adding 'torchvision/datasets/places365.py' +#13 33.61 adding 'torchvision/datasets/rendered_sst2.py' +#13 33.61 adding 'torchvision/datasets/sbd.py' +#13 33.61 adding 'torchvision/datasets/sbu.py' +#13 33.61 adding 'torchvision/datasets/semeion.py' +#13 33.61 adding 'torchvision/datasets/stanford_cars.py' +#13 33.61 adding 'torchvision/datasets/stl10.py' +#13 33.61 adding 'torchvision/datasets/sun397.py' +#13 33.61 adding 'torchvision/datasets/svhn.py' +#13 33.61 adding 'torchvision/datasets/ucf101.py' +#13 33.61 adding 'torchvision/datasets/usps.py' +#13 33.61 adding 'torchvision/datasets/utils.py' +#13 33.61 adding 'torchvision/datasets/video_utils.py' +#13 33.61 adding 'torchvision/datasets/vision.py' +#13 33.61 adding 'torchvision/datasets/voc.py' +#13 33.61 adding 'torchvision/datasets/widerface.py' +#13 33.61 adding 'torchvision/datasets/samplers/__init__.py' +#13 33.61 adding 'torchvision/datasets/samplers/clip_sampler.py' +#13 33.61 adding 'torchvision/io/__init__.py' +#13 33.61 adding 'torchvision/io/_load_gpu_decoder.py' +#13 33.61 adding 'torchvision/io/_video_opt.py' +#13 33.61 adding 'torchvision/io/image.py' +#13 33.61 adding 'torchvision/io/video.py' +#13 33.61 adding 'torchvision/io/video_reader.py' +#13 33.61 adding 'torchvision/models/__init__.py' +#13 33.61 adding 'torchvision/models/_api.py' +#13 33.61 adding 'torchvision/models/_meta.py' +#13 33.61 adding 'torchvision/models/_utils.py' +#13 33.61 adding 'torchvision/models/alexnet.py' +#13 33.61 adding 'torchvision/models/convnext.py' +#13 33.62 adding 'torchvision/models/densenet.py' +#13 33.62 adding 'torchvision/models/efficientnet.py' +#13 33.62 adding 'torchvision/models/feature_extraction.py' +#13 33.62 adding 'torchvision/models/googlenet.py' +#13 33.62 adding 'torchvision/models/inception.py' +#13 33.62 adding 'torchvision/models/maxvit.py' +#13 33.62 adding 'torchvision/models/mnasnet.py' +#13 33.62 adding 'torchvision/models/mobilenet.py' +#13 33.62 adding 'torchvision/models/mobilenetv2.py' +#13 33.62 adding 'torchvision/models/mobilenetv3.py' +#13 33.62 adding 'torchvision/models/regnet.py' +#13 33.62 adding 'torchvision/models/resnet.py' +#13 33.62 adding 'torchvision/models/shufflenetv2.py' +#13 33.62 adding 'torchvision/models/squeezenet.py' +#13 33.62 adding 'torchvision/models/swin_transformer.py' +#13 33.62 adding 'torchvision/models/vgg.py' +#13 33.62 adding 'torchvision/models/vision_transformer.py' +#13 33.62 adding 'torchvision/models/detection/__init__.py' +#13 33.62 adding 'torchvision/models/detection/_utils.py' +#13 33.62 adding 'torchvision/models/detection/anchor_utils.py' +#13 33.62 adding 'torchvision/models/detection/backbone_utils.py' +#13 33.63 adding 'torchvision/models/detection/faster_rcnn.py' +#13 33.63 adding 'torchvision/models/detection/fcos.py' +#13 33.63 adding 'torchvision/models/detection/generalized_rcnn.py' +#13 33.63 adding 'torchvision/models/detection/image_list.py' +#13 33.63 adding 'torchvision/models/detection/keypoint_rcnn.py' +#13 33.63 adding 'torchvision/models/detection/mask_rcnn.py' +#13 33.63 adding 'torchvision/models/detection/retinanet.py' +#13 33.63 adding 'torchvision/models/detection/roi_heads.py' +#13 33.63 adding 'torchvision/models/detection/rpn.py' +#13 33.63 adding 'torchvision/models/detection/ssd.py' +#13 33.63 adding 'torchvision/models/detection/ssdlite.py' +#13 33.63 adding 'torchvision/models/detection/transform.py' +#13 33.63 adding 'torchvision/models/optical_flow/__init__.py' +#13 33.63 adding 'torchvision/models/optical_flow/_utils.py' +#13 33.63 adding 'torchvision/models/optical_flow/raft.py' +#13 33.63 adding 'torchvision/models/quantization/__init__.py' +#13 33.63 adding 'torchvision/models/quantization/googlenet.py' +#13 33.63 adding 'torchvision/models/quantization/inception.py' +#13 33.63 adding 'torchvision/models/quantization/mobilenet.py' +#13 33.63 adding 'torchvision/models/quantization/mobilenetv2.py' +#13 33.63 adding 'torchvision/models/quantization/mobilenetv3.py' +#13 33.63 adding 'torchvision/models/quantization/resnet.py' +#13 33.63 adding 'torchvision/models/quantization/shufflenetv2.py' +#13 33.63 adding 'torchvision/models/quantization/utils.py' +#13 33.63 adding 'torchvision/models/segmentation/__init__.py' +#13 33.64 adding 'torchvision/models/segmentation/_utils.py' +#13 33.64 adding 'torchvision/models/segmentation/deeplabv3.py' +#13 33.64 adding 'torchvision/models/segmentation/fcn.py' +#13 33.64 adding 'torchvision/models/segmentation/lraspp.py' +#13 33.64 adding 'torchvision/models/video/__init__.py' +#13 33.64 adding 'torchvision/models/video/mvit.py' +#13 33.64 adding 'torchvision/models/video/resnet.py' +#13 33.64 adding 'torchvision/models/video/s3d.py' +#13 33.64 adding 'torchvision/models/video/swin_transformer.py' +#13 33.64 adding 'torchvision/ops/__init__.py' +#13 33.64 adding 'torchvision/ops/_box_convert.py' +#13 33.64 adding 'torchvision/ops/_register_onnx_ops.py' +#13 33.64 adding 'torchvision/ops/_utils.py' +#13 33.64 adding 'torchvision/ops/boxes.py' +#13 33.64 adding 'torchvision/ops/ciou_loss.py' +#13 33.64 adding 'torchvision/ops/deform_conv.py' +#13 33.64 adding 'torchvision/ops/diou_loss.py' +#13 33.64 adding 'torchvision/ops/drop_block.py' +#13 33.64 adding 'torchvision/ops/feature_pyramid_network.py' +#13 33.64 adding 'torchvision/ops/focal_loss.py' +#13 33.64 adding 'torchvision/ops/giou_loss.py' +#13 33.64 adding 'torchvision/ops/misc.py' +#13 33.64 adding 'torchvision/ops/poolers.py' +#13 33.64 adding 'torchvision/ops/ps_roi_align.py' +#13 33.64 adding 'torchvision/ops/ps_roi_pool.py' +#13 33.64 adding 'torchvision/ops/roi_align.py' +#13 33.64 adding 'torchvision/ops/roi_pool.py' +#13 33.64 adding 'torchvision/ops/stochastic_depth.py' +#13 33.64 adding 'torchvision/transforms/__init__.py' +#13 33.64 adding 'torchvision/transforms/_functional_pil.py' +#13 33.64 adding 'torchvision/transforms/_functional_tensor.py' +#13 33.64 adding 'torchvision/transforms/_functional_video.py' +#13 33.64 adding 'torchvision/transforms/_presets.py' +#13 33.64 adding 'torchvision/transforms/_transforms_video.py' +#13 33.65 adding 'torchvision/transforms/autoaugment.py' +#13 33.65 adding 'torchvision/transforms/functional.py' +#13 33.65 adding 'torchvision/transforms/functional_pil.py' +#13 33.65 adding 'torchvision/transforms/functional_tensor.py' +#13 33.65 adding 'torchvision/transforms/transforms.py' +#13 33.65 adding 'torchvision/transforms/v2/__init__.py' +#13 33.65 adding 'torchvision/transforms/v2/_augment.py' +#13 33.65 adding 'torchvision/transforms/v2/_auto_augment.py' +#13 33.65 adding 'torchvision/transforms/v2/_color.py' +#13 33.65 adding 'torchvision/transforms/v2/_container.py' +#13 33.65 adding 'torchvision/transforms/v2/_deprecated.py' +#13 33.65 adding 'torchvision/transforms/v2/_geometry.py' +#13 33.65 adding 'torchvision/transforms/v2/_meta.py' +#13 33.65 adding 'torchvision/transforms/v2/_misc.py' +#13 33.65 adding 'torchvision/transforms/v2/_temporal.py' +#13 33.65 adding 'torchvision/transforms/v2/_transform.py' +#13 33.65 adding 'torchvision/transforms/v2/_type_conversion.py' +#13 33.65 adding 'torchvision/transforms/v2/_utils.py' +#13 33.65 adding 'torchvision/transforms/v2/utils.py' +#13 33.65 adding 'torchvision/transforms/v2/functional/__init__.py' +#13 33.65 adding 'torchvision/transforms/v2/functional/_augment.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_color.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_deprecated.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_geometry.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_meta.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_misc.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_temporal.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_type_conversion.py' +#13 33.66 adding 'torchvision/transforms/v2/functional/_utils.py' +#13 33.66 adding 'torchvision-0.15.2a0+fa99a53.dist-info/licenses/LICENSE' +#13 33.66 adding 'torchvision-0.15.2a0+fa99a53.dist-info/METADATA' +#13 33.66 adding 'torchvision-0.15.2a0+fa99a53.dist-info/WHEEL' +#13 33.66 adding 'torchvision-0.15.2a0+fa99a53.dist-info/top_level.txt' +#13 33.66 adding 'torchvision-0.15.2a0+fa99a53.dist-info/RECORD' +#13 33.66 removing build/bdist.linux-x86_64/wheel +#13 34.49 Processing ./dist/torchvision-0.15.2a0+fa99a53-cp310-cp310-linux_x86_64.whl +#13 34.51 Requirement already satisfied: numpy in /usr/local/lib/python3.10/dist-packages (from torchvision==0.15.2a0+fa99a53) (1.23.5) +#13 34.51 Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from torchvision==0.15.2a0+fa99a53) (2.32.3) +#13 34.51 Requirement already satisfied: torch in /usr/local/lib/python3.10/dist-packages (from torchvision==0.15.2a0+fa99a53) (2.0.0a0+gite9ebda2) +#13 40.22 Collecting pillow!=8.3.*,>=5.3.0 (from torchvision==0.15.2a0+fa99a53) +#13 40.55 Downloading pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (8.9 kB) +#13 40.57 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (3.4.2) +#13 40.57 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (3.10) +#13 40.57 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (2.4.0) +#13 40.57 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (2025.4.26) +#13 40.57 Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (3.18.0) +#13 40.57 Requirement already satisfied: typing-extensions in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (4.13.2) +#13 40.57 Requirement already satisfied: sympy in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (1.14.0) +#13 40.57 Requirement already satisfied: networkx in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (3.4.2) +#13 40.57 Requirement already satisfied: jinja2 in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (3.1.6) +#13 40.57 Requirement already satisfied: pytorch-triton-rocm<2.1,>=2.0.0 in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (2.0.2) +#13 40.58 Requirement already satisfied: cmake in /usr/local/lib/python3.10/dist-packages (from pytorch-triton-rocm<2.1,>=2.0.0->torch->torchvision==0.15.2a0+fa99a53) (3.20.2) +#13 40.58 Requirement already satisfied: lit in /usr/local/lib/python3.10/dist-packages (from pytorch-triton-rocm<2.1,>=2.0.0->torch->torchvision==0.15.2a0+fa99a53) (18.1.8) +#13 40.58 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.10/dist-packages (from jinja2->torch->torchvision==0.15.2a0+fa99a53) (3.0.2) +#13 40.59 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.10/dist-packages (from sympy->torch->torchvision==0.15.2a0+fa99a53) (1.3.0) +#13 40.65 Downloading pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl (4.6 MB) +#13 41.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/4.6 MB 9.8 MB/s eta 0:00:00 +#13 41.34 Installing collected packages: pillow, torchvision +#13 41.97 +#13 41.97 Successfully installed pillow-11.2.1 torchvision-0.15.2a0+fa99a53 +#13 DONE 42.6s + +#14 [11/18] RUN echo "Checkout Torchaudio Version: v2.0.2" && git clone --depth 1 --branch v2.0.2 https://github.com/pytorch/audio.git /audio && true +#14 0.351 Checkout Torchaudio Version: v2.0.2 +#14 0.352 Cloning into '/audio'... +#14 7.081 Note: switching to '31de77dad5c89274451b3f5c4bcb630be12787c4'. +#14 7.081 +#14 7.081 You are in 'detached HEAD' state. You can look around, make experimental +#14 7.081 changes and commit them, and you can discard any commits you make in this +#14 7.081 state without impacting any branches by switching back to a branch. +#14 7.081 +#14 7.081 If you want to create a new branch to retain commits you create, you may +#14 7.081 do so (now or later) by using -c with the switch command. Example: +#14 7.081 +#14 7.081 git switch -c +#14 7.081 +#14 7.081 Or undo this operation with: +#14 7.081 +#14 7.081 git switch - +#14 7.081 +#14 7.081 Turn off this advice by setting config variable advice.detachedHead to false +#14 7.081 +#14 DONE 7.3s + +#15 [12/18] WORKDIR /audio +#15 DONE 0.1s + +#16 [13/18] RUN echo "BUILDING Torchaudio v2.0.2" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/* +#16 0.313 BUILDING Torchaudio v2.0.2 +#16 0.554 Get:1 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] +#16 0.681 Get:2 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy InRelease [5415 B] +#16 0.796 Get:3 https://repo.radeon.com/rocm/apt/5.4.2 jammy InRelease [2603 B] +#16 0.801 Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] +#16 0.878 Get:5 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy/main amd64 Packages [9601 B] +#16 0.916 Get:6 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] +#16 0.962 Get:7 https://repo.radeon.com/rocm/apt/5.4.2 jammy/main amd64 Packages [31.8 kB] +#16 1.004 Get:8 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] +#16 1.092 Get:9 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB] +#16 1.140 Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB] +#16 1.242 Get:11 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [47.7 kB] +#16 1.338 Get:12 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB] +#16 1.339 Get:13 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1245 kB] +#16 2.031 Get:14 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2901 kB] +#16 2.442 Get:15 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [4282 kB] +#16 3.665 Get:16 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB] +#16 3.676 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1546 kB] +#16 3.808 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [4517 kB] +#16 4.192 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] +#16 4.468 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [55.7 kB] +#16 4.472 Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.2 kB] +#16 4.479 Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB] +#16 4.580 Fetched 38.4 MB in 4s (9046 kB/s) +#16 4.580 Reading package lists... +#16 5.251 W: https://repo.radeon.com/amdgpu/5.4.2/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#16 5.251 W: https://repo.radeon.com/rocm/apt/5.4.2/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#16 5.282 Reading package lists... +#16 5.942 Building dependency tree... +#16 6.093 Reading state information... +#16 6.224 The following additional packages will be installed: +#16 6.224 libao-common libao4 libflac-dev libid3tag0 libltdl7 libmad0 libogg-dev +#16 6.224 libopencore-amrnb0 libopencore-amrwb0 libopus-dev libsox-fmt-all +#16 6.224 libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 libsox-fmt-oss +#16 6.225 libsox-fmt-pulse libsox3 libvorbis-dev libwavpack1 +#16 6.225 Suggested packages: +#16 6.225 libaudio2 libsndio6.1 +#16 6.276 The following NEW packages will be installed: +#16 6.276 libao-common libao4 libflac-dev libid3tag0 libltdl7 libmad0 libogg-dev +#16 6.276 libopencore-amrnb0 libopencore-amrwb0 libopus-dev libsndfile1-dev libsox-dev +#16 6.276 libsox-fmt-all libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 +#16 6.276 libsox-fmt-oss libsox-fmt-pulse libsox3 libvorbis-dev libwavpack1 sox +#16 6.522 0 upgraded, 23 newly installed, 0 to remove and 124 not upgraded. +#16 6.522 Need to get 2628 kB of archives. +#16 6.522 After this operation, 10.7 MB of additional disk space will be used. +#16 6.522 Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libao-common all 1.2.2+20180113-1.1ubuntu3 [6568 B] +#16 6.606 Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libao4 amd64 1.2.2+20180113-1.1ubuntu3 [35.2 kB] +#16 6.709 Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg-dev amd64 1.3.5-0ubuntu3 [161 kB] +#16 6.893 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac-dev amd64 1.3.3-2ubuntu0.2 [162 kB] +#16 6.966 Get:5 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libid3tag0 amd64 0.15.1b-14 [31.3 kB] +#16 6.976 Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 libltdl7 amd64 2.4.6-15build2 [39.6 kB] +#16 6.987 Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmad0 amd64 0.15.1b-10ubuntu1 [63.1 kB] +#16 7.003 Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopencore-amrnb0 amd64 0.1.5-1 [94.8 kB] +#16 7.023 Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopencore-amrwb0 amd64 0.1.5-1 [49.1 kB] +#16 7.032 Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus-dev amd64 1.3.1-0.1build2 [252 kB] +#16 7.072 Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis-dev amd64 1.3.7-1build2 [347 kB] +#16 7.121 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1-dev amd64 1.0.31-2ubuntu0.2 [509 kB] +#16 7.177 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox3 amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [240 kB] +#16 7.205 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-alsa amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [11.2 kB] +#16 7.249 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-ao amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [7740 B] +#16 7.249 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwavpack1 amd64 5.4.0-1build2 [83.7 kB] +#16 7.249 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-base amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [33.7 kB] +#16 7.250 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-mp3 amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [17.3 kB] +#16 7.250 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-oss amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [9424 B] +#16 7.250 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-pulse amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [7732 B] +#16 7.250 Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-all amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [5016 B] +#16 7.327 Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-dev amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [356 kB] +#16 7.408 Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 sox amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [104 kB] +#16 7.531 debconf: delaying package configuration, since apt-utils is not installed +#16 7.566 Fetched 2628 kB in 1s (2311 kB/s) +#16 7.603 Selecting previously unselected package libao-common. +#16 7.603 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 29171 files and directories currently installed.) +#16 7.622 Preparing to unpack .../00-libao-common_1.2.2+20180113-1.1ubuntu3_all.deb ... +#16 7.632 Unpacking libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 7.703 Selecting previously unselected package libao4:amd64. +#16 7.705 Preparing to unpack .../01-libao4_1.2.2+20180113-1.1ubuntu3_amd64.deb ... +#16 7.724 Unpacking libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 7.782 Selecting previously unselected package libogg-dev:amd64. +#16 7.784 Preparing to unpack .../02-libogg-dev_1.3.5-0ubuntu3_amd64.deb ... +#16 7.793 Unpacking libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 7.854 Selecting previously unselected package libflac-dev:amd64. +#16 7.856 Preparing to unpack .../03-libflac-dev_1.3.3-2ubuntu0.2_amd64.deb ... +#16 7.862 Unpacking libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 7.905 Selecting previously unselected package libid3tag0:amd64. +#16 7.907 Preparing to unpack .../04-libid3tag0_0.15.1b-14_amd64.deb ... +#16 7.912 Unpacking libid3tag0:amd64 (0.15.1b-14) ... +#16 7.957 Selecting previously unselected package libltdl7:amd64. +#16 7.959 Preparing to unpack .../05-libltdl7_2.4.6-15build2_amd64.deb ... +#16 7.964 Unpacking libltdl7:amd64 (2.4.6-15build2) ... +#16 8.020 Selecting previously unselected package libmad0:amd64. +#16 8.022 Preparing to unpack .../06-libmad0_0.15.1b-10ubuntu1_amd64.deb ... +#16 8.030 Unpacking libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 8.092 Selecting previously unselected package libopencore-amrnb0:amd64. +#16 8.094 Preparing to unpack .../07-libopencore-amrnb0_0.1.5-1_amd64.deb ... +#16 8.102 Unpacking libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 8.164 Selecting previously unselected package libopencore-amrwb0:amd64. +#16 8.167 Preparing to unpack .../08-libopencore-amrwb0_0.1.5-1_amd64.deb ... +#16 8.175 Unpacking libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 8.228 Selecting previously unselected package libopus-dev:amd64. +#16 8.230 Preparing to unpack .../09-libopus-dev_1.3.1-0.1build2_amd64.deb ... +#16 8.238 Unpacking libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 8.292 Selecting previously unselected package libvorbis-dev:amd64. +#16 8.295 Preparing to unpack .../10-libvorbis-dev_1.3.7-1build2_amd64.deb ... +#16 8.303 Unpacking libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 8.365 Selecting previously unselected package libsndfile1-dev:amd64. +#16 8.367 Preparing to unpack .../11-libsndfile1-dev_1.0.31-2ubuntu0.2_amd64.deb ... +#16 8.376 Unpacking libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 8.451 Selecting previously unselected package libsox3:amd64. +#16 8.453 Preparing to unpack .../12-libsox3_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.462 Unpacking libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.514 Selecting previously unselected package libsox-fmt-alsa:amd64. +#16 8.517 Preparing to unpack .../13-libsox-fmt-alsa_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.525 Unpacking libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.576 Selecting previously unselected package libsox-fmt-ao:amd64. +#16 8.578 Preparing to unpack .../14-libsox-fmt-ao_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.586 Unpacking libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.648 Selecting previously unselected package libwavpack1:amd64. +#16 8.650 Preparing to unpack .../15-libwavpack1_5.4.0-1build2_amd64.deb ... +#16 8.658 Unpacking libwavpack1:amd64 (5.4.0-1build2) ... +#16 8.708 Selecting previously unselected package libsox-fmt-base:amd64. +#16 8.710 Preparing to unpack .../16-libsox-fmt-base_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.718 Unpacking libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.771 Selecting previously unselected package libsox-fmt-mp3:amd64. +#16 8.773 Preparing to unpack .../17-libsox-fmt-mp3_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.781 Unpacking libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.831 Selecting previously unselected package libsox-fmt-oss:amd64. +#16 8.833 Preparing to unpack .../18-libsox-fmt-oss_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.841 Unpacking libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.890 Selecting previously unselected package libsox-fmt-pulse:amd64. +#16 8.892 Preparing to unpack .../19-libsox-fmt-pulse_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.901 Unpacking libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 8.950 Selecting previously unselected package libsox-fmt-all:amd64. +#16 8.952 Preparing to unpack .../20-libsox-fmt-all_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 8.960 Unpacking libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.012 Selecting previously unselected package libsox-dev:amd64. +#16 9.014 Preparing to unpack .../21-libsox-dev_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 9.022 Unpacking libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.080 Selecting previously unselected package sox. +#16 9.082 Preparing to unpack .../22-sox_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 9.090 Unpacking sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.157 Setting up libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 9.181 Setting up libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 9.205 Setting up libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 9.238 Setting up libid3tag0:amd64 (0.15.1b-14) ... +#16 9.262 Setting up libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 9.286 Setting up libltdl7:amd64 (2.4.6-15build2) ... +#16 9.310 Setting up libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 9.334 Setting up libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 9.359 Setting up libwavpack1:amd64 (5.4.0-1build2) ... +#16 9.382 Setting up libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 9.407 Setting up libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 9.431 Setting up libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 9.455 Setting up libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.479 Setting up libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.503 Setting up libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 9.527 Setting up libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.551 Setting up libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.575 Setting up libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.599 Setting up libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.622 Setting up libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.646 Setting up sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.670 Setting up libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.694 Setting up libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 9.718 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#16 11.14 -- Git branch: HEAD +#16 11.14 -- Git SHA: 31de77dad5c89274451b3f5c4bcb630be12787c4 +#16 11.14 -- Git tag: v2.0.2 +#16 11.14 -- PyTorch dependency: torch +#16 11.14 -- Building version 2.0.2+31de77d +#16 11.14 --- Initializing submodules +#16 11.15 Submodule 'flashlight-text' (https://github.com/flashlight/text) registered for path 'third_party/flashlight-text/submodule' +#16 11.16 Submodule 'kaldi' (https://github.com/kaldi-asr/kaldi) registered for path 'third_party/kaldi/submodule' +#16 11.16 Submodule 'third_party/kenlm/submodule' (https://github.com/kpu/kenlm) registered for path 'third_party/kenlm/kenlm' +#16 11.18 Cloning into '/audio/third_party/flashlight-text/submodule'... +#16 18.39 Cloning into '/audio/third_party/kaldi/submodule'... +#16 36.67 Cloning into '/audio/third_party/kenlm/kenlm'... +#16 44.55 Submodule path 'third_party/flashlight-text/submodule': checked out '98028c7da83d66c2aba6f5f8708c063d266ca5a4' +#16 45.20 Submodule path 'third_party/kaldi/submodule': checked out '3eea37dd09b55064e6362216f7e9a60641f29f09' +#16 45.23 Submodule path 'third_party/kenlm/kenlm': checked out '5cea457db26950a73d638425c183b368c06ed7c6' +#16 45.23 --- Initialized submodule +#16 45.23 --- Fetching v1.2.12.tar.gz +#16 51.49 --- Fetching bzip2-1.0.8.tar.gz +#16 53.00 --- Fetching xz-5.2.5.tar.gz +#16 56.24 --- Fetching opencore-amr-0.1.5.tar.gz +#16 64.93 --- Fetching lame-3.99.5.tar.gz +#16 67.08 --- Fetching libogg-1.3.3.tar.gz +#16 70.43 --- Fetching flac-1.3.2.tar.xz +#16 74.46 --- Fetching libvorbis-1.3.6.tar.gz +#16 81.17 --- Fetching opus-1.3.1.tar.gz +#16 85.76 --- Fetching opusfile-0.12.tar.gz +#16 88.66 --- Fetching sox-14.4.2.tar.bz2 +#16 90.38 Excluding torchaudio.prototype from the package. +#16 90.39 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#16 90.39 !! +#16 90.39 +#16 90.39 ******************************************************************************** +#16 90.39 Please consider removing the following classifiers in favor of a SPDX license expression: +#16 90.39 +#16 90.39 License :: OSI Approved :: BSD License +#16 90.39 +#16 90.39 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#16 90.39 ******************************************************************************** +#16 90.39 +#16 90.39 !! +#16 90.39 self._finalize_license_expression() +#16 90.40 running bdist_wheel +#16 90.41 running build +#16 90.41 running build_py +#16 90.41 creating build/lib.linux-x86_64-cpython-310/torchaudio +#16 90.41 copying torchaudio/kaldi_io.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 90.41 copying torchaudio/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 90.41 copying torchaudio/version.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 90.41 creating build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 90.41 copying torchaudio/io/_compat.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 90.41 copying torchaudio/io/_stream_writer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 90.41 copying torchaudio/io/_stream_reader.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 90.41 copying torchaudio/io/_playback.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 90.41 copying torchaudio/io/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 90.41 creating build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/vctk.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/speechcommands.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/cmudict.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/cmuarctic.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/ljspeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/quesst14.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/dr_vctk.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/yesno.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/iemocap.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/commonvoice.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/librilight_limited.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/tedlium.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/librimix.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.41 copying torchaudio/datasets/voxceleb1.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/librispeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/libritts.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/gtzan.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/fluentcommands.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/musdb_hq.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 copying torchaudio/datasets/snips.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 90.42 copying torchaudio/_backend/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 90.42 copying torchaudio/_backend/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 90.42 copying torchaudio/pipelines/rnnt_pipeline.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 90.42 copying torchaudio/pipelines/_source_separation_pipeline.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 90.42 copying torchaudio/pipelines/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 90.42 copying torchaudio/utils/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 90.42 copying torchaudio/utils/sox_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 90.42 copying torchaudio/utils/ffmpeg_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 90.42 copying torchaudio/utils/download.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 90.42 copying torchaudio/sox_effects/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 90.42 copying torchaudio/sox_effects/sox_effects.py -> build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 90.42 copying torchaudio/functional/functional.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 90.42 copying torchaudio/functional/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 90.42 copying torchaudio/functional/filtering.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/conformer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/conv_tasnet.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/deepspeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/rnnt.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/wav2letter.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/emformer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/_hdemucs.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/tacotron2.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/wavernn.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 copying torchaudio/models/rnnt_decoder.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 90.42 copying torchaudio/_extension/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 90.42 copying torchaudio/_extension/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 90.42 copying torchaudio/_internal/module_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 90.42 copying torchaudio/_internal/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 90.42 creating build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.42 copying torchaudio/backend/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.42 copying torchaudio/backend/common.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.42 copying torchaudio/backend/soundfile_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.43 copying torchaudio/backend/sox_io_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.43 copying torchaudio/backend/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.43 copying torchaudio/backend/no_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 90.43 copying torchaudio/transforms/_multi_channel.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 90.43 copying torchaudio/transforms/_transforms.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 90.43 copying torchaudio/transforms/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 90.43 copying torchaudio/compliance/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 90.43 copying torchaudio/compliance/kaldi.py -> build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 90.43 copying torchaudio/pipelines/_tts/interface.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 90.43 copying torchaudio/pipelines/_tts/impl.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 90.43 copying torchaudio/pipelines/_tts/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 90.43 copying torchaudio/pipelines/_tts/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 90.43 copying torchaudio/pipelines/_wav2vec2/impl.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 90.43 copying torchaudio/pipelines/_wav2vec2/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 90.43 copying torchaudio/pipelines/_wav2vec2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 90.43 copying torchaudio/models/decoder/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 90.43 copying torchaudio/models/decoder/_ctc_decoder.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 90.43 copying torchaudio/models/wav2vec2/wavlm_attention.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 90.43 copying torchaudio/models/wav2vec2/model.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 90.43 copying torchaudio/models/wav2vec2/components.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 90.43 copying torchaudio/models/wav2vec2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 90.43 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 90.43 copying torchaudio/models/wav2vec2/utils/import_fairseq.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 90.43 copying torchaudio/models/wav2vec2/utils/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 90.43 copying torchaudio/models/wav2vec2/utils/import_huggingface.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 90.43 running build_ext +#16 90.52 -- The C compiler identification is GNU 11.3.0 +#16 90.57 -- The CXX compiler identification is GNU 11.3.0 +#16 90.58 -- Detecting C compiler ABI info +#16 90.62 -- Detecting C compiler ABI info - done +#16 90.62 -- Check for working C compiler: /usr/bin/cc - skipped +#16 90.62 -- Detecting C compile features +#16 90.62 -- Detecting C compile features - done +#16 90.63 -- Detecting CXX compiler ABI info +#16 90.68 -- Detecting CXX compiler ABI info - done +#16 90.68 -- Check for working CXX compiler: /usr/bin/c++ - skipped +#16 90.68 -- Detecting CXX compile features +#16 90.68 -- Detecting CXX compile features - done +#16 90.87 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#16 90.87 HIP VERSION: 5.4.22803-474e8620 +#16 90.87 +#16 90.87 ***** ROCm version from /opt/rocm/.info/version-dev **** +#16 90.87 +#16 90.87 ROCM_VERSION_DEV: 5.4.2 +#16 90.87 ROCM_VERSION_DEV_MAJOR: 5 +#16 90.87 ROCM_VERSION_DEV_MINOR: 4 +#16 90.87 ROCM_VERSION_DEV_PATCH: 2 +#16 90.87 +#16 90.87 ***** Library versions from dpkg ***** +#16 90.87 +#16 90.87 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#16 90.87 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#16 90.88 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#16 90.89 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#16 90.89 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#16 90.91 +#16 90.91 ***** Library versions from cmake find_package ***** +#16 90.91 +#16 90.92 -- Looking for pthread.h +#16 90.96 -- Looking for pthread.h - found +#16 90.96 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +#16 91.00 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +#16 91.01 -- Found Threads: TRUE +#16 91.01 -- hip::amdhip64 is SHARED_LIBRARY +#16 91.01 hip VERSION: 5.4.22505 +#16 91.01 hsa-runtime64 VERSION: 1.7.50402 +#16 91.01 amd_comgr VERSION: 2.4.0 +#16 91.01 CMake Error at cmake/LoadHIP.cmake:138 (find_package): +#16 91.01 By not providing "Findrocrand.cmake" in CMAKE_MODULE_PATH this project has +#16 91.01 asked CMake to find a package configuration file provided by "rocrand", but +#16 91.01 CMake did not find one. +#16 91.01 +#16 91.01 Could not find a package configuration file provided by "rocrand" with any +#16 91.01 of the following names: +#16 91.01 +#16 91.01 rocrandConfig.cmake +#16 91.01 rocrand-config.cmake +#16 91.01 +#16 91.01 Add the installation prefix of "rocrand" to CMAKE_PREFIX_PATH or set +#16 91.01 "rocrand_DIR" to a directory containing one of the above files. If +#16 91.01 "rocrand" provides a separate development package or SDK, be sure it has +#16 91.01 been installed. +#16 91.01 Call Stack (most recent call first): +#16 91.01 cmake/LoadHIP.cmake:197 (find_package_and_print_version) +#16 91.01 CMakeLists.txt:75 (include) +#16 91.01 +#16 91.01 +#16 91.01 -- Configuring incomplete, errors occurred! +#16 91.01 See also "/audio/build/temp.linux-x86_64-cpython-310/CMakeFiles/CMakeOutput.log". +#16 91.02 Traceback (most recent call last): +#16 91.02 File "/audio/setup.py", line 184, in +#16 91.02 _main() +#16 91.02 File "/audio/setup.py", line 147, in _main +#16 91.02 setup( +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/__init__.py", line 115, in setup +#16 91.02 return distutils.core.setup(**attrs) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/core.py", line 186, in setup +#16 91.02 return run_commands(dist) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/core.py", line 202, in run_commands +#16 91.02 dist.run_commands() +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1002, in run_commands +#16 91.02 self.run_command(cmd) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/dist.py", line 1102, in run_command +#16 91.02 super().run_command(command) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1021, in run_command +#16 91.02 cmd_obj.run() +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/command/bdist_wheel.py", line 370, in run +#16 91.02 self.run_command("build") +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py", line 357, in run_command +#16 91.02 self.distribution.run_command(command) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/dist.py", line 1102, in run_command +#16 91.02 super().run_command(command) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1021, in run_command +#16 91.02 cmd_obj.run() +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build.py", line 135, in run +#16 91.02 self.run_command(cmd_name) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py", line 357, in run_command +#16 91.02 self.distribution.run_command(command) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/dist.py", line 1102, in run_command +#16 91.02 super().run_command(command) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1021, in run_command +#16 91.02 cmd_obj.run() +#16 91.02 File "/audio/tools/setup_helpers/extension.py", line 86, in run +#16 91.02 super().run() +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/command/build_ext.py", line 96, in run +#16 91.02 _build_ext.run(self) +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 368, in run +#16 91.02 self.build_extensions() +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 484, in build_extensions +#16 91.02 self._build_extensions_serial() +#16 91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 510, in _build_extensions_serial +#16 91.02 self.build_extension(ext) +#16 91.02 File "/audio/tools/setup_helpers/extension.py", line 167, in build_extension +#16 91.02 subprocess.check_call(["cmake", str(_ROOT_DIR)] + cmake_args, cwd=self.build_temp) +#16 91.02 File "/usr/lib/python3.10/subprocess.py", line 369, in check_call +#16 91.02 raise CalledProcessError(retcode, cmd) +#16 91.02 subprocess.CalledProcessError: Command '['cmake', '/audio', '-DCMAKE_BUILD_TYPE=Release', '-DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages/torch/share/cmake', '-DCMAKE_INSTALL_PREFIX=/audio/build/lib.linux-x86_64-cpython-310/torchaudio/', '-DCMAKE_VERBOSE_MAKEFILE=ON', '-DPython_INCLUDE_DIR=/usr/include/python3.10', '-DBUILD_SOX:BOOL=ON', '-DBUILD_KALDI:BOOL=ON', '-DBUILD_RIR:BOOL=ON', '-DBUILD_RNNT:BOOL=ON', '-DBUILD_CTC_DECODER:BOOL=ON', '-DBUILD_TORCHAUDIO_PYTHON_EXTENSION:BOOL=ON', '-DUSE_ROCM:BOOL=ON', '-DUSE_CUDA:BOOL=OFF', '-DUSE_OPENMP:BOOL=ON', '-DUSE_FFMPEG:BOOL=OFF', '-GNinja']' returned non-zero exit status 1. +#16 ERROR: process "/bin/sh -c echo \"BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}\" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 1 +------ + > [13/18] RUN echo "BUILDING Torchaudio v2.0.2" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/*: +91.02 self.build_extensions() +91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 484, in build_extensions +91.02 self._build_extensions_serial() +91.02 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 510, in _build_extensions_serial +91.02 self.build_extension(ext) +91.02 File "/audio/tools/setup_helpers/extension.py", line 167, in build_extension +91.02 subprocess.check_call(["cmake", str(_ROOT_DIR)] + cmake_args, cwd=self.build_temp) +91.02 File "/usr/lib/python3.10/subprocess.py", line 369, in check_call +91.02 raise CalledProcessError(retcode, cmd) +91.02 subprocess.CalledProcessError: Command '['cmake', '/audio', '-DCMAKE_BUILD_TYPE=Release', '-DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages/torch/share/cmake', '-DCMAKE_INSTALL_PREFIX=/audio/build/lib.linux-x86_64-cpython-310/torchaudio/', '-DCMAKE_VERBOSE_MAKEFILE=ON', '-DPython_INCLUDE_DIR=/usr/include/python3.10', '-DBUILD_SOX:BOOL=ON', '-DBUILD_KALDI:BOOL=ON', '-DBUILD_RIR:BOOL=ON', '-DBUILD_RNNT:BOOL=ON', '-DBUILD_CTC_DECODER:BOOL=ON', '-DBUILD_TORCHAUDIO_PYTHON_EXTENSION:BOOL=ON', '-DUSE_ROCM:BOOL=ON', '-DUSE_CUDA:BOOL=OFF', '-DUSE_OPENMP:BOOL=ON', '-DUSE_FFMPEG:BOOL=OFF', '-GNinja']' returned non-zero exit status 1. +------ +Dockerfile:106 +-------------------- + 105 | WORKDIR /audio + 106 | >>> RUN echo "BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}" && \ + 107 | >>> apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && \ + 108 | >>> python3 setup.py bdist_wheel && \ + 109 | >>> python3 -m pip install --break-system-packages dist/torchaudio*.whl && \ + 110 | >>> ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && \ + 111 | >>> apt-get clean && rm -rf /var/lib/apt/lists/* + 112 | +-------------------- +ERROR: failed to solve: process "/bin/sh -c echo \"BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}\" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 1 diff --git a/rocm_5.4/logs/build_rocm542_v3.log b/rocm_5.4/logs/build_rocm542_v3.log new file mode 100644 index 000000000..2bded00f1 --- /dev/null +++ b/rocm_5.4/logs/build_rocm542_v3.log @@ -0,0 +1,21080 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 6.35kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/18] FROM docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#4 DONE 0.0s + +#5 [ 2/18] RUN echo "MAX_JOBS=14" >> /etc/environment && echo "HSA_OVERRIDE_GFX_VERSION=8.0.3" >> /etc/environment && echo "PYTORCH_ROCM_ARCH=gfx803" >> /etc/environment && echo "ROCM_ARCH=gfx803" >> /etc/environment && echo "TORCH_BLAS_PREFER_HIPBLASLT=0" >> /etc/environment && echo "ROC_ENABLE_PRE_VEGA=1" >> /etc/environment && echo "PIP_ROOT_USER_ACTION=ignore" >> /etc/environment && echo "CMAKE_POLICY_VERSION_MINIMUM=3.18" >> /etc/environment && true +#5 CACHED + +#6 [ 3/18] RUN apt-get update -y && apt-get install -y --no-install-recommends git wget curl ffmpeg python3.10 python3-pip python3.10-dev python3.10-venv cmake ninja-build libopenblas-dev libomp-dev pkg-config rocm-dev && python3 -m pip install --upgrade pip wheel setuptools && python3 -m pip install "cmake==3.20.2" && apt-get clean && rm -rf /var/lib/apt/lists/* && true +#6 0.463 Get:1 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] +#6 0.465 Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] +#6 0.657 Get:3 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy InRelease [5415 B] +#6 0.720 Get:4 https://repo.radeon.com/rocm/apt/5.4.2 jammy InRelease [2603 B] +#6 0.822 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] +#6 0.837 Get:6 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy/main amd64 Packages [9601 B] +#6 0.906 Get:7 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [47.7 kB] +#6 0.909 Get:8 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] +#6 0.988 Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2901 kB] +#6 1.019 Get:10 https://repo.radeon.com/rocm/apt/5.4.2 jammy/main amd64 Packages [31.8 kB] +#6 1.076 Get:11 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB] +#6 1.589 Get:12 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1245 kB] +#6 1.766 Get:13 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [4282 kB] +#6 3.455 Get:14 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB] +#6 3.469 Get:15 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB] +#6 3.622 Get:16 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB] +#6 3.644 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [4517 kB] +#6 4.029 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1546 kB] +#6 4.160 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] +#6 4.436 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [55.7 kB] +#6 4.440 Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.2 kB] +#6 4.447 Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB] +#6 4.552 Fetched 38.4 MB in 4s (8961 kB/s) +#6 4.552 Reading package lists... +#6 5.255 W: https://repo.radeon.com/amdgpu/5.4.2/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#6 5.255 W: https://repo.radeon.com/rocm/apt/5.4.2/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#6 5.286 Reading package lists... +#6 5.963 Building dependency tree... +#6 6.113 Reading state information... +#6 6.251 rocm-dev is already the newest version (5.4.2.50402-104~22.04). +#6 6.251 The following additional packages will be installed: +#6 6.251 cmake-data dh-elpa-helper emacsen-common fontconfig fontconfig-config +#6 6.251 fonts-dejavu-core gcc-12-base git-man libaom3 libapparmor1 libarchive13 +#6 6.251 libasound2 libasound2-data libass9 libasyncns0 libatomic1 libavc1394-0 +#6 6.251 libavcodec58 libavdevice58 libavfilter7 libavformat58 libavutil56 libblas3 +#6 6.251 libbluray2 libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcc1-0 +#6 6.251 libcdio-cdda2 libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-1.0 +#6 6.251 libcurl3-gnutls libcurl4 libdatrie1 libdav1d5 libdbus-1-3 libdc1394-25 +#6 6.251 libdecor-0-0 libdeflate0 liberror-perl libexpat1 libexpat1-dev libflac8 +#6 6.251 libflite1 libfontconfig1 libfreetype6 libfribidi0 libgbm1 libgcc-s1 +#6 6.251 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 libgme0 libgomp1 +#6 6.251 libgraphite2-3 libgsm1 libharfbuzz0b libiec61883-0 libitm1 libjack-jackd2-0 +#6 6.251 libjbig0 libjpeg-turbo8 libjpeg8 libjsoncpp25 liblapack3 liblilv-0-0 +#6 6.251 libllvm14 liblsan0 libmfx1 libmp3lame0 libmpg123-0 libmysofa1 libnorm1 +#6 6.251 libogg0 libomp-14-dev libomp5-14 libopenal-data libopenal1 +#6 6.251 libopenblas-pthread-dev libopenblas0 libopenblas0-pthread libopenjp2-7 +#6 6.251 libopenmpt0 libopus0 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 +#6 6.251 libpgm-5.3-0 libpixman-1-0 libpng16-16 libpocketsphinx3 libpostproc55 +#6 6.251 libpulse0 libpython3.10 libpython3.10-dev libpython3.10-minimal +#6 6.251 libpython3.10-stdlib libquadmath0 librabbitmq4 libraw1394-11 librhash0 +#6 6.251 librsvg2-2 librubberband2 libsamplerate0 libsdl2-2.0-0 libserd-0-0 libshine3 +#6 6.251 libslang2 libsnappy1v5 libsndfile1 libsndio7.0 libsodium23 libsord-0-0 +#6 6.251 libsoxr0 libspeex1 libsphinxbase3 libsratom-0-0 libsrt1.4-gnutls +#6 6.251 libssh-gcrypt-4 libstdc++6 libswresample3 libswscale5 libthai-data libthai0 +#6 6.251 libtheora0 libtiff5 libtwolame0 libubsan1 libudfread0 libusb-1.0-0 libuv1 +#6 6.251 libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 libvorbis0a +#6 6.251 libvorbisenc2 libvorbisfile3 libvpx7 libwayland-client0 libwayland-cursor0 +#6 6.251 libwayland-egl1 libwayland-server0 libwebp7 libwebpmux3 libx264-163 +#6 6.251 libx265-199 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcursor1 libxi6 +#6 6.251 libxinerama1 libxkbcommon0 libxrandr2 libxrender1 libxss1 libxv1 +#6 6.252 libxvidcore4 libzimg2 libzmq5 libzvbi-common libzvbi0 ocl-icd-libopencl1 +#6 6.252 python3-pip-whl python3-setuptools-whl python3.10-minimal shared-mime-info +#6 6.252 ucf x11-common xkb-data +#6 6.253 Suggested packages: +#6 6.253 cmake-doc cmake-format ffmpeg-doc gettext-base git-daemon-run +#6 6.253 | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs +#6 6.253 git-mediawiki git-svn lrzip libasound2-plugins alsa-utils libcuda1 +#6 6.253 libnvcuvid1 libnvidia-encode1 libbluray-bdj jackd2 libomp-14-doc +#6 6.253 libportaudio2 opus-tools pulseaudio libraw1394-doc librsvg2-bin xdg-utils +#6 6.253 serdi sndiod sordi speex opencl-icd python3.10-doc binfmt-support +#6 6.253 Recommended packages: +#6 6.253 less ssh-client alsa-ucm-conf alsa-topology-conf libaacs0 dbus +#6 6.253 libdecor-0-plugin-1-cairo | libdecor-0-plugin-1 libgdk-pixbuf2.0-bin +#6 6.253 pocketsphinx-en-us librsvg2-common va-driver-all | va-driver +#6 6.253 vdpau-driver-all | vdpau-driver python3-dev +#6 6.588 The following NEW packages will be installed: +#6 6.588 cmake cmake-data dh-elpa-helper emacsen-common ffmpeg fontconfig +#6 6.588 fontconfig-config fonts-dejavu-core git git-man libaom3 libapparmor1 +#6 6.588 libarchive13 libasound2 libasound2-data libass9 libasyncns0 libavc1394-0 +#6 6.588 libavcodec58 libavdevice58 libavfilter7 libavformat58 libavutil56 libblas3 +#6 6.588 libbluray2 libbs2b0 libcaca0 libcairo-gobject2 libcairo2 libcdio-cdda2 +#6 6.588 libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-1.0 libcurl3-gnutls +#6 6.588 libdatrie1 libdav1d5 libdbus-1-3 libdc1394-25 libdecor-0-0 libdeflate0 +#6 6.588 liberror-perl libexpat1-dev libflac8 libflite1 libfontconfig1 libfreetype6 +#6 6.588 libfribidi0 libgbm1 libgdk-pixbuf-2.0-0 libgdk-pixbuf2.0-common libgfortran5 +#6 6.588 libgme0 libgraphite2-3 libgsm1 libharfbuzz0b libiec61883-0 libjack-jackd2-0 +#6 6.589 libjbig0 libjpeg-turbo8 libjpeg8 libjsoncpp25 liblapack3 liblilv-0-0 +#6 6.589 libllvm14 libmfx1 libmp3lame0 libmpg123-0 libmysofa1 libnorm1 libogg0 +#6 6.589 libomp-14-dev libomp-dev libomp5-14 libopenal-data libopenal1 +#6 6.589 libopenblas-dev libopenblas-pthread-dev libopenblas0 libopenblas0-pthread +#6 6.589 libopenjp2-7 libopenmpt0 libopus0 libpango-1.0-0 libpangocairo-1.0-0 +#6 6.589 libpangoft2-1.0-0 libpgm-5.3-0 libpixman-1-0 libpng16-16 libpocketsphinx3 +#6 6.589 libpostproc55 libpulse0 libpython3.10-dev librabbitmq4 libraw1394-11 +#6 6.589 librhash0 librsvg2-2 librubberband2 libsamplerate0 libsdl2-2.0-0 libserd-0-0 +#6 6.589 libshine3 libslang2 libsnappy1v5 libsndfile1 libsndio7.0 libsodium23 +#6 6.589 libsord-0-0 libsoxr0 libspeex1 libsphinxbase3 libsratom-0-0 libsrt1.4-gnutls +#6 6.589 libssh-gcrypt-4 libswresample3 libswscale5 libthai-data libthai0 libtheora0 +#6 6.589 libtiff5 libtwolame0 libudfread0 libusb-1.0-0 libuv1 libva-drm2 libva-x11-2 +#6 6.589 libva2 libvdpau1 libvidstab1.1 libvorbis0a libvorbisenc2 libvorbisfile3 +#6 6.589 libvpx7 libwayland-client0 libwayland-cursor0 libwayland-egl1 +#6 6.589 libwayland-server0 libwebp7 libwebpmux3 libx264-163 libx265-199 +#6 6.589 libxcb-randr0 libxcb-render0 libxcb-shape0 libxcursor1 libxi6 libxinerama1 +#6 6.589 libxkbcommon0 libxrandr2 libxrender1 libxss1 libxv1 libxvidcore4 libzimg2 +#6 6.590 libzmq5 libzvbi-common libzvbi0 ninja-build ocl-icd-libopencl1 pkg-config +#6 6.590 python3-pip-whl python3-setuptools-whl python3.10-dev python3.10-venv +#6 6.590 shared-mime-info ucf wget x11-common xkb-data +#6 6.591 The following packages will be upgraded: +#6 6.591 curl gcc-12-base libatomic1 libcc1-0 libcurl4 libexpat1 libgcc-s1 libgomp1 +#6 6.591 libitm1 liblsan0 libpython3.10 libpython3.10-minimal libpython3.10-stdlib +#6 6.592 libquadmath0 libstdc++6 libubsan1 python3-pip python3.10 python3.10-minimal +#6 6.842 19 upgraded, 169 newly installed, 0 to remove and 124 not upgraded. +#6 6.842 Need to get 134 MB of archives. +#6 6.842 After this operation, 505 MB of additional disk space will be used. +#6 6.842 Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1 amd64 2.4.7-1ubuntu0.6 [92.1 kB] +#6 7.166 Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10 amd64 3.10.12-1~22.04.9 [1949 kB] +#6 7.627 Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10 amd64 3.10.12-1~22.04.9 [508 kB] +#6 7.700 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-stdlib amd64 3.10.12-1~22.04.9 [1850 kB] +#6 8.218 Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-minimal amd64 3.10.12-1~22.04.9 [2263 kB] +#6 8.335 Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-minimal amd64 3.10.12-1~22.04.9 [815 kB] +#6 8.429 Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libatomic1 amd64 12.3.0-1ubuntu1~22.04 [10.4 kB] +#6 8.457 Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libubsan1 amd64 12.3.0-1ubuntu1~22.04 [976 kB] +#6 8.555 Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 gcc-12-base amd64 12.3.0-1ubuntu1~22.04 [20.1 kB] +#6 8.557 Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libstdc++6 amd64 12.3.0-1ubuntu1~22.04 [699 kB] +#6 8.637 Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libquadmath0 amd64 12.3.0-1ubuntu1~22.04 [154 kB] +#6 8.655 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 liblsan0 amd64 12.3.0-1ubuntu1~22.04 [1069 kB] +#6 8.778 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libitm1 amd64 12.3.0-1ubuntu1~22.04 [30.2 kB] +#6 8.781 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgomp1 amd64 12.3.0-1ubuntu1~22.04 [126 kB] +#6 8.796 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcc1-0 amd64 12.3.0-1ubuntu1~22.04 [48.3 kB] +#6 8.801 Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgcc-s1 amd64 12.3.0-1ubuntu1~22.04 [53.9 kB] +#6 8.808 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libapparmor1 amd64 3.0.4-2ubuntu2.4 [39.7 kB] +#6 8.812 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libdbus-1-3 amd64 1.12.20-2ubuntu4.1 [189 kB] +#6 8.834 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfribidi0 amd64 1.0.8-2ubuntu3.1 [26.1 kB] +#6 8.837 Get:20 http://archive.ubuntu.com/ubuntu jammy/main amd64 libslang2 amd64 2.3.2-5build4 [468 kB] +#6 8.891 Get:21 http://archive.ubuntu.com/ubuntu jammy/main amd64 shared-mime-info amd64 2.1-2 [454 kB] +#6 8.943 Get:22 http://archive.ubuntu.com/ubuntu jammy/main amd64 ucf all 3.0043 [56.1 kB] +#6 8.949 Get:23 http://archive.ubuntu.com/ubuntu jammy/main amd64 xkb-data all 2.33-1 [394 kB] +#6 8.989 Get:24 http://archive.ubuntu.com/ubuntu jammy/main amd64 libpng16-16 amd64 1.6.37-3build5 [191 kB] +#6 9.008 Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libusb-1.0-0 amd64 2:1.0.25-1ubuntu2 [52.7 kB] +#6 9.013 Get:26 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libuv1 amd64 1.43.0-1ubuntu0.1 [92.7 kB] +#6 9.023 Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 wget amd64 1.21.2-2ubuntu1.1 [339 kB] +#6 9.057 Get:28 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libarchive13 amd64 3.6.0-1ubuntu1.4 [368 kB] +#6 9.098 Get:29 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 curl amd64 7.81.0-1ubuntu1.20 [194 kB] +#6 9.118 Get:30 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl4 amd64 7.81.0-1ubuntu1.20 [289 kB] +#6 9.147 Get:31 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjsoncpp25 amd64 1.9.5-3 [80.0 kB] +#6 9.155 Get:32 http://archive.ubuntu.com/ubuntu jammy/main amd64 librhash0 amd64 1.4.2-1ubuntu1 [125 kB] +#6 9.168 Get:33 http://archive.ubuntu.com/ubuntu jammy/main amd64 dh-elpa-helper all 2.0.9ubuntu1 [7610 B] +#6 9.169 Get:34 http://archive.ubuntu.com/ubuntu jammy/main amd64 emacsen-common all 3.0.4 [14.9 kB] +#6 9.170 Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 cmake-data all 3.22.1-1ubuntu1.22.04.2 [1913 kB] +#6 9.365 Get:36 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 cmake amd64 3.22.1-1ubuntu1.22.04.2 [5010 kB] +#6 9.840 Get:37 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libaom3 amd64 3.3.0-1ubuntu0.1 [1748 kB] +#6 9.996 Get:38 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva2 amd64 2.14.0-1 [65.0 kB] +#6 10.00 Get:39 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmfx1 amd64 22.3.0-1 [3105 kB] +#6 10.28 Get:40 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-drm2 amd64 2.14.0-1 [7502 B] +#6 10.28 Get:41 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libva-x11-2 amd64 2.14.0-1 [12.6 kB] +#6 10.28 Get:42 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvdpau1 amd64 1.4-3build2 [27.0 kB] +#6 10.28 Get:43 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ocl-icd-libopencl1 amd64 2.2.14-3 [39.1 kB] +#6 10.29 Get:44 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavutil56 amd64 7:4.4.2-0ubuntu0.22.04.1 [290 kB] +#6 10.31 Get:45 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libfreetype6 amd64 2.11.1+dfsg-1ubuntu0.3 [388 kB] +#6 10.35 Get:46 http://archive.ubuntu.com/ubuntu jammy/main amd64 fonts-dejavu-core all 2.37-2build1 [1041 kB] +#6 10.44 Get:47 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig-config all 2.13.1-4.2ubuntu5 [29.1 kB] +#6 10.44 Get:48 http://archive.ubuntu.com/ubuntu jammy/main amd64 libfontconfig1 amd64 2.13.1-4.2ubuntu5 [131 kB] +#6 10.45 Get:49 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpixman-1-0 amd64 0.40.0-1ubuntu0.22.04.1 [264 kB] +#6 10.48 Get:50 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-render0 amd64 1.14-3ubuntu3 [16.4 kB] +#6 10.48 Get:51 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrender1 amd64 1:0.9.10-1build4 [19.7 kB] +#6 10.48 Get:52 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo2 amd64 1.16.0-5ubuntu2 [628 kB] +#6 10.53 Get:53 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libcodec2-1.0 amd64 1.0.1-3 [8435 kB] +#6 11.27 Get:54 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdav1d5 amd64 0.9.2-1 [463 kB] +#6 11.30 Get:55 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgsm1 amd64 1.0.19-1 [27.7 kB] +#6 11.31 Get:56 http://archive.ubuntu.com/ubuntu jammy/main amd64 libmp3lame0 amd64 3.100-3build2 [141 kB] +#6 11.32 Get:57 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libopenjp2-7 amd64 2.4.0-6ubuntu0.3 [158 kB] +#6 11.33 Get:58 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus0 amd64 1.3.1-0.1build2 [203 kB] +#6 11.35 Get:59 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcairo-gobject2 amd64 1.16.0-5ubuntu2 [19.4 kB] +#6 11.35 Get:60 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf2.0-common all 2.42.8+dfsg-1ubuntu0.3 [5630 B] +#6 11.35 Get:61 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg-turbo8 amd64 2.1.2-0ubuntu1 [134 kB] +#6 11.36 Get:62 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjpeg8 amd64 8c-2ubuntu10 [2264 B] +#6 11.36 Get:63 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdeflate0 amd64 1.10-2 [70.9 kB] +#6 11.44 Get:64 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libjbig0 amd64 2.1-3.1ubuntu0.22.04.1 [29.2 kB] +#6 11.44 Get:65 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebp7 amd64 1.2.2-2ubuntu0.22.04.2 [206 kB] +#6 11.46 Get:66 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libtiff5 amd64 4.3.0-6ubuntu0.10 [185 kB] +#6 11.47 Get:67 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgdk-pixbuf-2.0-0 amd64 2.42.8+dfsg-1ubuntu0.3 [148 kB] +#6 11.48 Get:68 http://archive.ubuntu.com/ubuntu jammy/main amd64 fontconfig amd64 2.13.1-4.2ubuntu5 [177 kB] +#6 11.50 Get:69 http://archive.ubuntu.com/ubuntu jammy/main amd64 libgraphite2-3 amd64 1.3.14-1build2 [71.3 kB] +#6 11.50 Get:70 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz0b amd64 2.7.4-1ubuntu3.2 [353 kB] +#6 11.53 Get:71 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai-data all 0.1.29-1build1 [162 kB] +#6 11.55 Get:72 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdatrie1 amd64 0.2.13-2 [19.9 kB] +#6 11.55 Get:73 http://archive.ubuntu.com/ubuntu jammy/main amd64 libthai0 amd64 0.1.29-1build1 [19.2 kB] +#6 11.62 Get:74 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpango-1.0-0 amd64 1.50.6+ds-2ubuntu1 [230 kB] +#6 11.63 Get:75 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangoft2-1.0-0 amd64 1.50.6+ds-2ubuntu1 [54.0 kB] +#6 11.64 Get:76 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpangocairo-1.0-0 amd64 1.50.6+ds-2ubuntu1 [39.8 kB] +#6 11.64 Get:77 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 librsvg2-2 amd64 2.52.5+dfsg-3ubuntu0.2 [2974 kB] +#6 11.90 Get:78 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libshine3 amd64 3.1.1-2 [23.2 kB] +#6 11.90 Get:79 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsnappy1v5 amd64 1.1.8-1build3 [17.5 kB] +#6 11.90 Get:80 http://archive.ubuntu.com/ubuntu jammy/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu3 [57.9 kB] +#6 11.90 Get:81 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsoxr0 amd64 0.1.3-4build2 [79.8 kB] +#6 11.91 Get:82 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswresample3 amd64 7:4.4.2-0ubuntu0.22.04.1 [62.2 kB] +#6 11.92 Get:83 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg0 amd64 1.3.5-0ubuntu3 [22.9 kB] +#6 11.92 Get:84 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu4 [209 kB] +#6 11.94 Get:85 http://archive.ubuntu.com/ubuntu jammy/main amd64 libtwolame0 amd64 0.4.0-2build2 [52.5 kB] +#6 11.94 Get:86 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis0a amd64 1.3.7-1build2 [99.2 kB] +#6 11.98 Get:87 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisenc2 amd64 1.3.7-1build2 [82.6 kB] +#6 12.06 Get:88 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libvpx7 amd64 1.11.0-2ubuntu2.3 [1078 kB] +#6 12.15 Get:89 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwebpmux3 amd64 1.2.2-2ubuntu0.22.04.2 [20.5 kB] +#6 12.15 Get:90 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx264-163 amd64 2:0.163.3060+git5db6aa6-2build1 [591 kB] +#6 12.20 Get:91 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libx265-199 amd64 3.5-2 [1170 kB] +#6 12.30 Get:92 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libxvidcore4 amd64 2:1.3.7-1 [201 kB] +#6 12.32 Get:93 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi-common all 0.2.35-19 [35.5 kB] +#6 12.32 Get:94 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi0 amd64 0.2.35-19 [262 kB] +#6 12.34 Get:95 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavcodec58 amd64 7:4.4.2-0ubuntu0.22.04.1 [5567 kB] +#6 12.82 Get:96 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2-data all 1.2.6.1-1ubuntu1 [19.1 kB] +#6 12.83 Get:97 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasound2 amd64 1.2.6.1-1ubuntu1 [390 kB] +#6 12.85 Get:98 http://archive.ubuntu.com/ubuntu jammy/main amd64 libraw1394-11 amd64 2.1.2-2build2 [27.0 kB] +#6 12.85 Get:99 http://archive.ubuntu.com/ubuntu jammy/main amd64 libavc1394-0 amd64 0.5.4-5build2 [17.0 kB] +#6 12.86 Get:100 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libass9 amd64 1:0.15.2-1 [97.5 kB] +#6 12.86 Get:101 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libudfread0 amd64 1.1.2-1 [16.2 kB] +#6 20.16 Get:102 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbluray2 amd64 1:1.3.1-1 [159 kB] +#6 20.85 Get:103 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libchromaprint1 amd64 1.5.1-2 [28.4 kB] +#6 20.87 Get:104 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libgme0 amd64 0.6.3-2 [127 kB] +#6 20.95 Get:105 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libmpg123-0 amd64 1.29.3-1ubuntu0.1 [172 kB] +#6 21.09 Get:106 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisfile3 amd64 1.3.7-1build2 [17.1 kB] +#6 21.10 Get:107 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenmpt0 amd64 0.6.1-1 [592 kB] +#6 21.28 Get:108 http://archive.ubuntu.com/ubuntu jammy/main amd64 librabbitmq4 amd64 0.10.0-1ubuntu2 [39.3 kB] +#6 21.29 Get:109 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsrt1.4-gnutls amd64 1.4.4-4 [309 kB] +#6 21.34 Get:110 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libssh-gcrypt-4 amd64 0.9.6-2ubuntu0.22.04.3 [223 kB] +#6 21.37 Get:111 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libnorm1 amd64 1.5.9+dfsg-2 [221 kB] +#6 21.40 Get:112 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB] +#6 21.42 Get:113 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsodium23 amd64 1.0.18-1build2 [164 kB] +#6 21.43 Get:114 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzmq5 amd64 4.3.4-2 [256 kB] +#6 21.46 Get:115 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavformat58 amd64 7:4.4.2-0ubuntu0.22.04.1 [1103 kB] +#6 21.57 Get:116 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libbs2b0 amd64 3.1.0+dfsg-2.2build1 [10.2 kB] +#6 21.57 Get:117 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libflite1 amd64 2.2-3 [13.7 MB] +#6 22.91 Get:118 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libserd-0-0 amd64 0.30.10-2 [40.8 kB] +#6 22.91 Get:119 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsord-0-0 amd64 0.16.8-2 [21.2 kB] +#6 22.91 Get:120 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsratom-0-0 amd64 0.6.8-1 [17.0 kB] +#6 22.91 Get:121 http://archive.ubuntu.com/ubuntu jammy/universe amd64 liblilv-0-0 amd64 0.24.12-2 [42.8 kB] +#6 22.91 Get:122 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmysofa1 amd64 1.2.1~dfsg0-1 [1157 kB] +#6 23.01 Get:123 http://archive.ubuntu.com/ubuntu jammy/main amd64 libblas3 amd64 3.10.0-2ubuntu1 [228 kB] +#6 23.03 Get:124 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgfortran5 amd64 12.3.0-1ubuntu1~22.04 [879 kB] +#6 23.11 Get:125 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas0-pthread amd64 0.3.20+ds-1 [6803 kB] +#6 23.69 Get:126 http://archive.ubuntu.com/ubuntu jammy/main amd64 liblapack3 amd64 3.10.0-2ubuntu1 [2504 kB] +#6 23.90 Get:127 http://archive.ubuntu.com/ubuntu jammy/main amd64 libasyncns0 amd64 0.8-6build2 [12.8 kB] +#6 23.90 Get:128 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac8 amd64 1.3.3-2ubuntu0.2 [111 kB] +#6 23.91 Get:129 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1 amd64 1.0.31-2ubuntu0.2 [196 kB] +#6 23.92 Get:130 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpulse0 amd64 1:15.99.1+dfsg1-1ubuntu2.2 [298 kB] +#6 23.95 Get:131 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsphinxbase3 amd64 0.8+5prealpha+1-13build1 [126 kB] +#6 23.96 Get:132 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libpocketsphinx3 amd64 0.8.0+real5prealpha+1-14ubuntu1 [132 kB] +#6 23.97 Get:133 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libpostproc55 amd64 7:4.4.2-0ubuntu0.22.04.1 [60.1 kB] +#6 23.98 Get:134 http://archive.ubuntu.com/ubuntu jammy/main amd64 libsamplerate0 amd64 0.2.2-1build1 [1359 kB] +#6 24.09 Get:135 http://archive.ubuntu.com/ubuntu jammy/universe amd64 librubberband2 amd64 2.0.0-2 [90.0 kB] +#6 24.10 Get:136 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswscale5 amd64 7:4.4.2-0ubuntu0.22.04.1 [180 kB] +#6 24.19 Get:137 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libvidstab1.1 amd64 1.1.0-2 [35.0 kB] +#6 24.19 Get:138 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libzimg2 amd64 3.0.3+ds1-1 [241 kB] +#6 24.21 Get:139 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavfilter7 amd64 7:4.4.2-0ubuntu0.22.04.1 [1496 kB] +#6 24.34 Get:140 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcaca0 amd64 0.99.beta19-2.2ubuntu4 [224 kB] +#6 24.36 Get:141 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcdio19 amd64 2.1.0-3ubuntu0.2 [63.6 kB] +#6 24.36 Get:142 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-cdda2 amd64 10.2+2.0.0-1build3 [16.7 kB] +#6 24.37 Get:143 http://archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-paranoia2 amd64 10.2+2.0.0-1build3 [15.9 kB] +#6 24.37 Get:144 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libdc1394-25 amd64 2.2.6-4 [88.8 kB] +#6 24.37 Get:145 http://archive.ubuntu.com/ubuntu jammy/main amd64 libiec61883-0 amd64 1.2.0-4build3 [25.9 kB] +#6 24.38 Get:146 http://archive.ubuntu.com/ubuntu jammy/main amd64 libjack-jackd2-0 amd64 1.9.20~dfsg-1 [293 kB] +#6 24.51 Get:147 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal-data all 1:1.19.1-2build3 [164 kB] +#6 24.52 Get:148 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libsndio7.0 amd64 1.8.1-1.1 [29.3 kB] +#6 24.53 Get:149 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal1 amd64 1:1.19.1-2build3 [535 kB] +#6 24.57 Get:150 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-client0 amd64 1.20.0-1ubuntu0.1 [25.9 kB] +#6 24.57 Get:151 http://archive.ubuntu.com/ubuntu jammy/main amd64 libdecor-0-0 amd64 0.1.0-3build1 [15.1 kB] +#6 24.57 Get:152 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-server0 amd64 1.20.0-1ubuntu0.1 [34.3 kB] +#6 24.65 Get:153 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-randr0 amd64 1.14-3ubuntu3 [18.3 kB] +#6 24.65 Get:154 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgbm1 amd64 23.2.1-1ubuntu3.1~22.04.3 [33.5 kB] +#6 24.66 Get:155 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-cursor0 amd64 1.20.0-1ubuntu0.1 [10.7 kB] +#6 24.66 Get:156 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libwayland-egl1 amd64 1.20.0-1ubuntu0.1 [5582 B] +#6 24.79 Get:157 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcursor1 amd64 1:1.2.0-2build4 [20.9 kB] +#6 24.80 Get:158 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxi6 amd64 2:1.8-1build1 [32.6 kB] +#6 24.80 Get:159 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxinerama1 amd64 2:1.1.4-3 [7382 B] +#6 24.80 Get:160 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxkbcommon0 amd64 1.4.0-1 [125 kB] +#6 24.81 Get:161 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxrandr2 amd64 2:1.5.2-1build1 [20.4 kB] +#6 24.81 Get:162 http://archive.ubuntu.com/ubuntu jammy/main amd64 x11-common all 1:7.7+23ubuntu2 [23.4 kB] +#6 24.94 Get:163 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxss1 amd64 1:1.2.3-1build2 [8476 B] +#6 24.94 Get:164 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsdl2-2.0-0 amd64 2.0.20+dfsg-2ubuntu1.22.04.1 [582 kB] +#6 24.99 Get:165 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shape0 amd64 1.14-3ubuntu3 [6158 B] +#6 24.99 Get:166 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxv1 amd64 2:1.0.11-1build2 [11.2 kB] +#6 25.08 Get:167 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavdevice58 amd64 7:4.4.2-0ubuntu0.22.04.1 [87.5 kB] +#6 25.09 Get:168 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 ffmpeg amd64 7:4.4.2-0ubuntu0.22.04.1 [1696 kB] +#6 25.23 Get:169 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libcurl3-gnutls amd64 7.81.0-1ubuntu1.20 [284 kB] +#6 25.25 Get:170 http://archive.ubuntu.com/ubuntu jammy/main amd64 liberror-perl all 0.17029-1 [26.5 kB] +#6 25.26 Get:171 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git-man all 1:2.34.1-1ubuntu1.12 [955 kB] +#6 25.34 Get:172 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 git amd64 1:2.34.1-1ubuntu1.12 [3165 kB] +#6 25.61 Get:173 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libexpat1-dev amd64 2.4.7-1ubuntu0.6 [148 kB] +#6 25.62 Get:174 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libllvm14 amd64 1:14.0.0-1ubuntu1.1 [24.0 MB] +#6 27.66 Get:175 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libomp5-14 amd64 1:14.0.0-1ubuntu1.1 [389 kB] +#6 27.69 Get:176 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libomp-14-dev amd64 1:14.0.0-1ubuntu1.1 [347 kB] +#6 27.72 Get:177 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas0 amd64 0.3.20+ds-1 [6098 B] +#6 27.72 Get:178 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas-pthread-dev amd64 0.3.20+ds-1 [4634 kB] +#6 28.11 Get:179 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopenblas-dev amd64 0.3.20+ds-1 [18.6 kB] +#6 28.11 Get:180 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpython3.10-dev amd64 3.10.12-1~22.04.9 [4763 kB] +#6 28.52 Get:181 http://archive.ubuntu.com/ubuntu jammy/universe amd64 ninja-build amd64 1.10.1-1 [111 kB] +#6 28.53 Get:182 http://archive.ubuntu.com/ubuntu jammy/main amd64 pkg-config amd64 0.29.2-1ubuntu3 [48.2 kB] +#6 28.53 Get:183 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-pip all 22.0.2+dfsg-1ubuntu0.5 [1306 kB] +#6 28.64 Get:184 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-pip-whl all 22.0.2+dfsg-1ubuntu0.5 [1680 kB] +#6 28.79 Get:185 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3-setuptools-whl all 59.6.0-1.2ubuntu0.22.04.2 [788 kB] +#6 28.85 Get:186 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3.10-dev amd64 3.10.12-1~22.04.9 [508 kB] +#6 28.90 Get:187 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 python3.10-venv amd64 3.10.12-1~22.04.9 [5722 B] +#6 28.90 Get:188 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libomp-dev amd64 1:14.0-55~exp2 [3074 B] +#6 29.02 debconf: delaying package configuration, since apt-utils is not installed +#6 29.05 Fetched 134 MB in 22s (6010 kB/s) +#6 29.09 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26227 files and directories currently installed.) +#6 29.10 Preparing to unpack .../0-libexpat1_2.4.7-1ubuntu0.6_amd64.deb ... +#6 29.14 Unpacking libexpat1:amd64 (2.4.7-1ubuntu0.6) over (2.4.7-1ubuntu0.2) ... +#6 29.23 Preparing to unpack .../1-libpython3.10_3.10.12-1~22.04.9_amd64.deb ... +#6 29.26 Unpacking libpython3.10:amd64 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 29.39 Preparing to unpack .../2-python3.10_3.10.12-1~22.04.9_amd64.deb ... +#6 29.46 Unpacking python3.10 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 29.55 Preparing to unpack .../3-libpython3.10-stdlib_3.10.12-1~22.04.9_amd64.deb ... +#6 29.61 Unpacking libpython3.10-stdlib:amd64 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 31.11 Preparing to unpack .../4-python3.10-minimal_3.10.12-1~22.04.9_amd64.deb ... +#6 31.14 Unpacking python3.10-minimal (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 31.29 Preparing to unpack .../5-libpython3.10-minimal_3.10.12-1~22.04.9_amd64.deb ... +#6 31.37 Unpacking libpython3.10-minimal:amd64 (3.10.12-1~22.04.9) over (3.10.6-1~22.04.2) ... +#6 32.67 Preparing to unpack .../6-libatomic1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 32.70 Unpacking libatomic1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 32.78 Preparing to unpack .../7-libubsan1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 32.80 Unpacking libubsan1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 32.89 Preparing to unpack .../8-gcc-12-base_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 32.91 Unpacking gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 32.99 Setting up gcc-12-base:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 33.07 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26230 files and directories currently installed.) +#6 33.08 Preparing to unpack .../libstdc++6_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.12 Unpacking libstdc++6:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.23 Setting up libstdc++6:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 33.30 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26230 files and directories currently installed.) +#6 33.32 Preparing to unpack .../0-libquadmath0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.34 Unpacking libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.42 Preparing to unpack .../1-liblsan0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.45 Unpacking liblsan0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.55 Preparing to unpack .../2-libitm1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.58 Unpacking libitm1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.65 Preparing to unpack .../3-libgomp1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.68 Unpacking libgomp1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.76 Preparing to unpack .../4-libcc1-0_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.78 Unpacking libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.86 Preparing to unpack .../5-libgcc-s1_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 33.88 Unpacking libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04) over (12.1.0-2ubuntu1~22.04) ... +#6 33.96 Setting up libgcc-s1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 34.04 Selecting previously unselected package libapparmor1:amd64. +#6 34.04 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 26230 files and directories currently installed.) +#6 34.05 Preparing to unpack .../000-libapparmor1_3.0.4-2ubuntu2.4_amd64.deb ... +#6 34.06 Unpacking libapparmor1:amd64 (3.0.4-2ubuntu2.4) ... +#6 34.13 Selecting previously unselected package libdbus-1-3:amd64. +#6 34.13 Preparing to unpack .../001-libdbus-1-3_1.12.20-2ubuntu4.1_amd64.deb ... +#6 34.14 Unpacking libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ... +#6 34.20 Selecting previously unselected package libfribidi0:amd64. +#6 34.20 Preparing to unpack .../002-libfribidi0_1.0.8-2ubuntu3.1_amd64.deb ... +#6 34.21 Unpacking libfribidi0:amd64 (1.0.8-2ubuntu3.1) ... +#6 34.27 Selecting previously unselected package libslang2:amd64. +#6 34.27 Preparing to unpack .../003-libslang2_2.3.2-5build4_amd64.deb ... +#6 34.28 Unpacking libslang2:amd64 (2.3.2-5build4) ... +#6 34.35 Selecting previously unselected package shared-mime-info. +#6 34.35 Preparing to unpack .../004-shared-mime-info_2.1-2_amd64.deb ... +#6 34.36 Unpacking shared-mime-info (2.1-2) ... +#6 34.45 Selecting previously unselected package ucf. +#6 34.45 Preparing to unpack .../005-ucf_3.0043_all.deb ... +#6 34.46 Moving old data out of the way +#6 34.46 Unpacking ucf (3.0043) ... +#6 34.51 Selecting previously unselected package xkb-data. +#6 34.51 Preparing to unpack .../006-xkb-data_2.33-1_all.deb ... +#6 34.52 Unpacking xkb-data (2.33-1) ... +#6 34.63 Selecting previously unselected package libpng16-16:amd64. +#6 34.63 Preparing to unpack .../007-libpng16-16_1.6.37-3build5_amd64.deb ... +#6 34.64 Unpacking libpng16-16:amd64 (1.6.37-3build5) ... +#6 34.71 Selecting previously unselected package libusb-1.0-0:amd64. +#6 34.71 Preparing to unpack .../008-libusb-1.0-0_2%3a1.0.25-1ubuntu2_amd64.deb ... +#6 34.72 Unpacking libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ... +#6 34.78 Selecting previously unselected package libuv1:amd64. +#6 34.78 Preparing to unpack .../009-libuv1_1.43.0-1ubuntu0.1_amd64.deb ... +#6 34.79 Unpacking libuv1:amd64 (1.43.0-1ubuntu0.1) ... +#6 34.85 Selecting previously unselected package wget. +#6 34.85 Preparing to unpack .../010-wget_1.21.2-2ubuntu1.1_amd64.deb ... +#6 34.86 Unpacking wget (1.21.2-2ubuntu1.1) ... +#6 34.92 Selecting previously unselected package libarchive13:amd64. +#6 34.92 Preparing to unpack .../011-libarchive13_3.6.0-1ubuntu1.4_amd64.deb ... +#6 34.93 Unpacking libarchive13:amd64 (3.6.0-1ubuntu1.4) ... +#6 34.99 Preparing to unpack .../012-curl_7.81.0-1ubuntu1.20_amd64.deb ... +#6 35.01 Unpacking curl (7.81.0-1ubuntu1.20) over (7.81.0-1ubuntu1.7) ... +#6 35.10 Preparing to unpack .../013-libcurl4_7.81.0-1ubuntu1.20_amd64.deb ... +#6 35.12 Unpacking libcurl4:amd64 (7.81.0-1ubuntu1.20) over (7.81.0-1ubuntu1.7) ... +#6 35.21 Selecting previously unselected package libjsoncpp25:amd64. +#6 35.21 Preparing to unpack .../014-libjsoncpp25_1.9.5-3_amd64.deb ... +#6 35.22 Unpacking libjsoncpp25:amd64 (1.9.5-3) ... +#6 35.28 Selecting previously unselected package librhash0:amd64. +#6 35.29 Preparing to unpack .../015-librhash0_1.4.2-1ubuntu1_amd64.deb ... +#6 35.29 Unpacking librhash0:amd64 (1.4.2-1ubuntu1) ... +#6 35.35 Selecting previously unselected package dh-elpa-helper. +#6 35.35 Preparing to unpack .../016-dh-elpa-helper_2.0.9ubuntu1_all.deb ... +#6 35.36 Unpacking dh-elpa-helper (2.0.9ubuntu1) ... +#6 35.42 Selecting previously unselected package emacsen-common. +#6 35.42 Preparing to unpack .../017-emacsen-common_3.0.4_all.deb ... +#6 35.44 Unpacking emacsen-common (3.0.4) ... +#6 35.51 Selecting previously unselected package cmake-data. +#6 35.51 Preparing to unpack .../018-cmake-data_3.22.1-1ubuntu1.22.04.2_all.deb ... +#6 35.52 Unpacking cmake-data (3.22.1-1ubuntu1.22.04.2) ... +#6 35.98 Selecting previously unselected package cmake. +#6 35.99 Preparing to unpack .../019-cmake_3.22.1-1ubuntu1.22.04.2_amd64.deb ... +#6 36.00 Unpacking cmake (3.22.1-1ubuntu1.22.04.2) ... +#6 36.27 Selecting previously unselected package libaom3:amd64. +#6 36.27 Preparing to unpack .../020-libaom3_3.3.0-1ubuntu0.1_amd64.deb ... +#6 36.28 Unpacking libaom3:amd64 (3.3.0-1ubuntu0.1) ... +#6 36.35 Selecting previously unselected package libva2:amd64. +#6 36.36 Preparing to unpack .../021-libva2_2.14.0-1_amd64.deb ... +#6 36.37 Unpacking libva2:amd64 (2.14.0-1) ... +#6 36.43 Selecting previously unselected package libmfx1:amd64. +#6 36.43 Preparing to unpack .../022-libmfx1_22.3.0-1_amd64.deb ... +#6 36.44 Unpacking libmfx1:amd64 (22.3.0-1) ... +#6 36.57 Selecting previously unselected package libva-drm2:amd64. +#6 36.57 Preparing to unpack .../023-libva-drm2_2.14.0-1_amd64.deb ... +#6 36.58 Unpacking libva-drm2:amd64 (2.14.0-1) ... +#6 36.64 Selecting previously unselected package libva-x11-2:amd64. +#6 36.64 Preparing to unpack .../024-libva-x11-2_2.14.0-1_amd64.deb ... +#6 36.65 Unpacking libva-x11-2:amd64 (2.14.0-1) ... +#6 36.72 Selecting previously unselected package libvdpau1:amd64. +#6 36.72 Preparing to unpack .../025-libvdpau1_1.4-3build2_amd64.deb ... +#6 36.73 Unpacking libvdpau1:amd64 (1.4-3build2) ... +#6 36.79 Selecting previously unselected package ocl-icd-libopencl1:amd64. +#6 36.80 Preparing to unpack .../026-ocl-icd-libopencl1_2.2.14-3_amd64.deb ... +#6 36.80 Unpacking ocl-icd-libopencl1:amd64 (2.2.14-3) ... +#6 36.87 Selecting previously unselected package libavutil56:amd64. +#6 36.87 Preparing to unpack .../027-libavutil56_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 36.88 Unpacking libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 36.94 Selecting previously unselected package libfreetype6:amd64. +#6 36.95 Preparing to unpack .../028-libfreetype6_2.11.1+dfsg-1ubuntu0.3_amd64.deb ... +#6 36.96 Unpacking libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ... +#6 37.01 Selecting previously unselected package fonts-dejavu-core. +#6 37.01 Preparing to unpack .../029-fonts-dejavu-core_2.37-2build1_all.deb ... +#6 37.02 Unpacking fonts-dejavu-core (2.37-2build1) ... +#6 37.14 Selecting previously unselected package fontconfig-config. +#6 37.14 Preparing to unpack .../030-fontconfig-config_2.13.1-4.2ubuntu5_all.deb ... +#6 37.15 Unpacking fontconfig-config (2.13.1-4.2ubuntu5) ... +#6 37.22 Selecting previously unselected package libfontconfig1:amd64. +#6 37.22 Preparing to unpack .../031-libfontconfig1_2.13.1-4.2ubuntu5_amd64.deb ... +#6 37.23 Unpacking libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ... +#6 37.30 Selecting previously unselected package libpixman-1-0:amd64. +#6 37.30 Preparing to unpack .../032-libpixman-1-0_0.40.0-1ubuntu0.22.04.1_amd64.deb ... +#6 37.31 Unpacking libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ... +#6 37.37 Selecting previously unselected package libxcb-render0:amd64. +#6 37.38 Preparing to unpack .../033-libxcb-render0_1.14-3ubuntu3_amd64.deb ... +#6 37.39 Unpacking libxcb-render0:amd64 (1.14-3ubuntu3) ... +#6 37.45 Selecting previously unselected package libxrender1:amd64. +#6 37.45 Preparing to unpack .../034-libxrender1_1%3a0.9.10-1build4_amd64.deb ... +#6 37.46 Unpacking libxrender1:amd64 (1:0.9.10-1build4) ... +#6 37.52 Selecting previously unselected package libcairo2:amd64. +#6 37.52 Preparing to unpack .../035-libcairo2_1.16.0-5ubuntu2_amd64.deb ... +#6 37.53 Unpacking libcairo2:amd64 (1.16.0-5ubuntu2) ... +#6 37.60 Selecting previously unselected package libcodec2-1.0:amd64. +#6 37.60 Preparing to unpack .../036-libcodec2-1.0_1.0.1-3_amd64.deb ... +#6 37.61 Unpacking libcodec2-1.0:amd64 (1.0.1-3) ... +#6 37.71 Selecting previously unselected package libdav1d5:amd64. +#6 37.71 Preparing to unpack .../037-libdav1d5_0.9.2-1_amd64.deb ... +#6 37.72 Unpacking libdav1d5:amd64 (0.9.2-1) ... +#6 37.79 Selecting previously unselected package libgsm1:amd64. +#6 37.79 Preparing to unpack .../038-libgsm1_1.0.19-1_amd64.deb ... +#6 37.80 Unpacking libgsm1:amd64 (1.0.19-1) ... +#6 37.86 Selecting previously unselected package libmp3lame0:amd64. +#6 37.86 Preparing to unpack .../039-libmp3lame0_3.100-3build2_amd64.deb ... +#6 37.87 Unpacking libmp3lame0:amd64 (3.100-3build2) ... +#6 37.94 Selecting previously unselected package libopenjp2-7:amd64. +#6 37.94 Preparing to unpack .../040-libopenjp2-7_2.4.0-6ubuntu0.3_amd64.deb ... +#6 37.95 Unpacking libopenjp2-7:amd64 (2.4.0-6ubuntu0.3) ... +#6 38.01 Selecting previously unselected package libopus0:amd64. +#6 38.02 Preparing to unpack .../041-libopus0_1.3.1-0.1build2_amd64.deb ... +#6 38.03 Unpacking libopus0:amd64 (1.3.1-0.1build2) ... +#6 38.09 Selecting previously unselected package libcairo-gobject2:amd64. +#6 38.09 Preparing to unpack .../042-libcairo-gobject2_1.16.0-5ubuntu2_amd64.deb ... +#6 38.10 Unpacking libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ... +#6 38.15 Selecting previously unselected package libgdk-pixbuf2.0-common. +#6 38.16 Preparing to unpack .../043-libgdk-pixbuf2.0-common_2.42.8+dfsg-1ubuntu0.3_all.deb ... +#6 38.17 Unpacking libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.3) ... +#6 38.23 Selecting previously unselected package libjpeg-turbo8:amd64. +#6 38.23 Preparing to unpack .../044-libjpeg-turbo8_2.1.2-0ubuntu1_amd64.deb ... +#6 38.24 Unpacking libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ... +#6 38.29 Selecting previously unselected package libjpeg8:amd64. +#6 38.29 Preparing to unpack .../045-libjpeg8_8c-2ubuntu10_amd64.deb ... +#6 38.30 Unpacking libjpeg8:amd64 (8c-2ubuntu10) ... +#6 38.37 Selecting previously unselected package libdeflate0:amd64. +#6 38.37 Preparing to unpack .../046-libdeflate0_1.10-2_amd64.deb ... +#6 38.38 Unpacking libdeflate0:amd64 (1.10-2) ... +#6 38.44 Selecting previously unselected package libjbig0:amd64. +#6 38.44 Preparing to unpack .../047-libjbig0_2.1-3.1ubuntu0.22.04.1_amd64.deb ... +#6 38.45 Unpacking libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ... +#6 38.51 Selecting previously unselected package libwebp7:amd64. +#6 38.52 Preparing to unpack .../048-libwebp7_1.2.2-2ubuntu0.22.04.2_amd64.deb ... +#6 38.52 Unpacking libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 38.59 Selecting previously unselected package libtiff5:amd64. +#6 38.59 Preparing to unpack .../049-libtiff5_4.3.0-6ubuntu0.10_amd64.deb ... +#6 38.60 Unpacking libtiff5:amd64 (4.3.0-6ubuntu0.10) ... +#6 38.68 Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. +#6 38.68 Preparing to unpack .../050-libgdk-pixbuf-2.0-0_2.42.8+dfsg-1ubuntu0.3_amd64.deb ... +#6 38.69 Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ... +#6 38.76 Selecting previously unselected package fontconfig. +#6 38.77 Preparing to unpack .../051-fontconfig_2.13.1-4.2ubuntu5_amd64.deb ... +#6 38.77 Unpacking fontconfig (2.13.1-4.2ubuntu5) ... +#6 38.85 Selecting previously unselected package libgraphite2-3:amd64. +#6 38.85 Preparing to unpack .../052-libgraphite2-3_1.3.14-1build2_amd64.deb ... +#6 38.86 Unpacking libgraphite2-3:amd64 (1.3.14-1build2) ... +#6 38.92 Selecting previously unselected package libharfbuzz0b:amd64. +#6 38.92 Preparing to unpack .../053-libharfbuzz0b_2.7.4-1ubuntu3.2_amd64.deb ... +#6 38.93 Unpacking libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ... +#6 38.99 Selecting previously unselected package libthai-data. +#6 38.99 Preparing to unpack .../054-libthai-data_0.1.29-1build1_all.deb ... +#6 39.00 Unpacking libthai-data (0.1.29-1build1) ... +#6 39.06 Selecting previously unselected package libdatrie1:amd64. +#6 39.07 Preparing to unpack .../055-libdatrie1_0.2.13-2_amd64.deb ... +#6 39.08 Unpacking libdatrie1:amd64 (0.2.13-2) ... +#6 39.14 Selecting previously unselected package libthai0:amd64. +#6 39.14 Preparing to unpack .../056-libthai0_0.1.29-1build1_amd64.deb ... +#6 39.15 Unpacking libthai0:amd64 (0.1.29-1build1) ... +#6 39.21 Selecting previously unselected package libpango-1.0-0:amd64. +#6 39.22 Preparing to unpack .../057-libpango-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 39.23 Unpacking libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 39.30 Selecting previously unselected package libpangoft2-1.0-0:amd64. +#6 39.30 Preparing to unpack .../058-libpangoft2-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 39.31 Unpacking libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 39.38 Selecting previously unselected package libpangocairo-1.0-0:amd64. +#6 39.38 Preparing to unpack .../059-libpangocairo-1.0-0_1.50.6+ds-2ubuntu1_amd64.deb ... +#6 39.39 Unpacking libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 39.45 Selecting previously unselected package librsvg2-2:amd64. +#6 39.46 Preparing to unpack .../060-librsvg2-2_2.52.5+dfsg-3ubuntu0.2_amd64.deb ... +#6 39.46 Unpacking librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ... +#6 39.56 Selecting previously unselected package libshine3:amd64. +#6 39.56 Preparing to unpack .../061-libshine3_3.1.1-2_amd64.deb ... +#6 39.57 Unpacking libshine3:amd64 (3.1.1-2) ... +#6 39.63 Selecting previously unselected package libsnappy1v5:amd64. +#6 39.63 Preparing to unpack .../062-libsnappy1v5_1.1.8-1build3_amd64.deb ... +#6 39.64 Unpacking libsnappy1v5:amd64 (1.1.8-1build3) ... +#6 39.70 Selecting previously unselected package libspeex1:amd64. +#6 39.70 Preparing to unpack .../063-libspeex1_1.2~rc1.2-1.1ubuntu3_amd64.deb ... +#6 39.71 Unpacking libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ... +#6 39.78 Selecting previously unselected package libsoxr0:amd64. +#6 39.78 Preparing to unpack .../064-libsoxr0_0.1.3-4build2_amd64.deb ... +#6 39.79 Unpacking libsoxr0:amd64 (0.1.3-4build2) ... +#6 39.85 Selecting previously unselected package libswresample3:amd64. +#6 39.85 Preparing to unpack .../065-libswresample3_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 39.86 Unpacking libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 39.93 Selecting previously unselected package libogg0:amd64. +#6 39.93 Preparing to unpack .../066-libogg0_1.3.5-0ubuntu3_amd64.deb ... +#6 39.94 Unpacking libogg0:amd64 (1.3.5-0ubuntu3) ... +#6 40.00 Selecting previously unselected package libtheora0:amd64. +#6 40.01 Preparing to unpack .../067-libtheora0_1.1.1+dfsg.1-15ubuntu4_amd64.deb ... +#6 40.01 Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ... +#6 40.10 Selecting previously unselected package libtwolame0:amd64. +#6 40.10 Preparing to unpack .../068-libtwolame0_0.4.0-2build2_amd64.deb ... +#6 40.11 Unpacking libtwolame0:amd64 (0.4.0-2build2) ... +#6 40.18 Selecting previously unselected package libvorbis0a:amd64. +#6 40.18 Preparing to unpack .../069-libvorbis0a_1.3.7-1build2_amd64.deb ... +#6 40.19 Unpacking libvorbis0a:amd64 (1.3.7-1build2) ... +#6 40.25 Selecting previously unselected package libvorbisenc2:amd64. +#6 40.25 Preparing to unpack .../070-libvorbisenc2_1.3.7-1build2_amd64.deb ... +#6 40.26 Unpacking libvorbisenc2:amd64 (1.3.7-1build2) ... +#6 40.33 Selecting previously unselected package libvpx7:amd64. +#6 40.33 Preparing to unpack .../071-libvpx7_1.11.0-2ubuntu2.3_amd64.deb ... +#6 40.34 Unpacking libvpx7:amd64 (1.11.0-2ubuntu2.3) ... +#6 40.41 Selecting previously unselected package libwebpmux3:amd64. +#6 40.41 Preparing to unpack .../072-libwebpmux3_1.2.2-2ubuntu0.22.04.2_amd64.deb ... +#6 40.42 Unpacking libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 40.48 Selecting previously unselected package libx264-163:amd64. +#6 40.48 Preparing to unpack .../073-libx264-163_2%3a0.163.3060+git5db6aa6-2build1_amd64.deb ... +#6 40.49 Unpacking libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ... +#6 40.56 Selecting previously unselected package libx265-199:amd64. +#6 40.57 Preparing to unpack .../074-libx265-199_3.5-2_amd64.deb ... +#6 40.57 Unpacking libx265-199:amd64 (3.5-2) ... +#6 40.68 Selecting previously unselected package libxvidcore4:amd64. +#6 40.68 Preparing to unpack .../075-libxvidcore4_2%3a1.3.7-1_amd64.deb ... +#6 40.69 Unpacking libxvidcore4:amd64 (2:1.3.7-1) ... +#6 40.75 Selecting previously unselected package libzvbi-common. +#6 40.76 Preparing to unpack .../076-libzvbi-common_0.2.35-19_all.deb ... +#6 40.77 Unpacking libzvbi-common (0.2.35-19) ... +#6 40.83 Selecting previously unselected package libzvbi0:amd64. +#6 40.83 Preparing to unpack .../077-libzvbi0_0.2.35-19_amd64.deb ... +#6 40.84 Unpacking libzvbi0:amd64 (0.2.35-19) ... +#6 40.91 Selecting previously unselected package libavcodec58:amd64. +#6 40.91 Preparing to unpack .../078-libavcodec58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 40.92 Unpacking libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 41.01 Selecting previously unselected package libasound2-data. +#6 41.02 Preparing to unpack .../079-libasound2-data_1.2.6.1-1ubuntu1_all.deb ... +#6 41.03 Unpacking libasound2-data (1.2.6.1-1ubuntu1) ... +#6 41.10 Selecting previously unselected package libasound2:amd64. +#6 41.10 Preparing to unpack .../080-libasound2_1.2.6.1-1ubuntu1_amd64.deb ... +#6 41.11 Unpacking libasound2:amd64 (1.2.6.1-1ubuntu1) ... +#6 41.18 Selecting previously unselected package libraw1394-11:amd64. +#6 41.18 Preparing to unpack .../081-libraw1394-11_2.1.2-2build2_amd64.deb ... +#6 41.19 Unpacking libraw1394-11:amd64 (2.1.2-2build2) ... +#6 41.28 Selecting previously unselected package libavc1394-0:amd64. +#6 41.28 Preparing to unpack .../082-libavc1394-0_0.5.4-5build2_amd64.deb ... +#6 41.29 Unpacking libavc1394-0:amd64 (0.5.4-5build2) ... +#6 41.36 Selecting previously unselected package libass9:amd64. +#6 41.36 Preparing to unpack .../083-libass9_1%3a0.15.2-1_amd64.deb ... +#6 41.37 Unpacking libass9:amd64 (1:0.15.2-1) ... +#6 41.44 Selecting previously unselected package libudfread0:amd64. +#6 41.44 Preparing to unpack .../084-libudfread0_1.1.2-1_amd64.deb ... +#6 41.45 Unpacking libudfread0:amd64 (1.1.2-1) ... +#6 41.52 Selecting previously unselected package libbluray2:amd64. +#6 41.52 Preparing to unpack .../085-libbluray2_1%3a1.3.1-1_amd64.deb ... +#6 41.53 Unpacking libbluray2:amd64 (1:1.3.1-1) ... +#6 41.60 Selecting previously unselected package libchromaprint1:amd64. +#6 41.61 Preparing to unpack .../086-libchromaprint1_1.5.1-2_amd64.deb ... +#6 41.62 Unpacking libchromaprint1:amd64 (1.5.1-2) ... +#6 41.69 Selecting previously unselected package libgme0:amd64. +#6 41.69 Preparing to unpack .../087-libgme0_0.6.3-2_amd64.deb ... +#6 41.70 Unpacking libgme0:amd64 (0.6.3-2) ... +#6 41.77 Selecting previously unselected package libmpg123-0:amd64. +#6 41.78 Preparing to unpack .../088-libmpg123-0_1.29.3-1ubuntu0.1_amd64.deb ... +#6 41.79 Unpacking libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ... +#6 41.85 Selecting previously unselected package libvorbisfile3:amd64. +#6 41.85 Preparing to unpack .../089-libvorbisfile3_1.3.7-1build2_amd64.deb ... +#6 41.86 Unpacking libvorbisfile3:amd64 (1.3.7-1build2) ... +#6 41.93 Selecting previously unselected package libopenmpt0:amd64. +#6 41.94 Preparing to unpack .../090-libopenmpt0_0.6.1-1_amd64.deb ... +#6 41.95 Unpacking libopenmpt0:amd64 (0.6.1-1) ... +#6 42.00 Selecting previously unselected package librabbitmq4:amd64. +#6 42.00 Preparing to unpack .../091-librabbitmq4_0.10.0-1ubuntu2_amd64.deb ... +#6 42.01 Unpacking librabbitmq4:amd64 (0.10.0-1ubuntu2) ... +#6 42.06 Selecting previously unselected package libsrt1.4-gnutls:amd64. +#6 42.06 Preparing to unpack .../092-libsrt1.4-gnutls_1.4.4-4_amd64.deb ... +#6 42.07 Unpacking libsrt1.4-gnutls:amd64 (1.4.4-4) ... +#6 42.12 Selecting previously unselected package libssh-gcrypt-4:amd64. +#6 42.12 Preparing to unpack .../093-libssh-gcrypt-4_0.9.6-2ubuntu0.22.04.3_amd64.deb ... +#6 42.13 Unpacking libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.3) ... +#6 42.20 Selecting previously unselected package libnorm1:amd64. +#6 42.20 Preparing to unpack .../094-libnorm1_1.5.9+dfsg-2_amd64.deb ... +#6 42.21 Unpacking libnorm1:amd64 (1.5.9+dfsg-2) ... +#6 42.28 Selecting previously unselected package libpgm-5.3-0:amd64. +#6 42.28 Preparing to unpack .../095-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ... +#6 42.29 Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#6 42.36 Selecting previously unselected package libsodium23:amd64. +#6 42.36 Preparing to unpack .../096-libsodium23_1.0.18-1build2_amd64.deb ... +#6 42.37 Unpacking libsodium23:amd64 (1.0.18-1build2) ... +#6 42.44 Selecting previously unselected package libzmq5:amd64. +#6 42.44 Preparing to unpack .../097-libzmq5_4.3.4-2_amd64.deb ... +#6 42.45 Unpacking libzmq5:amd64 (4.3.4-2) ... +#6 42.51 Selecting previously unselected package libavformat58:amd64. +#6 42.51 Preparing to unpack .../098-libavformat58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 42.52 Unpacking libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 42.59 Selecting previously unselected package libbs2b0:amd64. +#6 42.59 Preparing to unpack .../099-libbs2b0_3.1.0+dfsg-2.2build1_amd64.deb ... +#6 42.60 Unpacking libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ... +#6 42.67 Selecting previously unselected package libflite1:amd64. +#6 42.67 Preparing to unpack .../100-libflite1_2.2-3_amd64.deb ... +#6 42.68 Unpacking libflite1:amd64 (2.2-3) ... +#6 42.81 Selecting previously unselected package libserd-0-0:amd64. +#6 42.82 Preparing to unpack .../101-libserd-0-0_0.30.10-2_amd64.deb ... +#6 42.83 Unpacking libserd-0-0:amd64 (0.30.10-2) ... +#6 42.89 Selecting previously unselected package libsord-0-0:amd64. +#6 42.89 Preparing to unpack .../102-libsord-0-0_0.16.8-2_amd64.deb ... +#6 42.90 Unpacking libsord-0-0:amd64 (0.16.8-2) ... +#6 42.96 Selecting previously unselected package libsratom-0-0:amd64. +#6 42.96 Preparing to unpack .../103-libsratom-0-0_0.6.8-1_amd64.deb ... +#6 42.97 Unpacking libsratom-0-0:amd64 (0.6.8-1) ... +#6 43.03 Selecting previously unselected package liblilv-0-0:amd64. +#6 43.03 Preparing to unpack .../104-liblilv-0-0_0.24.12-2_amd64.deb ... +#6 43.04 Unpacking liblilv-0-0:amd64 (0.24.12-2) ... +#6 43.11 Selecting previously unselected package libmysofa1:amd64. +#6 43.11 Preparing to unpack .../105-libmysofa1_1.2.1~dfsg0-1_amd64.deb ... +#6 43.12 Unpacking libmysofa1:amd64 (1.2.1~dfsg0-1) ... +#6 43.19 Selecting previously unselected package libblas3:amd64. +#6 43.19 Preparing to unpack .../106-libblas3_3.10.0-2ubuntu1_amd64.deb ... +#6 43.20 Unpacking libblas3:amd64 (3.10.0-2ubuntu1) ... +#6 43.27 Selecting previously unselected package libgfortran5:amd64. +#6 43.27 Preparing to unpack .../107-libgfortran5_12.3.0-1ubuntu1~22.04_amd64.deb ... +#6 43.28 Unpacking libgfortran5:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 43.35 Selecting previously unselected package libopenblas0-pthread:amd64. +#6 43.36 Preparing to unpack .../108-libopenblas0-pthread_0.3.20+ds-1_amd64.deb ... +#6 43.36 Unpacking libopenblas0-pthread:amd64 (0.3.20+ds-1) ... +#6 43.55 Selecting previously unselected package liblapack3:amd64. +#6 43.55 Preparing to unpack .../109-liblapack3_3.10.0-2ubuntu1_amd64.deb ... +#6 43.56 Unpacking liblapack3:amd64 (3.10.0-2ubuntu1) ... +#6 43.65 Selecting previously unselected package libasyncns0:amd64. +#6 43.65 Preparing to unpack .../110-libasyncns0_0.8-6build2_amd64.deb ... +#6 43.66 Unpacking libasyncns0:amd64 (0.8-6build2) ... +#6 43.72 Selecting previously unselected package libflac8:amd64. +#6 43.72 Preparing to unpack .../111-libflac8_1.3.3-2ubuntu0.2_amd64.deb ... +#6 43.73 Unpacking libflac8:amd64 (1.3.3-2ubuntu0.2) ... +#6 43.79 Selecting previously unselected package libsndfile1:amd64. +#6 43.79 Preparing to unpack .../112-libsndfile1_1.0.31-2ubuntu0.2_amd64.deb ... +#6 43.80 Unpacking libsndfile1:amd64 (1.0.31-2ubuntu0.2) ... +#6 43.88 Selecting previously unselected package libpulse0:amd64. +#6 43.88 Preparing to unpack .../113-libpulse0_1%3a15.99.1+dfsg1-1ubuntu2.2_amd64.deb ... +#6 43.89 Unpacking libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ... +#6 43.96 Selecting previously unselected package libsphinxbase3:amd64. +#6 43.96 Preparing to unpack .../114-libsphinxbase3_0.8+5prealpha+1-13build1_amd64.deb ... +#6 43.97 Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ... +#6 44.03 Selecting previously unselected package libpocketsphinx3:amd64. +#6 44.03 Preparing to unpack .../115-libpocketsphinx3_0.8.0+real5prealpha+1-14ubuntu1_amd64.deb ... +#6 44.04 Unpacking libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ... +#6 44.10 Selecting previously unselected package libpostproc55:amd64. +#6 44.10 Preparing to unpack .../116-libpostproc55_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 44.11 Unpacking libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 44.17 Selecting previously unselected package libsamplerate0:amd64. +#6 44.18 Preparing to unpack .../117-libsamplerate0_0.2.2-1build1_amd64.deb ... +#6 44.18 Unpacking libsamplerate0:amd64 (0.2.2-1build1) ... +#6 44.25 Selecting previously unselected package librubberband2:amd64. +#6 44.25 Preparing to unpack .../118-librubberband2_2.0.0-2_amd64.deb ... +#6 44.26 Unpacking librubberband2:amd64 (2.0.0-2) ... +#6 44.32 Selecting previously unselected package libswscale5:amd64. +#6 44.32 Preparing to unpack .../119-libswscale5_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 44.33 Unpacking libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 44.39 Selecting previously unselected package libvidstab1.1:amd64. +#6 44.39 Preparing to unpack .../120-libvidstab1.1_1.1.0-2_amd64.deb ... +#6 44.40 Unpacking libvidstab1.1:amd64 (1.1.0-2) ... +#6 44.46 Selecting previously unselected package libzimg2:amd64. +#6 44.46 Preparing to unpack .../121-libzimg2_3.0.3+ds1-1_amd64.deb ... +#6 44.47 Unpacking libzimg2:amd64 (3.0.3+ds1-1) ... +#6 44.54 Selecting previously unselected package libavfilter7:amd64. +#6 44.54 Preparing to unpack .../122-libavfilter7_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 44.55 Unpacking libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 44.62 Selecting previously unselected package libcaca0:amd64. +#6 44.62 Preparing to unpack .../123-libcaca0_0.99.beta19-2.2ubuntu4_amd64.deb ... +#6 44.63 Unpacking libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ... +#6 44.69 Selecting previously unselected package libcdio19:amd64. +#6 44.69 Preparing to unpack .../124-libcdio19_2.1.0-3ubuntu0.2_amd64.deb ... +#6 44.70 Unpacking libcdio19:amd64 (2.1.0-3ubuntu0.2) ... +#6 44.76 Selecting previously unselected package libcdio-cdda2:amd64. +#6 44.77 Preparing to unpack .../125-libcdio-cdda2_10.2+2.0.0-1build3_amd64.deb ... +#6 44.77 Unpacking libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ... +#6 44.83 Selecting previously unselected package libcdio-paranoia2:amd64. +#6 44.84 Preparing to unpack .../126-libcdio-paranoia2_10.2+2.0.0-1build3_amd64.deb ... +#6 44.85 Unpacking libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ... +#6 44.91 Selecting previously unselected package libdc1394-25:amd64. +#6 44.91 Preparing to unpack .../127-libdc1394-25_2.2.6-4_amd64.deb ... +#6 44.92 Unpacking libdc1394-25:amd64 (2.2.6-4) ... +#6 44.98 Selecting previously unselected package libiec61883-0:amd64. +#6 44.98 Preparing to unpack .../128-libiec61883-0_1.2.0-4build3_amd64.deb ... +#6 44.99 Unpacking libiec61883-0:amd64 (1.2.0-4build3) ... +#6 45.05 Selecting previously unselected package libjack-jackd2-0:amd64. +#6 45.05 Preparing to unpack .../129-libjack-jackd2-0_1.9.20~dfsg-1_amd64.deb ... +#6 45.06 Unpacking libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ... +#6 45.12 Selecting previously unselected package libopenal-data. +#6 45.12 Preparing to unpack .../130-libopenal-data_1%3a1.19.1-2build3_all.deb ... +#6 45.13 Unpacking libopenal-data (1:1.19.1-2build3) ... +#6 45.19 Selecting previously unselected package libsndio7.0:amd64. +#6 45.19 Preparing to unpack .../131-libsndio7.0_1.8.1-1.1_amd64.deb ... +#6 45.20 Unpacking libsndio7.0:amd64 (1.8.1-1.1) ... +#6 45.26 Selecting previously unselected package libopenal1:amd64. +#6 45.27 Preparing to unpack .../132-libopenal1_1%3a1.19.1-2build3_amd64.deb ... +#6 45.27 Unpacking libopenal1:amd64 (1:1.19.1-2build3) ... +#6 45.34 Selecting previously unselected package libwayland-client0:amd64. +#6 45.34 Preparing to unpack .../133-libwayland-client0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 45.35 Unpacking libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ... +#6 45.41 Selecting previously unselected package libdecor-0-0:amd64. +#6 45.41 Preparing to unpack .../134-libdecor-0-0_0.1.0-3build1_amd64.deb ... +#6 45.42 Unpacking libdecor-0-0:amd64 (0.1.0-3build1) ... +#6 45.48 Selecting previously unselected package libwayland-server0:amd64. +#6 45.49 Preparing to unpack .../135-libwayland-server0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 45.50 Unpacking libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ... +#6 45.56 Selecting previously unselected package libxcb-randr0:amd64. +#6 45.56 Preparing to unpack .../136-libxcb-randr0_1.14-3ubuntu3_amd64.deb ... +#6 45.57 Unpacking libxcb-randr0:amd64 (1.14-3ubuntu3) ... +#6 45.63 Selecting previously unselected package libgbm1:amd64. +#6 45.63 Preparing to unpack .../137-libgbm1_23.2.1-1ubuntu3.1~22.04.3_amd64.deb ... +#6 45.64 Unpacking libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ... +#6 45.70 Selecting previously unselected package libwayland-cursor0:amd64. +#6 45.70 Preparing to unpack .../138-libwayland-cursor0_1.20.0-1ubuntu0.1_amd64.deb ... +#6 45.71 Unpacking libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ... +#6 45.77 Selecting previously unselected package libwayland-egl1:amd64. +#6 45.78 Preparing to unpack .../139-libwayland-egl1_1.20.0-1ubuntu0.1_amd64.deb ... +#6 45.78 Unpacking libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ... +#6 45.84 Selecting previously unselected package libxcursor1:amd64. +#6 45.84 Preparing to unpack .../140-libxcursor1_1%3a1.2.0-2build4_amd64.deb ... +#6 45.85 Unpacking libxcursor1:amd64 (1:1.2.0-2build4) ... +#6 45.91 Selecting previously unselected package libxi6:amd64. +#6 45.92 Preparing to unpack .../141-libxi6_2%3a1.8-1build1_amd64.deb ... +#6 45.92 Unpacking libxi6:amd64 (2:1.8-1build1) ... +#6 45.98 Selecting previously unselected package libxinerama1:amd64. +#6 45.99 Preparing to unpack .../142-libxinerama1_2%3a1.1.4-3_amd64.deb ... +#6 45.99 Unpacking libxinerama1:amd64 (2:1.1.4-3) ... +#6 46.06 Selecting previously unselected package libxkbcommon0:amd64. +#6 46.06 Preparing to unpack .../143-libxkbcommon0_1.4.0-1_amd64.deb ... +#6 46.07 Unpacking libxkbcommon0:amd64 (1.4.0-1) ... +#6 46.13 Selecting previously unselected package libxrandr2:amd64. +#6 46.13 Preparing to unpack .../144-libxrandr2_2%3a1.5.2-1build1_amd64.deb ... +#6 46.14 Unpacking libxrandr2:amd64 (2:1.5.2-1build1) ... +#6 46.21 Selecting previously unselected package x11-common. +#6 46.21 Preparing to unpack .../145-x11-common_1%3a7.7+23ubuntu2_all.deb ... +#6 46.22 Unpacking x11-common (1:7.7+23ubuntu2) ... +#6 46.28 Selecting previously unselected package libxss1:amd64. +#6 46.28 Preparing to unpack .../146-libxss1_1%3a1.2.3-1build2_amd64.deb ... +#6 46.29 Unpacking libxss1:amd64 (1:1.2.3-1build2) ... +#6 46.35 Selecting previously unselected package libsdl2-2.0-0:amd64. +#6 46.36 Preparing to unpack .../147-libsdl2-2.0-0_2.0.20+dfsg-2ubuntu1.22.04.1_amd64.deb ... +#6 46.37 Unpacking libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ... +#6 46.44 Selecting previously unselected package libxcb-shape0:amd64. +#6 46.44 Preparing to unpack .../148-libxcb-shape0_1.14-3ubuntu3_amd64.deb ... +#6 46.45 Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ... +#6 46.51 Selecting previously unselected package libxv1:amd64. +#6 46.51 Preparing to unpack .../149-libxv1_2%3a1.0.11-1build2_amd64.deb ... +#6 46.52 Unpacking libxv1:amd64 (2:1.0.11-1build2) ... +#6 46.58 Selecting previously unselected package libavdevice58:amd64. +#6 46.58 Preparing to unpack .../150-libavdevice58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 46.59 Unpacking libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 46.64 Selecting previously unselected package ffmpeg. +#6 46.65 Preparing to unpack .../151-ffmpeg_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ... +#6 46.65 Unpacking ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ... +#6 46.73 Selecting previously unselected package libcurl3-gnutls:amd64. +#6 46.73 Preparing to unpack .../152-libcurl3-gnutls_7.81.0-1ubuntu1.20_amd64.deb ... +#6 46.74 Unpacking libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.20) ... +#6 46.79 Selecting previously unselected package liberror-perl. +#6 46.79 Preparing to unpack .../153-liberror-perl_0.17029-1_all.deb ... +#6 46.80 Unpacking liberror-perl (0.17029-1) ... +#6 46.85 Selecting previously unselected package git-man. +#6 46.85 Preparing to unpack .../154-git-man_1%3a2.34.1-1ubuntu1.12_all.deb ... +#6 46.86 Unpacking git-man (1:2.34.1-1ubuntu1.12) ... +#6 46.94 Selecting previously unselected package git. +#6 46.94 Preparing to unpack .../155-git_1%3a2.34.1-1ubuntu1.12_amd64.deb ... +#6 46.95 Unpacking git (1:2.34.1-1ubuntu1.12) ... +#6 47.09 Selecting previously unselected package libexpat1-dev:amd64. +#6 47.09 Preparing to unpack .../156-libexpat1-dev_2.4.7-1ubuntu0.6_amd64.deb ... +#6 47.10 Unpacking libexpat1-dev:amd64 (2.4.7-1ubuntu0.6) ... +#6 47.16 Selecting previously unselected package libllvm14:amd64. +#6 47.17 Preparing to unpack .../157-libllvm14_1%3a14.0.0-1ubuntu1.1_amd64.deb ... +#6 47.17 Unpacking libllvm14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 47.52 Selecting previously unselected package libomp5-14:amd64. +#6 47.52 Preparing to unpack .../158-libomp5-14_1%3a14.0.0-1ubuntu1.1_amd64.deb ... +#6 47.53 Unpacking libomp5-14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 47.59 Selecting previously unselected package libomp-14-dev. +#6 47.59 Preparing to unpack .../159-libomp-14-dev_1%3a14.0.0-1ubuntu1.1_amd64.deb ... +#6 47.60 Unpacking libomp-14-dev (1:14.0.0-1ubuntu1.1) ... +#6 47.67 Selecting previously unselected package libopenblas0:amd64. +#6 47.67 Preparing to unpack .../160-libopenblas0_0.3.20+ds-1_amd64.deb ... +#6 47.68 Unpacking libopenblas0:amd64 (0.3.20+ds-1) ... +#6 47.74 Selecting previously unselected package libopenblas-pthread-dev:amd64. +#6 47.74 Preparing to unpack .../161-libopenblas-pthread-dev_0.3.20+ds-1_amd64.deb ... +#6 47.75 Unpacking libopenblas-pthread-dev:amd64 (0.3.20+ds-1) ... +#6 47.95 Selecting previously unselected package libopenblas-dev:amd64. +#6 47.95 Preparing to unpack .../162-libopenblas-dev_0.3.20+ds-1_amd64.deb ... +#6 47.96 Unpacking libopenblas-dev:amd64 (0.3.20+ds-1) ... +#6 48.01 Selecting previously unselected package libpython3.10-dev:amd64. +#6 48.01 Preparing to unpack .../163-libpython3.10-dev_3.10.12-1~22.04.9_amd64.deb ... +#6 48.02 Unpacking libpython3.10-dev:amd64 (3.10.12-1~22.04.9) ... +#6 48.15 Selecting previously unselected package ninja-build. +#6 48.15 Preparing to unpack .../164-ninja-build_1.10.1-1_amd64.deb ... +#6 48.16 Unpacking ninja-build (1.10.1-1) ... +#6 48.22 Selecting previously unselected package pkg-config. +#6 48.22 Preparing to unpack .../165-pkg-config_0.29.2-1ubuntu3_amd64.deb ... +#6 48.25 Unpacking pkg-config (0.29.2-1ubuntu3) ... +#6 48.32 Preparing to unpack .../166-python3-pip_22.0.2+dfsg-1ubuntu0.5_all.deb ... +#6 48.62 Unpacking python3-pip (22.0.2+dfsg-1ubuntu0.5) over (22.0.2+dfsg-1ubuntu0.1) ... +#6 50.96 Selecting previously unselected package python3-pip-whl. +#6 50.96 Preparing to unpack .../167-python3-pip-whl_22.0.2+dfsg-1ubuntu0.5_all.deb ... +#6 50.97 Unpacking python3-pip-whl (22.0.2+dfsg-1ubuntu0.5) ... +#6 51.03 Selecting previously unselected package python3-setuptools-whl. +#6 51.03 Preparing to unpack .../168-python3-setuptools-whl_59.6.0-1.2ubuntu0.22.04.2_all.deb ... +#6 51.04 Unpacking python3-setuptools-whl (59.6.0-1.2ubuntu0.22.04.2) ... +#6 51.10 Selecting previously unselected package python3.10-dev. +#6 51.10 Preparing to unpack .../169-python3.10-dev_3.10.12-1~22.04.9_amd64.deb ... +#6 51.11 Unpacking python3.10-dev (3.10.12-1~22.04.9) ... +#6 51.17 Selecting previously unselected package python3.10-venv. +#6 51.17 Preparing to unpack .../170-python3.10-venv_3.10.12-1~22.04.9_amd64.deb ... +#6 51.18 Unpacking python3.10-venv (3.10.12-1~22.04.9) ... +#6 51.23 Selecting previously unselected package libomp-dev:amd64. +#6 51.24 Preparing to unpack .../171-libomp-dev_1%3a14.0-55~exp2_amd64.deb ... +#6 51.25 Unpacking libomp-dev:amd64 (1:14.0-55~exp2) ... +#6 51.31 Setting up libgme0:amd64 (0.6.3-2) ... +#6 51.34 Setting up libssh-gcrypt-4:amd64 (0.9.6-2ubuntu0.22.04.3) ... +#6 51.36 Setting up libexpat1:amd64 (2.4.7-1ubuntu0.6) ... +#6 51.39 Setting up libgraphite2-3:amd64 (1.3.14-1build2) ... +#6 51.41 Setting up libsrt1.4-gnutls:amd64 (1.4.4-4) ... +#6 51.44 Setting up libomp5-14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 51.46 Setting up libpixman-1-0:amd64 (0.40.0-1ubuntu0.22.04.1) ... +#6 51.49 Setting up libudfread0:amd64 (1.1.2-1) ... +#6 51.52 Setting up libwayland-server0:amd64 (1.20.0-1ubuntu0.1) ... +#6 51.54 Setting up libaom3:amd64 (3.3.0-1ubuntu0.1) ... +#6 51.57 Setting up librabbitmq4:amd64 (0.10.0-1ubuntu2) ... +#6 51.60 Setting up python3-setuptools-whl (59.6.0-1.2ubuntu0.22.04.2) ... +#6 51.62 Setting up libraw1394-11:amd64 (2.1.2-2build2) ... +#6 51.65 Setting up libapparmor1:amd64 (3.0.4-2ubuntu2.4) ... +#6 51.67 Setting up libcodec2-1.0:amd64 (1.0.1-3) ... +#6 51.70 Setting up libsodium23:amd64 (1.0.18-1build2) ... +#6 51.73 Setting up libmpg123-0:amd64 (1.29.3-1ubuntu0.1) ... +#6 51.75 Setting up libogg0:amd64 (1.3.5-0ubuntu3) ... +#6 51.78 Setting up libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ... +#6 51.81 Setting up libshine3:amd64 (3.1.1-2) ... +#6 51.83 Setting up wget (1.21.2-2ubuntu1.1) ... +#6 51.87 Setting up libxi6:amd64 (2:1.8-1build1) ... +#6 51.89 Setting up libtwolame0:amd64 (0.4.0-2build2) ... +#6 51.92 Setting up libxrender1:amd64 (1:0.9.10-1build4) ... +#6 51.95 Setting up libdatrie1:amd64 (0.2.13-2) ... +#6 51.97 Setting up libgsm1:amd64 (1.0.19-1) ... +#6 52.00 Setting up python3-pip-whl (22.0.2+dfsg-1ubuntu0.5) ... +#6 52.02 Setting up libarchive13:amd64 (3.6.0-1ubuntu1.4) ... +#6 52.05 Setting up libxcb-render0:amd64 (1.14-3ubuntu3) ... +#6 52.07 Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ... +#6 52.10 Setting up libxcursor1:amd64 (1:1.2.0-2build4) ... +#6 52.12 Setting up libgdk-pixbuf2.0-common (2.42.8+dfsg-1ubuntu0.3) ... +#6 52.15 Setting up libnorm1:amd64 (1.5.9+dfsg-2) ... +#6 52.17 Setting up libmysofa1:amd64 (1.2.1~dfsg0-1) ... +#6 52.20 Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ... +#6 52.22 Setting up x11-common (1:7.7+23ubuntu2) ... +#6 52.41 invoke-rc.d: could not determine current runlevel +#6 52.41 invoke-rc.d: policy-rc.d denied execution of start. +#6 52.42 Setting up libdeflate0:amd64 (1.10-2) ... +#6 52.45 Setting up xkb-data (2.33-1) ... +#6 52.47 Setting up libcurl3-gnutls:amd64 (7.81.0-1ubuntu1.20) ... +#6 52.50 Setting up libgomp1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 52.52 Setting up libcdio19:amd64 (2.1.0-3ubuntu0.2) ... +#6 52.55 Setting up libxvidcore4:amd64 (2:1.3.7-1) ... +#6 52.57 Setting up libjbig0:amd64 (2.1-3.1ubuntu0.22.04.1) ... +#6 52.59 Setting up ninja-build (1.10.1-1) ... +#6 52.62 Setting up libsnappy1v5:amd64 (1.1.8-1build3) ... +#6 52.64 Setting up libflac8:amd64 (1.3.3-2ubuntu0.2) ... +#6 52.67 Setting up liberror-perl (0.17029-1) ... +#6 52.69 Setting up libasound2-data (1.2.6.1-1ubuntu1) ... +#6 52.72 Setting up libblas3:amd64 (3.10.0-2ubuntu1) ... +#6 52.75 update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#6 52.76 Setting up libuv1:amd64 (1.43.0-1ubuntu0.1) ... +#6 52.78 Setting up libexpat1-dev:amd64 (2.4.7-1ubuntu0.6) ... +#6 52.81 Setting up emacsen-common (3.0.4) ... +#6 52.86 Setting up libslang2:amd64 (2.3.2-5build4) ... +#6 52.88 Setting up libva2:amd64 (2.14.0-1) ... +#6 52.91 Setting up dh-elpa-helper (2.0.9ubuntu1) ... +#6 52.93 Setting up libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ... +#6 52.96 Setting up libdbus-1-3:amd64 (1.12.20-2ubuntu4.1) ... +#6 52.98 Setting up libfribidi0:amd64 (1.0.8-2ubuntu3.1) ... +#6 53.01 Setting up libopus0:amd64 (1.3.1-0.1build2) ... +#6 53.03 Setting up libquadmath0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 53.06 Setting up shared-mime-info (2.1-2) ... +#6 56.67 Setting up libxinerama1:amd64 (2:1.1.4-3) ... +#6 56.70 Setting up libxv1:amd64 (2:1.0.11-1build2) ... +#6 56.72 Setting up libpng16-16:amd64 (1.6.37-3build5) ... +#6 56.75 Setting up libatomic1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 56.77 Setting up libvorbis0a:amd64 (1.3.7-1build2) ... +#6 56.80 Setting up libxrandr2:amd64 (2:1.5.2-1build1) ... +#6 56.82 Setting up libpython3.10-minimal:amd64 (3.10.12-1~22.04.9) ... +#6 56.86 Setting up libjsoncpp25:amd64 (1.9.5-3) ... +#6 56.88 Setting up pkg-config (0.29.2-1ubuntu3) ... +#6 56.93 Setting up fonts-dejavu-core (2.37-2build1) ... +#6 57.06 Setting up ucf (3.0043) ... +#6 57.15 Setting up python3-pip (22.0.2+dfsg-1ubuntu0.5) ... +#6 57.94 Setting up libjpeg-turbo8:amd64 (2.1.2-0ubuntu1) ... +#6 57.99 Setting up libgfortran5:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 58.01 Setting up libx265-199:amd64 (3.5-2) ... +#6 58.04 Setting up libwebp7:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 58.06 Setting up libubsan1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 58.09 Setting up libllvm14:amd64 (1:14.0.0-1ubuntu1.1) ... +#6 58.11 Setting up libvidstab1.1:amd64 (1.1.0-2) ... +#6 58.14 Setting up libva-drm2:amd64 (2.14.0-1) ... +#6 58.16 Setting up ocl-icd-libopencl1:amd64 (2.2.14-3) ... +#6 58.19 Setting up libasyncns0:amd64 (0.8-6build2) ... +#6 58.22 Setting up libvdpau1:amd64 (1.4-3build2) ... +#6 58.25 Setting up librhash0:amd64 (1.4.2-1ubuntu1) ... +#6 58.27 Setting up libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ... +#6 58.30 Setting up libxcb-randr0:amd64 (1.14-3ubuntu3) ... +#6 58.33 Setting up libasound2:amd64 (1.2.6.1-1ubuntu1) ... +#6 58.35 Setting up libzimg2:amd64 (3.0.3+ds1-1) ... +#6 58.38 Setting up libcurl4:amd64 (7.81.0-1ubuntu1.20) ... +#6 58.40 Setting up libopenjp2-7:amd64 (2.4.0-6ubuntu0.3) ... +#6 58.43 Setting up git-man (1:2.34.1-1ubuntu1.12) ... +#6 58.45 Setting up libopenal-data (1:1.19.1-2build3) ... +#6 58.49 Setting up libthai-data (0.1.29-1build1) ... +#6 58.51 Setting up libvpx7:amd64 (1.11.0-2ubuntu2.3) ... +#6 58.54 Setting up cmake-data (3.22.1-1ubuntu1.22.04.2) ... +#6 58.59 Setting up curl (7.81.0-1ubuntu1.20) ... +#6 58.61 Setting up libwayland-egl1:amd64 (1.20.0-1ubuntu0.1) ... +#6 58.64 Setting up libxss1:amd64 (1:1.2.3-1build2) ... +#6 58.66 Setting up libusb-1.0-0:amd64 (2:1.0.25-1ubuntu2) ... +#6 58.69 Setting up libdav1d5:amd64 (0.9.2-1) ... +#6 58.71 Setting up libmfx1:amd64 (22.3.0-1) ... +#6 58.74 Setting up libsamplerate0:amd64 (0.2.2-1build1) ... +#6 58.77 Setting up libva-x11-2:amd64 (2.14.0-1) ... +#6 58.79 Setting up libwebpmux3:amd64 (1.2.2-2ubuntu0.22.04.2) ... +#6 58.82 Setting up libomp-14-dev (1:14.0.0-1ubuntu1.1) ... +#6 58.84 Setting up libcc1-0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 58.87 Setting up libzvbi-common (0.2.35-19) ... +#6 58.89 Setting up liblsan0:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 58.92 Setting up libmp3lame0:amd64 (3.100-3build2) ... +#6 58.94 Setting up libitm1:amd64 (12.3.0-1ubuntu1~22.04) ... +#6 58.97 Setting up libvorbisenc2:amd64 (1.3.7-1build2) ... +#6 58.99 Setting up libomp-dev:amd64 (1:14.0-55~exp2) ... +#6 59.02 Setting up libiec61883-0:amd64 (1.2.0-4build3) ... +#6 59.04 Setting up libserd-0-0:amd64 (0.30.10-2) ... +#6 59.07 Setting up libxkbcommon0:amd64 (1.4.0-1) ... +#6 59.09 Setting up libwayland-client0:amd64 (1.20.0-1ubuntu0.1) ... +#6 59.12 Setting up libjpeg8:amd64 (8c-2ubuntu10) ... +#6 59.15 Setting up libavc1394-0:amd64 (0.5.4-5build2) ... +#6 59.17 Setting up libzvbi0:amd64 (0.2.35-19) ... +#6 59.20 Setting up liblapack3:amd64 (3.10.0-2ubuntu1) ... +#6 59.22 update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#6 59.23 Setting up libopenblas0-pthread:amd64 (0.3.20+ds-1) ... +#6 59.25 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode +#6 59.25 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode +#6 59.26 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode +#6 59.27 Setting up libzmq5:amd64 (4.3.4-2) ... +#6 59.30 Setting up libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ... +#6 59.32 Setting up libgbm1:amd64 (23.2.1-1ubuntu3.1~22.04.3) ... +#6 59.35 Setting up libsoxr0:amd64 (0.1.3-4build2) ... +#6 59.37 Setting up libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ... +#6 59.40 Setting up fontconfig-config (2.13.1-4.2ubuntu5) ... +#6 59.76 Setting up libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ... +#6 59.79 Setting up python3.10-minimal (3.10.12-1~22.04.9) ... +#6 60.21 Setting up libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 60.23 Setting up libpython3.10-stdlib:amd64 (3.10.12-1~22.04.9) ... +#6 60.26 Setting up libthai0:amd64 (0.1.29-1build1) ... +#6 60.29 Setting up libvorbisfile3:amd64 (1.3.7-1build2) ... +#6 60.31 Setting up libfreetype6:amd64 (2.11.1+dfsg-1ubuntu0.3) ... +#6 60.34 Setting up libdc1394-25:amd64 (2.2.6-4) ... +#6 60.37 Setting up libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 60.39 Setting up git (1:2.34.1-1ubuntu1.12) ... +#6 60.43 Setting up librubberband2:amd64 (2.0.0-2) ... +#6 60.46 Setting up libsndio7.0:amd64 (1.8.1-1.1) ... +#6 60.49 Setting up libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ... +#6 60.51 Setting up libflite1:amd64 (2.2-3) ... +#6 60.54 Setting up libopenblas0:amd64 (0.3.20+ds-1) ... +#6 60.59 Setting up libsord-0-0:amd64 (0.16.8-2) ... +#6 60.62 Setting up libwayland-cursor0:amd64 (1.20.0-1ubuntu0.1) ... +#6 60.64 Setting up libsratom-0-0:amd64 (0.6.8-1) ... +#6 60.67 Setting up libdecor-0-0:amd64 (0.1.0-3build1) ... +#6 60.70 Setting up cmake (3.22.1-1ubuntu1.22.04.2) ... +#6 60.72 Setting up libharfbuzz0b:amd64 (2.7.4-1ubuntu3.2) ... +#6 60.75 Setting up libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 60.78 Setting up libtiff5:amd64 (4.3.0-6ubuntu0.10) ... +#6 60.80 Setting up libfontconfig1:amd64 (2.13.1-4.2ubuntu5) ... +#6 60.83 Setting up libsndfile1:amd64 (1.0.31-2ubuntu0.2) ... +#6 60.86 Setting up libbluray2:amd64 (1:1.3.1-1) ... +#6 60.88 Setting up liblilv-0-0:amd64 (0.24.12-2) ... +#6 60.91 Setting up libopenmpt0:amd64 (0.6.1-1) ... +#6 60.94 Setting up libopenblas-pthread-dev:amd64 (0.3.20+ds-1) ... +#6 60.96 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode +#6 60.97 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode +#6 60.97 update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode +#6 60.99 Setting up libpython3.10:amd64 (3.10.12-1~22.04.9) ... +#6 61.02 Setting up fontconfig (2.13.1-4.2ubuntu5) ... +#6 61.04 Regenerating fonts cache... done. +#6 63.06 Setting up python3.10 (3.10.12-1~22.04.9) ... +#6 63.55 Setting up libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2.2) ... +#6 63.60 Setting up libpango-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 63.62 Setting up libopenal1:amd64 (1:1.19.1-2build3) ... +#6 63.65 Setting up libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 63.68 Setting up libcairo2:amd64 (1.16.0-5ubuntu2) ... +#6 63.71 Setting up libopenblas-dev:amd64 (0.3.20+ds-1) ... +#6 63.74 Setting up libass9:amd64 (1:0.15.2-1) ... +#6 63.76 Setting up libpython3.10-dev:amd64 (3.10.12-1~22.04.9) ... +#6 63.79 Setting up python3.10-dev (3.10.12-1~22.04.9) ... +#6 63.81 Setting up libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ... +#6 63.82 Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.8+dfsg-1ubuntu0.3) ... +#6 63.86 Setting up libcairo-gobject2:amd64 (1.16.0-5ubuntu2) ... +#6 63.88 Setting up libpangoft2-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 63.89 Setting up libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ... +#6 63.91 Setting up libpangocairo-1.0-0:amd64 (1.50.6+ds-2ubuntu1) ... +#6 63.94 Setting up python3.10-venv (3.10.12-1~22.04.9) ... +#6 64.00 Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ... +#6 64.02 Setting up librsvg2-2:amd64 (2.52.5+dfsg-3ubuntu0.2) ... +#6 64.05 Setting up libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ... +#6 64.07 Setting up libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 64.10 Setting up libchromaprint1:amd64 (1.5.1-2) ... +#6 64.12 Setting up libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 64.15 Setting up libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 64.17 Setting up libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ... +#6 64.19 Setting up ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ... +#6 64.22 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#6 64.60 Requirement already satisfied: pip in /usr/lib/python3/dist-packages (22.0.2) +#6 70.08 Collecting pip +#6 70.42 Downloading pip-25.1.1-py3-none-any.whl (1.8 MB) +#6 70.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 4.8 MB/s eta 0:00:00 +#6 70.81 Requirement already satisfied: wheel in /usr/lib/python3/dist-packages (0.37.1) +#6 70.92 Collecting wheel +#6 70.98 Downloading wheel-0.45.1-py3-none-any.whl (72 kB) +#6 71.00 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 72.5/72.5 KB 5.7 MB/s eta 0:00:00 +#6 71.00 Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (59.6.0) +#6 71.41 Collecting setuptools +#6 71.47 Downloading setuptools-80.7.1-py3-none-any.whl (1.2 MB) +#6 71.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 10.6 MB/s eta 0:00:00 +#6 71.68 Installing collected packages: wheel, setuptools, pip +#6 71.68 Attempting uninstall: wheel +#6 71.68 Found existing installation: wheel 0.37.1 +#6 71.68 Not uninstalling wheel at /usr/lib/python3/dist-packages, outside environment /usr +#6 71.68 Can't uninstall 'wheel'. No files were found to uninstall. +#6 71.73 Attempting uninstall: setuptools +#6 71.73 Found existing installation: setuptools 59.6.0 +#6 71.73 Not uninstalling setuptools at /usr/lib/python3/dist-packages, outside environment /usr +#6 71.73 Can't uninstall 'setuptools'. No files were found to uninstall. +#6 72.23 Attempting uninstall: pip +#6 72.23 Found existing installation: pip 22.0.2 +#6 72.23 Not uninstalling pip at /usr/lib/python3/dist-packages, outside environment /usr +#6 72.23 Can't uninstall 'pip'. No files were found to uninstall. +#6 72.82 Successfully installed pip-25.1.1 setuptools-80.7.1 wheel-0.45.1 +#6 72.82 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv +#6 78.85 Collecting cmake==3.20.2 +#6 79.24 Downloading cmake-3.20.2-py2.py3-none-manylinux1_x86_64.whl.metadata (5.8 kB) +#6 79.33 Downloading cmake-3.20.2-py2.py3-none-manylinux1_x86_64.whl (19.4 MB) +#6 81.50 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 19.4/19.4 MB 9.9 MB/s eta 0:00:00 +#6 81.55 Installing collected packages: cmake +#6 82.24 Successfully installed cmake-3.20.2 +#6 DONE 83.0s + +#7 [ 4/18] RUN python3 --version && pip3 --version && cmake --version +#7 0.288 Python 3.10.12 +#7 0.419 pip 25.1.1 from /usr/local/lib/python3.10/dist-packages/pip (python 3.10) +#7 0.460 cmake version 3.20.2 +#7 0.460 +#7 0.460 CMake suite maintained and supported by Kitware (kitware.com/cmake). +#7 DONE 0.5s + +#8 [ 5/18] RUN echo "Checkout PyTorch Version: v2.0.1" && git clone --depth 1 --recursive --branch v2.0.1 https://github.com/pytorch/pytorch.git /pytorch && true +#8 0.297 Checkout PyTorch Version: v2.0.1 +#8 0.298 Cloning into '/pytorch'... +#8 17.35 Note: switching to 'e9ebda29d87ce0916ab08c06ab26fd3766a870e5'. +#8 17.35 +#8 17.35 You are in 'detached HEAD' state. You can look around, make experimental +#8 17.35 changes and commit them, and you can discard any commits you make in this +#8 17.35 state without impacting any branches by switching back to a branch. +#8 17.35 +#8 17.35 If you want to create a new branch to retain commits you create, you may +#8 17.35 do so (now or later) by using -c with the switch command. Example: +#8 17.35 +#8 17.35 git switch -c +#8 17.35 +#8 17.35 Or undo this operation with: +#8 17.35 +#8 17.35 git switch - +#8 17.35 +#8 17.35 Turn off this advice by setting config variable advice.detachedHead to false +#8 17.35 +#8 18.36 Updating files: 60% (7182/11881) Updating files: 61% (7248/11881) Updating files: 62% (7367/11881) Updating files: 63% (7486/11881) Updating files: 64% (7604/11881) Updating files: 65% (7723/11881) Updating files: 66% (7842/11881) Updating files: 67% (7961/11881) Updating files: 68% (8080/11881) Updating files: 69% (8198/11881) Updating files: 70% (8317/11881) Updating files: 71% (8436/11881) Updating files: 72% (8555/11881) Updating files: 73% (8674/11881) Updating files: 74% (8792/11881) Updating files: 75% (8911/11881) Updating files: 76% (9030/11881) Updating files: 77% (9149/11881) Updating files: 78% (9268/11881) Updating files: 79% (9386/11881) Updating files: 80% (9505/11881) Updating files: 81% (9624/11881) Updating files: 82% (9743/11881) Updating files: 83% (9862/11881) Updating files: 84% (9981/11881) Updating files: 85% (10099/11881) Updating files: 86% (10218/11881) Updating files: 87% (10337/11881) Updating files: 88% (10456/11881) Updating files: 89% (10575/11881) Updating files: 90% (10693/11881) Updating files: 91% (10812/11881) Updating files: 92% (10931/11881) Updating files: 93% (11050/11881) Updating files: 94% (11169/11881) Updating files: 95% (11287/11881) Updating files: 96% (11406/11881) Updating files: 97% (11525/11881) Updating files: 98% (11644/11881) Updating files: 99% (11763/11881) Updating files: 100% (11881/11881) Updating files: 100% (11881/11881), done. +#8 18.82 Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' +#8 18.82 Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' +#8 18.82 Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' +#8 18.82 Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' +#8 18.82 Submodule 'third_party/QNNPACK' (https://github.com/pytorch/QNNPACK) registered for path 'third_party/QNNPACK' +#8 18.82 Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' +#8 18.82 Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' +#8 18.82 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' +#8 18.82 Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' +#8 18.82 Submodule 'third_party/cub' (https://github.com/NVlabs/cub.git) registered for path 'third_party/cub' +#8 18.82 Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' +#8 18.82 Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' +#8 18.82 Submodule 'third_party/eigen' (https://gitlab.com/libeigen/eigen.git) registered for path 'third_party/eigen' +#8 18.82 Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' +#8 18.82 Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' +#8 18.82 Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' +#8 18.82 Submodule 'third_party/foxi' (https://github.com/houseroad/foxi.git) registered for path 'third_party/foxi' +#8 18.82 Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' +#8 18.82 Submodule 'third_party/gloo' (https://github.com/facebookincubator/gloo) registered for path 'third_party/gloo' +#8 18.83 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' +#8 18.83 Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' +#8 18.83 Submodule 'third_party/ios-cmake' (https://github.com/Yangqing/ios-cmake.git) registered for path 'third_party/ios-cmake' +#8 18.83 Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' +#8 18.83 Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' +#8 18.83 Submodule 'third_party/nccl/nccl' (https://github.com/NVIDIA/nccl) registered for path 'third_party/nccl/nccl' +#8 18.83 Submodule 'third_party/neon2sse' (https://github.com/intel/ARM_NEON_2_x86_SSE.git) registered for path 'third_party/neon2sse' +#8 18.83 Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' +#8 18.83 Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' +#8 18.83 Submodule 'third_party/onnx-tensorrt' (https://github.com/onnx/onnx-tensorrt) registered for path 'third_party/onnx-tensorrt' +#8 18.83 Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' +#8 18.83 Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' +#8 18.83 Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' +#8 18.83 Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' +#8 18.83 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' +#8 18.83 Submodule 'third_party/python-enum' (https://github.com/PeachPy/enum34.git) registered for path 'third_party/python-enum' +#8 18.83 Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' +#8 18.83 Submodule 'third_party/python-six' (https://github.com/benjaminp/six.git) registered for path 'third_party/python-six' +#8 18.83 Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' +#8 18.83 Submodule 'third_party/tbb' (https://github.com/01org/tbb) registered for path 'third_party/tbb' +#8 18.83 Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' +#8 18.83 Submodule 'third_party/zstd' (https://github.com/facebook/zstd.git) registered for path 'third_party/zstd' +#8 18.84 Cloning into '/pytorch/android/libs/fbjni'... +#8 25.04 Cloning into '/pytorch/third_party/FP16'... +#8 31.00 Cloning into '/pytorch/third_party/FXdiv'... +#8 36.93 Cloning into '/pytorch/third_party/NNPACK'... +#8 43.10 Cloning into '/pytorch/third_party/QNNPACK'... +#8 49.20 Cloning into '/pytorch/third_party/VulkanMemoryAllocator'... +#8 58.83 Cloning into '/pytorch/third_party/XNNPACK'... +#8 95.54 Cloning into '/pytorch/third_party/benchmark'... +#8 101.9 Cloning into '/pytorch/third_party/cpuinfo'... +#8 108.7 Cloning into '/pytorch/third_party/cub'... +#8 116.7 Cloning into '/pytorch/third_party/cudnn_frontend'... +#8 126.3 Cloning into '/pytorch/third_party/cutlass'... +#8 138.7 Cloning into '/pytorch/third_party/eigen'... +#8 156.1 Cloning into '/pytorch/third_party/fbgemm'... +#8 163.9 Cloning into '/pytorch/third_party/flatbuffers'... +#8 172.5 Cloning into '/pytorch/third_party/fmt'... +#8 180.6 Cloning into '/pytorch/third_party/foxi'... +#8 186.5 Cloning into '/pytorch/third_party/gemmlowp/gemmlowp'... +#8 193.2 Cloning into '/pytorch/third_party/gloo'... +#8 199.5 Cloning into '/pytorch/third_party/googletest'... +#8 207.4 Cloning into '/pytorch/third_party/ideep'... +#8 213.6 Cloning into '/pytorch/third_party/ios-cmake'... +#8 219.5 Cloning into '/pytorch/third_party/ittapi'... +#8 225.7 Cloning into '/pytorch/third_party/kineto'... +#8 237.1 Cloning into '/pytorch/third_party/nccl/nccl'... +#8 243.7 Cloning into '/pytorch/third_party/neon2sse'... +#8 249.9 Cloning into '/pytorch/third_party/nlohmann'... +#8 274.9 Cloning into '/pytorch/third_party/onnx'... +#8 286.2 Cloning into '/pytorch/third_party/onnx-tensorrt'... +#8 292.8 Cloning into '/pytorch/third_party/pocketfft'... +#8 298.9 Cloning into '/pytorch/third_party/protobuf'... +#8 324.0 Cloning into '/pytorch/third_party/psimd'... +#8 329.9 Cloning into '/pytorch/third_party/pthreadpool'... +#8 335.9 Cloning into '/pytorch/third_party/pybind11'... +#8 343.2 Cloning into '/pytorch/third_party/python-enum'... +#8 349.1 Cloning into '/pytorch/third_party/python-peachpy'... +#8 355.3 Cloning into '/pytorch/third_party/python-six'... +#8 361.5 Cloning into '/pytorch/third_party/sleef'... +#8 368.7 Cloning into '/pytorch/third_party/tbb'... +#8 375.7 Cloning into '/pytorch/third_party/tensorpipe'... +#8 382.1 Cloning into '/pytorch/third_party/zstd'... +#8 392.5 Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' +#8 392.5 Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' +#8 392.5 Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' +#8 392.5 Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' +#8 392.6 Submodule path 'third_party/QNNPACK': checked out '7d2a4e9931a82adc3814275b6219a03e24e36b4c' +#8 392.6 Submodule path 'third_party/VulkanMemoryAllocator': checked out 'a6bfc237255a6bac1513f7c1ebde6d8aed6b5191' +#8 393.6 Submodule path 'third_party/XNNPACK': checked out '51a987591a6fc9f0fc0707077f53d763ac132cbf' +#8 393.6 Submodule path 'third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' +#8 393.7 Submodule path 'third_party/cpuinfo': checked out '8ec7bd91ad0470e61cf38f618cc1f270dede599c' +#8 393.8 Submodule path 'third_party/cub': checked out 'd106ddb991a56c3df1b6d51b2409e36ba8181ce4' +#8 394.1 Submodule path 'third_party/cudnn_frontend': checked out '81a041a68245cd8f871c43bbbbd5b6b627979a30' +#8 394.7 Submodule path 'third_party/cutlass': checked out 'b72cbf957df8cf84a6d0ff91c190ad51a9c1d24a' +#8 407.5 From https://gitlab.com/libeigen/eigen +#8 407.5 * branch 3147391d946bb4b6c68edd901f2add6ac1f31f8c -> FETCH_HEAD +#8 407.7 Submodule path 'third_party/eigen': checked out '3147391d946bb4b6c68edd901f2add6ac1f31f8c' +#8 407.8 Submodule path 'third_party/fbgemm': checked out '03b2046676707da64504e898490ab46104d4682a' +#8 407.8 Submodule 'third_party/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/third_party/asmjit' +#8 407.8 Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/third_party/cpuinfo' +#8 407.8 Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/fbgemm/third_party/cutlass' +#8 407.8 Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/third_party/googletest' +#8 407.8 Submodule 'third_party/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/third_party/hipify_torch' +#8 407.8 Cloning into '/pytorch/third_party/fbgemm/third_party/asmjit'... +#8 415.2 Cloning into '/pytorch/third_party/fbgemm/third_party/cpuinfo'... +#8 422.0 Cloning into '/pytorch/third_party/fbgemm/third_party/cutlass'... +#8 433.5 Cloning into '/pytorch/third_party/fbgemm/third_party/googletest'... +#8 441.5 Cloning into '/pytorch/third_party/fbgemm/third_party/hipify_torch'... +#8 447.7 Submodule path 'third_party/fbgemm/third_party/asmjit': checked out 'd3fbf7c9bc7c1d1365a94a45614b91c5a3706b81' +#8 447.8 Submodule path 'third_party/fbgemm/third_party/cpuinfo': checked out 'ed8b86a253800bafdb7b25c5c399f91bff9cb1f3' +#8 448.3 Submodule path 'third_party/fbgemm/third_party/cutlass': checked out 'fc9ebc645b63f3a6bc80aaefde5c063fb72110d6' +#8 448.4 Submodule path 'third_party/fbgemm/third_party/googletest': checked out 'cbf019de22c8dd37b2108da35b2748fd702d1796' +#8 448.4 Submodule path 'third_party/fbgemm/third_party/hipify_torch': checked out '1840658c184f3eeba787dae0f06c45756c1daaf5' +#8 448.5 Submodule path 'third_party/flatbuffers': checked out 'd0cede9c90c5257537c293517a21376408b549fa' +#8 448.6 Submodule path 'third_party/fmt': checked out 'a33701196adfad74917046096bf5a2aa0ab0bb50' +#8 448.6 Submodule path 'third_party/foxi': checked out 'c278588e34e535f0bb8f00df3880d26928038cad' +#8 448.7 Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' +#8 448.7 Submodule path 'third_party/gloo': checked out '10909297fedab0a680799211a299203e53515032' +#8 448.8 Submodule path 'third_party/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' +#8 460.6 From https://github.com/intel/ideep +#8 460.6 * branch 7bc3e12f7c0cad7fb24f8d4ab63dcd467ffa60c7 -> FETCH_HEAD +#8 460.6 Submodule path 'third_party/ideep': checked out '7bc3e12f7c0cad7fb24f8d4ab63dcd467ffa60c7' +#8 460.6 Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' +#8 460.6 Cloning into '/pytorch/third_party/ideep/mkl-dnn'... +#8 494.5 From https://github.com/intel/mkl-dnn +#8 494.5 * branch 6dbeffbae1f23cbbeae17adb7b5b13f1f37c080e -> FETCH_HEAD +#8 495.0 Submodule path 'third_party/ideep/mkl-dnn': checked out '6dbeffbae1f23cbbeae17adb7b5b13f1f37c080e' +#8 495.1 Submodule path 'third_party/ios-cmake': checked out '8abaed637d56f1337d6e1d2c4026e25c1eade724' +#8 495.1 Submodule path 'third_party/ittapi': checked out '5b8a7d7422611c3a0d799fb5fc5dd4abfae35b42' +#8 495.2 Submodule path 'third_party/kineto': checked out '2da532c91dee9dc36cccc6088206daa1b69e3966' +#8 495.2 Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' +#8 495.2 Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' +#8 495.2 Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' +#8 495.2 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog'... +#8 501.9 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/fmt'... +#8 510.1 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/googletest'... +#8 518.3 Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' +#8 518.3 Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' +#8 518.3 Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' +#8 518.3 Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' +#8 518.3 Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' +#8 518.3 Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' +#8 518.3 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' +#8 518.3 Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' +#8 518.3 Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' +#8 518.3 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... +#8 526.3 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... +#8 532.6 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... +#8 540.6 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... +#8 547.1 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... +#8 553.5 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... +#8 561.5 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... +#8 587.8 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... +#8 594.2 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' +#8 594.2 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' +#8 594.3 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' +#8 594.3 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' +#8 594.3 Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' +#8 594.3 Cloning into '/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... +#8 600.5 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' +#8 600.6 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' +#8 612.2 From https://github.com/google/googletest +#8 612.2 * branch 58d77fa8070e8cec2dc1ed015d66b454c8d78850 -> FETCH_HEAD +#8 612.3 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' +#8 612.4 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' +#8 612.4 Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' +#8 612.5 Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '2591ab91c3898c9f6544fff04660276537d32ffd' +#8 612.5 Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' +#8 612.6 Submodule path 'third_party/nccl/nccl': checked out 'f89fd4777d2ef9229c039ff750ae21da01626f52' +#8 612.6 Submodule path 'third_party/neon2sse': checked out '97a126f08ce318023be604d03f88bf0820a9464a' +#8 612.7 Submodule path 'third_party/nlohmann': checked out '87cda1d6646592ac5866dc703c8e1839046a6806' +#8 624.6 From https://github.com/onnx/onnx +#8 624.6 * branch e192ba01e438d22ca2dedd7956e28e3551626c91 -> FETCH_HEAD +#8 625.1 Submodule path 'third_party/onnx': checked out 'e192ba01e438d22ca2dedd7956e28e3551626c91' +#8 625.1 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx/third_party/benchmark' +#8 625.1 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' +#8 625.1 Cloning into '/pytorch/third_party/onnx/third_party/benchmark'... +#8 631.5 Cloning into '/pytorch/third_party/onnx/third_party/pybind11'... +#8 638.8 Submodule path 'third_party/onnx/third_party/benchmark': checked out '0d98dba29d66e93259db7daa53a9327df767a415' +#8 650.5 From https://github.com/pybind/pybind11 +#8 650.5 * branch 914c06fb252b6cc3727d0eedab6736e88a3fcb01 -> FETCH_HEAD +#8 650.6 Submodule path 'third_party/onnx/third_party/pybind11': checked out '914c06fb252b6cc3727d0eedab6736e88a3fcb01' +#8 650.6 Submodule path 'third_party/onnx-tensorrt': checked out 'c153211418a7c57ce071d9ce2a41f8d1c85a878f' +#8 650.6 Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx' +#8 650.6 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx'... +#8 660.9 Submodule path 'third_party/onnx-tensorrt/third_party/onnx': checked out '765f5ee823a67a866f4bd28a9860e81f3c811ce8' +#8 660.9 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark' +#8 660.9 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11' +#8 660.9 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark'... +#8 667.3 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11'... +#8 674.6 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/benchmark': checked out 'e776aa0275e293707b6a0901e0e8d8a8a3679508' +#8 674.6 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11': checked out 'a1041190c8b8ff0cd9e2f0752248ad5e3789ea0c' +#8 674.6 Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang' +#8 674.6 Cloning into '/pytorch/third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang'... +#8 692.3 From https://github.com/wjakob/clang-cindex-python3 +#8 692.3 * branch 6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5 -> FETCH_HEAD +#8 692.4 Submodule path 'third_party/onnx-tensorrt/third_party/onnx/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' +#8 692.4 Submodule path 'third_party/pocketfft': checked out 'ea778e37710c07723435b1be58235996d1d43a5a' +#8 692.7 Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' +#8 692.7 Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' +#8 692.7 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' +#8 692.7 Cloning into '/pytorch/third_party/protobuf/third_party/benchmark'... +#8 699.1 Cloning into '/pytorch/third_party/protobuf/third_party/googletest'... +#8 707.2 Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' +#8 707.3 Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' +#8 707.3 Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' +#8 707.4 Submodule path 'third_party/pthreadpool': checked out 'a134dd5d4cee80cce15db81a72e7f929d71dd413' +#8 719.1 From https://github.com/pybind/pybind11 +#8 719.1 * branch 80dc998efced8ceb2be59756668a7e90e8bef917 -> FETCH_HEAD +#8 719.1 Submodule path 'third_party/pybind11': checked out '80dc998efced8ceb2be59756668a7e90e8bef917' +#8 719.1 Submodule path 'third_party/python-enum': checked out '4cfedc426c4e2fc52e3f5c2b4297e15ed8d6b8c7' +#8 730.8 From https://github.com/malfet/PeachPy +#8 730.8 * branch f45429b087dd7d5bc78bb40dc7cf06425c252d67 -> FETCH_HEAD +#8 730.8 Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' +#8 730.8 Submodule path 'third_party/python-six': checked out '15e31431af97e5e64b80af0a3f598d382bcdd49a' +#8 730.9 Submodule path 'third_party/sleef': checked out 'e0a003ee838b75d11763aa9c3ef17bf71a725bff' +#8 743.3 From https://github.com/01org/tbb +#8 743.3 * branch a51a90bc609bb73db8ea13841b5cf7aa4344d4a9 -> FETCH_HEAD +#8 743.4 Submodule path 'third_party/tbb': checked out 'a51a90bc609bb73db8ea13841b5cf7aa4344d4a9' +#8 743.5 Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' +#8 743.5 Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' +#8 743.5 Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' +#8 743.5 Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' +#8 743.5 Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' +#8 743.5 Cloning into '/pytorch/third_party/tensorpipe/third_party/googletest'... +#8 751.3 Cloning into '/pytorch/third_party/tensorpipe/third_party/libnop'... +#8 757.3 Cloning into '/pytorch/third_party/tensorpipe/third_party/libuv'... +#8 765.1 Cloning into '/pytorch/third_party/tensorpipe/third_party/pybind11'... +#8 772.5 Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' +#8 772.5 Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' +#8 772.6 Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' +#8 784.5 From https://github.com/pybind/pybind11 +#8 784.5 * branch a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef -> FETCH_HEAD +#8 784.5 Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' +#8 784.5 Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' +#8 784.5 Cloning into '/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... +#8 802.1 From https://github.com/wjakob/clang-cindex-python3 +#8 802.1 * branch 6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5 -> FETCH_HEAD +#8 802.1 Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' +#8 802.3 Submodule path 'third_party/zstd': checked out 'aec56a52fbab207fc639a1937d1e708a282edca8' +#8 DONE 802.5s + +#9 [ 6/18] WORKDIR /pytorch +#9 DONE 0.1s + +#10 [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && echo "Installing PyTorch build requirements from requirements.txt..." && python3 -m pip install --break-system-packages -r requirements.txt && echo "Re-pinning NumPy to 1.23.5 after PyTorch requirements install..." && python3 -m pip install --break-system-packages "numpy==1.23.5" --force-reinstall && python3 -c "import numpy; print(f'NumPy version for PyTorch build: {numpy.__version__}')" && echo "Running amd_build.py..." && python3 tools/amd_build/build_amd.py && echo "Running setup.py bdist_wheel..." && python3 setup.py bdist_wheel && echo "Installing built PyTorch wheel..." && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true +#10 0.267 BUILDING PYTORCH v2.0.1 for gfx803 *** +#10 0.268 Python 3.10.12 +#10 0.384 Building wheel torch-2.0.0a0+gite9ebda2 +#10 0.451 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#10 0.451 !! +#10 0.451 +#10 0.451 ******************************************************************************** +#10 0.451 Please consider removing the following classifiers in favor of a SPDX license expression: +#10 0.451 +#10 0.451 License :: OSI Approved :: BSD License +#10 0.451 +#10 0.451 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#10 0.451 ******************************************************************************** +#10 0.451 +#10 0.451 !! +#10 0.451 self._finalize_license_expression() +#10 0.452 running clean +#10 0.716 Installing PyTorch build requirements from requirements.txt... +#10 6.404 Collecting astunparse (from -r requirements.txt (line 2)) +#10 6.720 Downloading astunparse-1.6.3-py2.py3-none-any.whl.metadata (4.4 kB) +#10 6.906 Collecting expecttest (from -r requirements.txt (line 3)) +#10 6.970 Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) +#10 7.544 Collecting hypothesis (from -r requirements.txt (line 4)) +#10 7.609 Downloading hypothesis-6.131.17-py3-none-any.whl.metadata (5.6 kB) +#10 7.897 Collecting numpy (from -r requirements.txt (line 5)) +#10 7.962 Downloading numpy-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB) +#10 8.220 Collecting psutil (from -r requirements.txt (line 6)) +#10 8.284 Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) +#10 8.421 Collecting pyyaml (from -r requirements.txt (line 7)) +#10 8.484 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.1 kB) +#10 8.600 Collecting requests (from -r requirements.txt (line 8)) +#10 8.662 Downloading requests-2.32.3-py3-none-any.whl.metadata (4.6 kB) +#10 8.674 Requirement already satisfied: setuptools in /usr/local/lib/python3.10/dist-packages (from -r requirements.txt (line 9)) (80.7.1) +#10 8.768 Collecting types-dataclasses (from -r requirements.txt (line 10)) +#10 8.832 Downloading types_dataclasses-0.6.6-py3-none-any.whl.metadata (1.3 kB) +#10 8.940 Collecting typing-extensions (from -r requirements.txt (line 11)) +#10 9.003 Downloading typing_extensions-4.13.2-py3-none-any.whl.metadata (3.0 kB) +#10 9.113 Collecting sympy (from -r requirements.txt (line 12)) +#10 9.181 Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) +#10 9.295 Collecting filelock (from -r requirements.txt (line 13)) +#10 9.359 Downloading filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) +#10 9.483 Collecting networkx (from -r requirements.txt (line 14)) +#10 9.546 Downloading networkx-3.4.2-py3-none-any.whl.metadata (6.3 kB) +#10 9.664 Collecting jinja2 (from -r requirements.txt (line 15)) +#10 9.726 Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) +#10 9.738 Requirement already satisfied: wheel<1.0,>=0.23.0 in /usr/local/lib/python3.10/dist-packages (from astunparse->-r requirements.txt (line 2)) (0.45.1) +#10 9.833 Collecting six<2.0,>=1.6.1 (from astunparse->-r requirements.txt (line 2)) +#10 9.895 Downloading six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) +#10 10.01 Collecting attrs>=22.2.0 (from hypothesis->-r requirements.txt (line 4)) +#10 10.07 Downloading attrs-25.3.0-py3-none-any.whl.metadata (10 kB) +#10 10.19 Collecting exceptiongroup>=1.0.0 (from hypothesis->-r requirements.txt (line 4)) +#10 10.25 Downloading exceptiongroup-1.3.0-py3-none-any.whl.metadata (6.7 kB) +#10 10.36 Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis->-r requirements.txt (line 4)) +#10 10.42 Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) +#10 10.61 Collecting charset-normalizer<4,>=2 (from requests->-r requirements.txt (line 8)) +#10 10.67 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (35 kB) +#10 10.79 Collecting idna<4,>=2.5 (from requests->-r requirements.txt (line 8)) +#10 10.85 Downloading idna-3.10-py3-none-any.whl.metadata (10 kB) +#10 10.97 Collecting urllib3<3,>=1.21.1 (from requests->-r requirements.txt (line 8)) +#10 11.03 Downloading urllib3-2.4.0-py3-none-any.whl.metadata (6.5 kB) +#10 11.14 Collecting certifi>=2017.4.17 (from requests->-r requirements.txt (line 8)) +#10 11.21 Downloading certifi-2025.4.26-py3-none-any.whl.metadata (2.5 kB) +#10 11.32 Collecting mpmath<1.4,>=1.1.0 (from sympy->-r requirements.txt (line 12)) +#10 11.39 Downloading mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) +#10 11.54 Collecting MarkupSafe>=2.0 (from jinja2->-r requirements.txt (line 15)) +#10 11.60 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB) +#10 11.68 Downloading astunparse-1.6.3-py2.py3-none-any.whl (12 kB) +#10 11.76 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#10 11.83 Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) +#10 11.90 Downloading hypothesis-6.131.17-py3-none-any.whl (502 kB) +#10 12.12 Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) +#10 12.20 Downloading numpy-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB) +#10 13.79 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 16.4/16.4 MB 10.3 MB/s eta 0:00:00 +#10 13.85 Downloading psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277 kB) +#10 13.95 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB) +#10 14.03 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 751.2/751.2 kB 9.0 MB/s eta 0:00:00 +#10 14.09 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#10 14.17 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149 kB) +#10 14.25 Downloading idna-3.10-py3-none-any.whl (70 kB) +#10 14.33 Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) +#10 14.41 Downloading types_dataclasses-0.6.6-py3-none-any.whl (2.9 kB) +#10 14.48 Downloading typing_extensions-4.13.2-py3-none-any.whl (45 kB) +#10 14.57 Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) +#10 15.15 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 11.0 MB/s eta 0:00:00 +#10 15.22 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#10 15.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 kB 7.4 MB/s eta 0:00:00 +#10 15.34 Downloading filelock-3.18.0-py3-none-any.whl (16 kB) +#10 15.41 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#10 15.57 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 10.5 MB/s eta 0:00:00 +#10 15.64 Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) +#10 15.72 Downloading attrs-25.3.0-py3-none-any.whl (63 kB) +#10 15.80 Downloading certifi-2025.4.26-py3-none-any.whl (159 kB) +#10 15.88 Downloading exceptiongroup-1.3.0-py3-none-any.whl (16 kB) +#10 15.96 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) +#10 16.07 Installing collected packages: types-dataclasses, sortedcontainers, mpmath, urllib3, typing-extensions, sympy, six, pyyaml, psutil, numpy, networkx, MarkupSafe, idna, filelock, expecttest, charset-normalizer, certifi, attrs, requests, jinja2, exceptiongroup, astunparse, hypothesis +#10 22.70 +#10 22.71 Successfully installed MarkupSafe-3.0.2 astunparse-1.6.3 attrs-25.3.0 certifi-2025.4.26 charset-normalizer-3.4.2 exceptiongroup-1.3.0 expecttest-0.3.0 filelock-3.18.0 hypothesis-6.131.17 idna-3.10 jinja2-3.1.6 mpmath-1.3.0 networkx-3.4.2 numpy-2.2.5 psutil-7.0.0 pyyaml-6.0.2 requests-2.32.3 six-1.17.0 sortedcontainers-2.4.0 sympy-1.14.0 types-dataclasses-0.6.6 typing-extensions-4.13.2 urllib3-2.4.0 +#10 22.85 Re-pinning NumPy to 1.23.5 after PyTorch requirements install... +#10 28.65 Collecting numpy==1.23.5 +#10 28.97 Downloading numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (2.3 kB) +#10 29.05 Downloading numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB) +#10 31.03 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/17.1 MB 9.3 MB/s eta 0:00:00 +#10 31.10 Installing collected packages: numpy +#10 31.10 Attempting uninstall: numpy +#10 31.10 Found existing installation: numpy 2.2.5 +#10 31.16 Uninstalling numpy-2.2.5: +#10 31.17 Successfully uninstalled numpy-2.2.5 +#10 32.57 Successfully installed numpy-1.23.5 +#10 32.72 NumPy version for PyTorch build: 1.23.5 +#10 32.74 Running amd_build.py... +#10 32.97 third_party/gloo/cmake/Hip.cmake skipped +#10 32.97 third_party/gloo/cmake/Modules/Findrccl.cmake updated +#10 32.97 third_party/gloo/cmake/Dependencies.cmake updated +#10 33.32 /pytorch/tools/autograd/templates/python_variable_methods.cpp -> /pytorch/tools/autograd/templates/python_variable_methods.cpp [ok] +#10 33.32 /pytorch/aten/src/ATen/native/quantized/cuda/FakeQuantizeCore.cu -> /pytorch/aten/src/ATen/native/quantized/hip/FakeQuantizeCore.hip [ok] +#10 33.32 /pytorch/aten/src/ATen/native/quantized/cuda/MakePerTensorQuantizedTensor.cu -> /pytorch/aten/src/ATen/native/quantized/hip/MakePerTensorQuantizedTensor.hip [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cuda/IntReprQuant.cu -> /pytorch/aten/src/ATen/native/quantized/hip/IntReprQuant.hip [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cuda/FusedObsFakeQuant.cu -> /pytorch/aten/src/ATen/native/quantized/hip/FusedObsFakeQuant.hip [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cuda/AffineQuantizer.cu -> /pytorch/aten/src/ATen/native/quantized/hip/AffineQuantizer.hip [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cuda/Activation.cu -> /pytorch/aten/src/ATen/native/quantized/hip/Activation.hip [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cuda/EmbeddingBag.cu -> /pytorch/aten/src/ATen/native/quantized/hip/EmbeddingBag.hip [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cuda/Activation.cpp -> /pytorch/aten/src/ATen/native/quantized/hip/Activation.cpp [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/Pooling.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Pooling.cpp [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/utils.h -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/utils.h [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/LinearUnpackImpl.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/LinearUnpackImpl.cpp [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/ConvPrepack.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/ConvPrepack.cpp [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/Linear.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Linear.cpp [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/LinearPrepack.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/LinearPrepack.cpp [ok] +#10 33.33 /pytorch/aten/src/ATen/native/quantized/cudnn/BinaryOps.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/BinaryOps.cpp [ok] +#10 33.34 /pytorch/aten/src/ATen/native/quantized/cudnn/ConvUnpackImpl.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/ConvUnpackImpl.cpp [ok] +#10 33.34 /pytorch/aten/src/ATen/native/quantized/cudnn/Conv.cpp -> /pytorch/aten/src/ATen/native/quantized/cudnn/hip/Conv.cpp [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/DilatedMaxPool3d.cu -> /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/Im2Col.cu -> /pytorch/aten/src/ATen/native/hip/Im2Col.hip [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/MaxMinElementwiseKernel.cu -> /pytorch/aten/src/ATen/native/hip/MaxMinElementwiseKernel.hip [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/UnaryOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryOpsKernel.hip [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/RangeFactories.cu -> /pytorch/aten/src/ATen/native/hip/RangeFactories.hip [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/jit_utils.h -> /pytorch/aten/src/ATen/native/hip/jit_utils.h [ok] +#10 33.34 /pytorch/aten/src/ATen/native/cuda/reduction_template.cuh -> /pytorch/aten/src/ATen/native/hip/reduction_template.cuh [ok] +#10 33.35 /pytorch/aten/src/ATen/native/cuda/jit_utils.cpp -> /pytorch/aten/src/ATen/native/hip/jit_utils.cpp [ok] +#10 33.35 /pytorch/aten/src/ATen/native/cuda/TensorShapeCUDA.cpp -> /pytorch/aten/src/ATen/native/hip/TensorShapeHIP.cpp [ok] +#10 33.35 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpScalarList.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip [ok] +#10 33.35 /pytorch/aten/src/ATen/native/cuda/UpSampleBilinear2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleBilinear2d.hip [ok] +#10 33.35 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest1d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest1d.hip [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/GridSampler.cu -> /pytorch/aten/src/ATen/native/hip/GridSampler.hip [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAcosKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAcosKernel.hip [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/ROCmLoops.cuh -> /pytorch/aten/src/ATen/native/hip/ROCmLoops.cuh [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/BinaryDivFloorKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivFloorKernel.hip [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/CumminmaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumminmaxKernel.hip [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/SortingCommon.cuh -> /pytorch/aten/src/ATen/native/hip/SortingCommon.cuh [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/ReplicationPadding.cu -> /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/GridSampler.cuh -> /pytorch/aten/src/ATen/native/hip/GridSampler.cuh [ok] +#10 33.36 /pytorch/aten/src/ATen/native/cuda/Copy.h -> /pytorch/aten/src/ATen/native/hip/Copy.h [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/Math.cuh -> /pytorch/aten/src/ATen/native/hip/Math.cuh [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/CuFFTUtils.h -> /pytorch/aten/src/ATen/native/hip/CuFFTUtils.h [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/KernelUtils.cuh -> /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/UniqueCub.cuh -> /pytorch/aten/src/ATen/native/hip/UniqueCub.cuh [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/Activation.h -> /pytorch/aten/src/ATen/native/hip/Activation.h [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/ReduceLogicKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceLogicKernel.hip [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/DistributionRandomKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionRandomKernel.hip [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/ActivationThresholdKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationThresholdKernel.hip [ok] +#10 33.37 /pytorch/aten/src/ATen/native/cuda/BinaryMiscOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMiscOpsKernels.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/modified_bessel_i0.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_i0.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/scaled_modified_bessel_k0.cu -> /pytorch/aten/src/ATen/native/hip/scaled_modified_bessel_k0.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.h -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.h [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/ActivationSiluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSiluKernel.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/AmpKernels.cu -> /pytorch/aten/src/ATen/native/hip/AmpKernels.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/UniqueCub.cu -> /pytorch/aten/src/ATen/native/hip/UniqueCub.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/GridSampler.h -> /pytorch/aten/src/ATen/native/hip/GridSampler.h [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/PowKernel.cu -> /pytorch/aten/src/ATen/native/hip/PowKernel.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/Normalization.cu -> /pytorch/aten/src/ATen/native/hip/Normalization.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/TensorTopK.cpp -> /pytorch/aten/src/ATen/native/hip/TensorTopK.cpp [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/ActivationLogSigmoidKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationLogSigmoidKernel.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/FractionalMaxPool2d.cu -> /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip [ok] +#10 33.38 /pytorch/aten/src/ATen/native/cuda/TriangularOps.cu -> /pytorch/aten/src/ATen/native/hip/TriangularOps.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/UpSampleTrilinear3d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleTrilinear3d.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/ValidateCompressedIndicesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ValidateCompressedIndicesKernel.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cpp -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.cpp [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/modified_bessel_k0.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_k0.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/FunctionOfAMatrixUtilsKernel.cu -> /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/fused_adamw_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adamw_impl.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/laguerre_polynomial_l.cu -> /pytorch/aten/src/ATen/native/hip/laguerre_polynomial_l.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/Distributions.cpp -> /pytorch/aten/src/ATen/native/hip/Distributions.cpp [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/TensorFactories.cu -> /pytorch/aten/src/ATen/native/hip/TensorFactories.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/UnaryLogKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryLogKernels.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/LogAddExpKernel.cu -> /pytorch/aten/src/ATen/native/hip/LogAddExpKernel.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/ReduceSumProdKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceSumProdKernel.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/NLLLoss2d.cu -> /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip [ok] +#10 33.39 /pytorch/aten/src/ATen/native/cuda/vol2col.cuh -> /pytorch/aten/src/ATen/native/hip/vol2col.cuh [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/SoftMax.cu -> /pytorch/aten/src/ATen/native/hip/SoftMax.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/CompareEQKernel.cu -> /pytorch/aten/src/ATen/native/hip/CompareEQKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/BinaryGeometricKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryGeometricKernels.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/BinaryRemainderKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryRemainderKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/Resize.cpp -> /pytorch/aten/src/ATen/native/hip/Resize.cpp [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/MultinomialKernel.cu -> /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/ScatterGatherKernel.cu -> /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/Sorting.cu -> /pytorch/aten/src/ATen/native/hip/Sorting.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAtanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAtanhKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAcoshKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAcoshKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/Bucketization.cu -> /pytorch/aten/src/ATen/native/hip/Bucketization.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_t.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_t.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/CumsumKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricCosKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricCosKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricTanKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricTanKernel.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/fused_adamw_amsgrad_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adamw_amsgrad_impl.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/SortImpl.cu -> /pytorch/aten/src/ATen/native/hip/SortImpl.hip [ok] +#10 33.40 /pytorch/aten/src/ATen/native/cuda/MemoryAccess.cuh -> /pytorch/aten/src/ATen/native/hip/MemoryAccess.cuh [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/SortStable.cu -> /pytorch/aten/src/ATen/native/hip/SortStable.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/Unique.cu -> /pytorch/aten/src/ATen/native/hip/Unique.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/ReduceArgMaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceArgMaxKernel.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/ActivationMishKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationMishKernel.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/Resize.h -> /pytorch/aten/src/ATen/native/hip/Resize.h [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/Shape.cu -> /pytorch/aten/src/ATen/native/hip/Shape.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_t.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_t.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/ReduceNormKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceNormKernel.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/Sort.cu -> /pytorch/aten/src/ATen/native/hip/Sort.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest3d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest3d.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/MultiTensorApply.cuh -> /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/ActivationHardshrinkKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardshrinkKernel.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/ActivationSoftplusKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSoftplusKernel.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/UpSampleBicubic2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleBicubic2d.hip [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/Sorting.h -> /pytorch/aten/src/ATen/native/hip/Sorting.h [ok] +#10 33.41 /pytorch/aten/src/ATen/native/cuda/TensorCompare.cpp -> /pytorch/aten/src/ATen/native/hip/TensorCompare.cpp [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/MaxUnpooling.cu -> /pytorch/aten/src/ATen/native/hip/MaxUnpooling.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/fused_adam_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adam_impl.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/LinearAlgebra.cu -> /pytorch/aten/src/ATen/native/hip/LinearAlgebra.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/ReduceMinValuesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMinValuesKernel.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/BinaryShiftOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryShiftOpsKernels.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/GcdLcmKernel.cu -> /pytorch/aten/src/ATen/native/hip/GcdLcmKernel.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/UnaryFractionKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryFractionKernels.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/BinaryMulKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/LaunchUtils.h -> /pytorch/aten/src/ATen/native/hip/LaunchUtils.h [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/spherical_bessel_j0.cu -> /pytorch/aten/src/ATen/native/hip/spherical_bessel_j0.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/airy_ai.cu -> /pytorch/aten/src/ATen/native/hip/airy_ai.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/modified_bessel_k1.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_k1.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_w.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_w.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/Sort.h -> /pytorch/aten/src/ATen/native/hip/Sort.h [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/ReduceMaxValuesKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMaxValuesKernel.hip [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/DeviceSqrt.cuh -> /pytorch/aten/src/ATen/native/hip/DeviceSqrt.cuh [ok] +#10 33.42 /pytorch/aten/src/ATen/native/cuda/Sorting.cpp -> /pytorch/aten/src/ATen/native/hip/Sorting.cpp [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/Indexing.cu -> /pytorch/aten/src/ATen/native/hip/Indexing.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/TensorCompare.cu -> /pytorch/aten/src/ATen/native/hip/TensorCompare.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_w.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_w.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/ActivationHardtanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardtanhKernel.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/ForeachReduceOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/Randperm.cuh -> /pytorch/aten/src/ATen/native/hip/Randperm.cuh [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/DepthwiseConv2d.cu -> /pytorch/aten/src/ATen/native/hip/DepthwiseConv2d.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/Nonzero.cu -> /pytorch/aten/src/ATen/native/hip/Nonzero.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/ActivationGeluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationGeluKernel.hip [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/CUDALoops.cuh -> /pytorch/aten/src/ATen/native/hip/HIPLoops.cuh [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/ScanKernels.h -> /pytorch/aten/src/ATen/native/hip/ScanKernels.h [ok] +#10 33.43 /pytorch/aten/src/ATen/native/cuda/BinaryBitwiseOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryBitwiseOpsKernels.hip [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/WeightNorm.cu -> /pytorch/aten/src/ATen/native/hip/WeightNorm.hip [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/LinearAlgebraStubs.cpp -> /pytorch/aten/src/ATen/native/hip/LinearAlgebraStubs.cpp [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/SegmentReduce.cu -> /pytorch/aten/src/ATen/native/hip/SegmentReduce.hip [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/SpectralOps.cpp -> /pytorch/aten/src/ATen/native/hip/SpectralOps.cpp [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/FusedAdamKernel.cu -> /pytorch/aten/src/ATen/native/hip/FusedAdamKernel.hip [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/SortingRadixSelect.cuh -> /pytorch/aten/src/ATen/native/hip/SortingRadixSelect.cuh [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/Reduce.cu -> /pytorch/aten/src/ATen/native/hip/Reduce.hip [ok] +#10 33.44 /pytorch/aten/src/ATen/native/cuda/EmbeddingBackwardKernel.cu -> /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/IGammaKernel.cu -> /pytorch/aten/src/ATen/native/hip/IGammaKernel.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/ReduceOps.h -> /pytorch/aten/src/ATen/native/hip/ReduceOps.h [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricTanhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricTanhKernel.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/UnaryGammaKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGammaKernels.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/ScanKernels.cpp -> /pytorch/aten/src/ATen/native/hip/ScanKernels.cpp [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/ForeachTernaryOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/DistributionUniform.cu -> /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cu -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/Reduce.cuh -> /pytorch/aten/src/ATen/native/hip/Reduce.cuh [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/TensorTopK.h -> /pytorch/aten/src/ATen/native/hip/TensorTopK.h [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/BinaryInternal.h -> /pytorch/aten/src/ATen/native/hip/BinaryInternal.h [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/FractionalMaxPool3d.cu -> /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpList.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/bessel_j0.cu -> /pytorch/aten/src/ATen/native/hip/bessel_j0.hip [ok] +#10 33.45 /pytorch/aten/src/ATen/native/cuda/CumprodKernel.cu -> /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/Copy.cu -> /pytorch/aten/src/ATen/native/hip/Copy.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling3d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveMaxPooling3d.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/ConvolutionMM2d.cu -> /pytorch/aten/src/ATen/native/hip/ConvolutionMM2d.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAtanKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAtanKernel.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/FusedAdamWKernel.cu -> /pytorch/aten/src/ATen/native/hip/FusedAdamWKernel.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/ReduceArgMinKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceArgMinKernel.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/TensorModeKernel.cuh -> /pytorch/aten/src/ATen/native/hip/TensorModeKernel.cuh [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/Distributions.h -> /pytorch/aten/src/ATen/native/hip/Distributions.h [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/CompareKernels.cu -> /pytorch/aten/src/ATen/native/hip/CompareKernels.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/UpSampleLinear1d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleLinear1d.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose3d.cu -> /pytorch/aten/src/ATen/native/hip/NaiveConvolutionTranspose3d.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/SpectralOps.cu -> /pytorch/aten/src/ATen/native/hip/SpectralOps.hip [ok] +#10 33.46 /pytorch/aten/src/ATen/native/cuda/SparseMM.cu -> /pytorch/aten/src/ATen/native/hip/SparseMM.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/BinaryMiscBackwardOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryMiscBackwardOpsKernels.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/LogcumsumexpKernel.cu -> /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/AveragePool3d.cu -> /pytorch/aten/src/ATen/native/hip/AveragePool3d.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/ForeachPointwiseOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_v.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_v.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/DistributionExponentialKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/UnarySignKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnarySignKernels.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_amsgrad_impl.cuh [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/Embedding.cu -> /pytorch/aten/src/ATen/native/hip/Embedding.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/Randperm.cu -> /pytorch/aten/src/ATen/native/hip/Randperm.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/StepKernel.cu -> /pytorch/aten/src/ATen/native/hip/StepKernel.hip [ok] +#10 33.47 /pytorch/aten/src/ATen/native/cuda/DilatedMaxPool2d.cu -> /pytorch/aten/src/ATen/native/hip/DilatedMaxPool2d.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/AveragePool2d.cu -> /pytorch/aten/src/ATen/native/hip/AveragePool2d.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/TensorTopK.cu -> /pytorch/aten/src/ATen/native/hip/TensorTopK.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/Equal.cpp -> /pytorch/aten/src/ATen/native/hip/Equal.cpp [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/LossCTC.cu -> /pytorch/aten/src/ATen/native/hip/LossCTC.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/ComplexKernel.cu -> /pytorch/aten/src/ATen/native/hip/ComplexKernel.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/Distributions.cu -> /pytorch/aten/src/ATen/native/hip/Distributions.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/block_reduce.cuh -> /pytorch/aten/src/ATen/native/hip/block_reduce.cuh [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/BinaryLogicalOpsKernels.cu -> /pytorch/aten/src/ATen/native/hip/BinaryLogicalOpsKernels.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/ScanUtils.cuh -> /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/ActivationHardswishKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardswishKernel.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/legendre_polynomial_p.cu -> /pytorch/aten/src/ATen/native/hip/legendre_polynomial_p.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/ActivationLeakyReluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationLeakyReluKernel.hip [ok] +#10 33.48 /pytorch/aten/src/ATen/native/cuda/Loops.cuh -> /pytorch/aten/src/ATen/native/hip/Loops.cuh [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/TensorTransformations.cu -> /pytorch/aten/src/ATen/native/hip/TensorTransformations.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/UnfoldBackwardKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnfoldBackwardKernel.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/DistributionCauchyKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionCauchyKernel.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/hermite_polynomial_he.cu -> /pytorch/aten/src/ATen/native/hip/hermite_polynomial_he.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/fused_adam_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_impl.cuh [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/DistributionBernoulli.cu -> /pytorch/aten/src/ATen/native/hip/DistributionBernoulli.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/IndexKernel.cpp -> /pytorch/aten/src/ATen/native/hip/IndexKernel.cpp [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/Sort.cpp -> /pytorch/aten/src/ATen/native/hip/Sort.cpp [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/DistributionGeometricKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionGeometricKernel.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/IndexKernel.cu -> /pytorch/aten/src/ATen/native/hip/IndexKernel.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/MiscUtils.h -> /pytorch/aten/src/ATen/native/hip/MiscUtils.h [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/Col2Im.cu -> /pytorch/aten/src/ATen/native/hip/Col2Im.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/SummaryOps.cu -> /pytorch/aten/src/ATen/native/hip/SummaryOps.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/bessel_j1.cu -> /pytorch/aten/src/ATen/native/hip/bessel_j1.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/Loss.cu -> /pytorch/aten/src/ATen/native/hip/Loss.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/SortUtils.cuh -> /pytorch/aten/src/ATen/native/hip/SortUtils.cuh [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/RreluWithNoise.cu -> /pytorch/aten/src/ATen/native/hip/RreluWithNoise.hip [ok] +#10 33.49 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_v.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_v.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/fused_adamw_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adamw_impl.cuh [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/ForeachFunctors.cuh -> /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/ActivationPreluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationPreluKernel.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/Pow.cuh -> /pytorch/aten/src/ATen/native/hip/Pow.cuh [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/chebyshev_polynomial_u.cu -> /pytorch/aten/src/ATen/native/hip/chebyshev_polynomial_u.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/bessel_y0.cu -> /pytorch/aten/src/ATen/native/hip/bessel_y0.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> /pytorch/aten/src/ATen/native/hip/ForeachMinMaxFunctors.cuh [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/AbsKernel.cu -> /pytorch/aten/src/ATen/native/hip/AbsKernel.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adamw_amsgrad_impl.cuh [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/ActivationGluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationGluKernel.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/RenormKernel.cu -> /pytorch/aten/src/ATen/native/hip/RenormKernel.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/UnarySpecialOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnarySpecialOpsKernel.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/CUDAScalar.cu -> /pytorch/aten/src/ATen/native/hip/HIPScalar.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/ForeachUnaryOp.cu -> /pytorch/aten/src/ATen/native/hip/ForeachUnaryOp.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/CopysignKernel.cu -> /pytorch/aten/src/ATen/native/hip/CopysignKernel.hip [ok] +#10 33.50 /pytorch/aten/src/ATen/native/cuda/ActivationHardsigmoidKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationHardsigmoidKernel.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/thread_constants.h -> /pytorch/aten/src/ATen/native/hip/thread_constants.h [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/EmbeddingBag.cu -> /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAsinKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAsinKernel.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/RNN.cu -> /pytorch/aten/src/ATen/native/hip/RNN.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/UpSampleNearest2d.cu -> /pytorch/aten/src/ATen/native/hip/UpSampleNearest2d.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/layer_norm_kernel.cu -> /pytorch/aten/src/ATen/native/hip/layer_norm_kernel.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/ActivationSoftshrinkKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationSoftshrinkKernel.hip [ok] +#10 33.51 /pytorch/aten/src/ATen/native/cuda/fused_adam_amsgrad_impl.cu -> /pytorch/aten/src/ATen/native/hip/fused_adam_amsgrad_impl.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/group_norm_kernel.cu -> /pytorch/aten/src/ATen/native/hip/group_norm_kernel.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricCoshKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricCoshKernel.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/ZetaKernel.cu -> /pytorch/aten/src/ATen/native/hip/ZetaKernel.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/Repeat.cu -> /pytorch/aten/src/ATen/native/hip/Repeat.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/MultiLabelMarginCriterion.cu -> /pytorch/aten/src/ATen/native/hip/MultiLabelMarginCriterion.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/UnaryComplexKernels.cu -> /pytorch/aten/src/ATen/native/hip/UnaryComplexKernels.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/ReduceMomentKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceMomentKernel.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/GridSampler.cpp -> /pytorch/aten/src/ATen/native/hip/GridSampler.cpp [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/modified_bessel_i1.cu -> /pytorch/aten/src/ATen/native/hip/modified_bessel_i1.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/fused_adam_utils.cuh -> /pytorch/aten/src/ATen/native/hip/fused_adam_utils.cuh [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/MultiMarginLoss.cu -> /pytorch/aten/src/ATen/native/hip/MultiMarginLoss.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/AdaptiveMaxPooling2d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveMaxPooling2d.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/ReflectionPad.cu -> /pytorch/aten/src/ATen/native/hip/ReflectionPad.hip [ok] +#10 33.52 /pytorch/aten/src/ATen/native/cuda/Activation.cpp -> /pytorch/aten/src/ATen/native/hip/Activation.cpp [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/Blas.cpp -> /pytorch/aten/src/ATen/native/hip/Blas.cpp [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/CUDAJitLoops.cuh -> /pytorch/aten/src/ATen/native/hip/HIPJitLoops.cuh [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/DepthwiseConv3d.cu -> /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/DistributionTemplates.h -> /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/bessel_y1.cu -> /pytorch/aten/src/ATen/native/hip/bessel_y1.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/ForeachBinaryOpScalar.cu -> /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/shifted_chebyshev_polynomial_u.cu -> /pytorch/aten/src/ATen/native/hip/shifted_chebyshev_polynomial_u.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricSinKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricSinKernel.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/DistributionNormal.cu -> /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/PointwiseOpsKernel.cu -> /pytorch/aten/src/ATen/native/hip/PointwiseOpsKernel.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricAsinhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricAsinhKernel.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/hermite_polynomial_h.cu -> /pytorch/aten/src/ATen/native/hip/hermite_polynomial_h.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/ReduceAMinMaxKernel.cu -> /pytorch/aten/src/ATen/native/hip/ReduceAMinMaxKernel.hip [ok] +#10 33.53 /pytorch/aten/src/ATen/native/cuda/ActivationEluKernel.cu -> /pytorch/aten/src/ATen/native/hip/ActivationEluKernel.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/AdaptiveAveragePooling3d.cu -> /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling3d.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/LegacyThrustHelpers.cu -> /pytorch/aten/src/ATen/native/hip/LegacyThrustHelpers.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/CuFFTPlanCache.h -> /pytorch/aten/src/ATen/native/hip/CuFFTPlanCache.h [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/NaiveConvolutionTranspose2d.cu -> /pytorch/aten/src/ATen/native/hip/NaiveConvolutionTranspose2d.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/ReduceOps.cpp -> /pytorch/aten/src/ATen/native/hip/ReduceOps.cpp [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/NaiveDilatedConvolution.cu -> /pytorch/aten/src/ATen/native/hip/NaiveDilatedConvolution.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/BinaryDivTrueKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/Dropout.cu -> /pytorch/aten/src/ATen/native/hip/Dropout.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/SortStable.h -> /pytorch/aten/src/ATen/native/hip/SortStable.h [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/UnaryGeometricSinhKernel.cu -> /pytorch/aten/src/ATen/native/hip/UnaryGeometricSinhKernel.hip [ok] +#10 33.54 /pytorch/aten/src/ATen/native/cuda/scaled_modified_bessel_k1.cu -> /pytorch/aten/src/ATen/native/hip/scaled_modified_bessel_k1.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/DistanceKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistanceKernel.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/UpSample.cuh -> /pytorch/aten/src/ATen/native/hip/UpSample.cuh [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/Lerp.cu -> /pytorch/aten/src/ATen/native/hip/Lerp.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/IndexKernel.h -> /pytorch/aten/src/ATen/native/hip/IndexKernel.h [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/DistributionLogNormalKernel.cu -> /pytorch/aten/src/ATen/native/hip/DistributionLogNormalKernel.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/FillKernel.cu -> /pytorch/aten/src/ATen/native/hip/FillKernel.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/CrossKernel.cu -> /pytorch/aten/src/ATen/native/hip/CrossKernel.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/RecordStream.cu -> /pytorch/aten/src/ATen/native/hip/RecordStream.hip [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/JitLoops.cuh -> /pytorch/aten/src/ATen/native/hip/JitLoops.cuh [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/im2col.cuh -> /pytorch/aten/src/ATen/native/hip/im2col.cuh [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/CompositeRandomAccessor.h -> /pytorch/aten/src/ATen/native/hip/CompositeRandomAccessor.h [ok] +#10 33.55 /pytorch/aten/src/ATen/native/cuda/SparseBinaryOpIntersectionKernel.cu -> /pytorch/aten/src/ATen/native/hip/SparseBinaryOpIntersectionKernel.hip [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/Normalization.cuh -> /pytorch/aten/src/ATen/native/hip/Normalization.cuh [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/BinaryDivTruncKernel.cu -> /pytorch/aten/src/ATen/native/hip/BinaryDivTruncKernel.hip [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/PersistentSoftmax.cuh -> /pytorch/aten/src/ATen/native/hip/PersistentSoftmax.cuh [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/linalg/MagmaUtils.h -> /pytorch/aten/src/ATen/native/hip/linalg/MagmaUtils.h [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/linalg/CUDASolver.h -> /pytorch/aten/src/ATen/native/hip/linalg/HIPSolver.h [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/linalg/CusolverDnHandlePool.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/CusolverDnHandlePool.cpp [ok] +#10 33.56 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebraLib.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebraLib.cpp [ok] +#10 33.57 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebra.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebra.cpp [ok] +#10 33.58 /pytorch/aten/src/ATen/native/cuda/linalg/CUDASolver.cpp -> /pytorch/aten/src/ATen/native/hip/linalg/HIPSolver.cpp [ok] +#10 33.58 /pytorch/aten/src/ATen/native/cuda/linalg/BatchLinearAlgebraLib.h -> /pytorch/aten/src/ATen/native/hip/linalg/BatchLinearAlgebraLib.h [ok] +#10 33.58 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorMatmul.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorMatmul.hip [ok] +#10 33.58 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorTransformerFunctions.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorTransformerFunctions.hip [ok] +#10 33.58 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorTransformerFunctions.cpp -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorTransformerFunctions.cpp [ok] +#10 33.58 /pytorch/aten/src/ATen/native/nested/cuda/NestedTensorBinaryOps.cu -> /pytorch/aten/src/ATen/native/nested/hip/NestedTensorBinaryOps.hip [ok] +#10 33.58 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensorMath.hip [ok] +#10 33.58 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCsrTensorMath.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseCsrTensorMath.hip [ok] +#10 33.58 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDAApplyUtils.cuh -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPApplyUtils.cuh [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SoftMax.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SoftMax.hip [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPBlas.cpp [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDABlas.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPBlas.h [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasImpl.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasImpl.h [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlas.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlas.cpp [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasLegacy.h -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasLegacy.h [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseMatMul.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseMatMul.hip [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasImpl.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasImpl.cpp [ok] +#10 33.59 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensorMath.cuh -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensorMath.cuh [ok] +#10 33.60 /pytorch/aten/src/ATen/native/sparse/cuda/SparseCUDATensor.cu -> /pytorch/aten/src/ATen/native/sparse/hip/SparseHIPTensor.hip [ok] +#10 33.60 /pytorch/aten/src/ATen/native/sparse/cuda/SparseBlasLegacy.cpp -> /pytorch/aten/src/ATen/native/sparse/hip/SparseBlasLegacy.cpp [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/attention_backward.cu -> /pytorch/aten/src/ATen/native/transformers/hip/attention_backward.hip [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/sdp_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/sdp_utils.h [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/attention.cu -> /pytorch/aten/src/ATen/native/transformers/hip/attention.hip [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/mask.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/mask.h [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/kernel_traits.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/kernel_traits.h [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim64.hip [ok] +#10 33.60 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_kernel.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_kernel.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/utils.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim32.hip [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/gmem_tile.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/gmem_tile.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/philox.cuh -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/philox.cuh [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_launch_template.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_launch_template.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fprop_kernel_1xN.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fprop_kernel_1xN.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_hdim128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_hdim128.hip [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_api.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_api.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/static_switch.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/static_switch.h [ok] +#10 33.61 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/softmax.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/softmax.h [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/smem_tile.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/smem_tile.h [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim128.hip [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_dgrad_kernel_1xN_loop.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_dgrad_kernel_1xN_loop.h [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_fwd_launch_template.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_fwd_launch_template.h [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim32.hip [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/gemm.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/gemm.h [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_bwd_hdim64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_bwd_hdim64.hip [ok] +#10 33.62 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_utils.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/flash_attn/fmha_api.cpp -> /pytorch/aten/src/ATen/native/transformers/hip/flash_attn/fmha_api.cpp [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/mma_from_smem.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/mma_from_smem.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernel_forward.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/debug_utils.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_thread_apply_logsumexp.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_thread_apply_logsumexp.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_pipelined.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_pipelined.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/mma_simt_tile_iterator_residual.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/mma_simt_tile_iterator_residual.h [ok] +#10 33.63 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/find_default_mma.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/find_default_mma.h [ok] +#10 33.64 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm_kernel_utils.h [ok] +#10 33.64 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernel_backward.h [ok] +#10 33.64 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/epilogue_rescale_output.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/epilogue_rescale_output.h [ok] +#10 33.64 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/attention_scaling_coefs_updater.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/attention_scaling_coefs_updater.h [ok] +#10 33.64 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/iterators/make_residual_last.h [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned_k128.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_k64.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f32.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned_k64.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f32_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f32_aligned.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned_k128.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f16.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned_k128.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_f16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_f16_aligned.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_k128.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_aligned_k64.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_k128.hip [ok] +#10 33.65 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f16_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f16_k64.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_k128.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_k128.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_bf16.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_bf16.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_bf16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_bf16_aligned.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/forward_bf16_aligned.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/forward_bf16_aligned.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_aligned_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_aligned_k64.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/kernels/backward_f32_k64.cu -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/kernels/backward_f32_k64.hip [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_pipelined.h [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_base.h [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma_multistage.h [ok] +#10 33.66 /pytorch/aten/src/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> /pytorch/aten/src/ATen/native/transformers/hip/mem_eff_attention/gemm/custom_mma.h [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/RNN.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/RNN.cpp [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/Macros.h -> /pytorch/aten/src/ATen/native/cudnn/hip/Macros.h [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/BatchNorm.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/BatchNorm.cpp [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/Conv_v7.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/Conv_v7.cpp [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/AffineGridGenerator.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/AffineGridGenerator.cpp [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/RNNUtils.h -> /pytorch/aten/src/ATen/native/cudnn/hip/RNNUtils.h [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/ConvShared.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvShared.cpp [ok] +#10 33.67 /pytorch/aten/src/ATen/native/cudnn/ConvShared.h -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvShared.h [ok] +#10 33.68 /pytorch/aten/src/ATen/native/cudnn/Conv_v8.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/Conv_v8.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/native/cudnn/ConvPlaceholders.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/ConvPlaceholders.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/native/cudnn/GridSampler.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/GridSampler.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/native/cudnn/LossCTC.cpp -> /pytorch/aten/src/ATen/native/cudnn/hip/LossCTC.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CUDAGraphsUtils.cuh -> /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/llvm_basic.cpp -> /pytorch/aten/src/ATen/hip/llvm_basic.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/jiterator.cu -> /pytorch/aten/src/ATen/hip/jiterator.hip [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/ThrustAllocator.h -> /pytorch/aten/src/ATen/hip/ThrustAllocator.h [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CUDADataType.h -> /pytorch/aten/src/ATen/hip/HIPDataType.h [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/Atomic.cuh -> /pytorch/aten/src/ATen/hip/Atomic.cuh [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CUDAUtils.h -> /pytorch/aten/src/ATen/hip/HIPUtils.h [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/jiterator_impl.h -> /pytorch/aten/src/ATen/hip/jiterator_impl.h [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CachingHostAllocator.cpp -> /pytorch/aten/src/ATen/hip/CachingHostAllocator.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CUDASparseBlas.h -> /pytorch/aten/src/ATen/hip/HIPSparseBlas.h [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CuSparseHandlePool.cpp -> /pytorch/aten/src/ATen/hip/CuSparseHandlePool.cpp [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/CUDAContext.h -> /pytorch/aten/src/ATen/hip/HIPContext.h [ok] +#10 33.68 /pytorch/aten/src/ATen/cuda/DeviceUtils.cuh -> /pytorch/aten/src/ATen/hip/DeviceUtils.cuh [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CUDASparseBlas.cpp -> /pytorch/aten/src/ATen/hip/HIPSparseBlas.cpp [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/llvm_complex.cpp -> /pytorch/aten/src/ATen/hip/llvm_complex.cpp [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CublasHandlePool.cpp -> /pytorch/aten/src/ATen/hip/CublasHandlePool.cpp [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.cpp -> /pytorch/aten/src/ATen/hip/PinnedMemoryAllocator.cpp [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/Sleep.h -> /pytorch/aten/src/ATen/hip/Sleep.h [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/AsmUtils.cuh -> /pytorch/aten/src/ATen/hip/AsmUtils.cuh [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CUDABlas.h -> /pytorch/aten/src/ATen/hip/HIPBlas.h [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/cub-RadixSortKeys.cu -> /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/cub-RadixSortPairs.cu -> /pytorch/aten/src/ATen/hip/cub-RadixSortPairs.hip [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/llvm_jit_strings.h -> /pytorch/aten/src/ATen/hip/llvm_jit_strings.h [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CUDAGraph.cpp -> /pytorch/aten/src/ATen/hip/HIPGraph.cpp [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/EmptyTensor.cpp -> /pytorch/aten/src/ATen/hip/EmptyTensor.cpp [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CUDATensorMethods.cuh -> /pytorch/aten/src/ATen/hip/HIPTensorMethods.cuh [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/ApplyGridUtils.cuh -> /pytorch/aten/src/ATen/hip/ApplyGridUtils.cuh [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CachingHostAllocator.h -> /pytorch/aten/src/ATen/hip/CachingHostAllocator.h [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/NumericLimits.cuh -> /pytorch/aten/src/ATen/hip/NumericLimits.cuh [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CUDAGraph.h -> /pytorch/aten/src/ATen/hip/HIPGraph.h [ok] +#10 33.69 /pytorch/aten/src/ATen/cuda/CUDAContext.cpp -> /pytorch/aten/src/ATen/hip/HIPContext.cpp [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/ScanUtils.cuh -> /pytorch/aten/src/ATen/hip/ScanUtils.cuh [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/cub.h -> /pytorch/aten/src/ATen/hip/cub.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/cub.cu -> /pytorch/aten/src/ATen/hip/cub.hip [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/Sleep.cu -> /pytorch/aten/src/ATen/hip/Sleep.hip [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/PeerToPeerAccess.cpp -> /pytorch/aten/src/ATen/hip/PeerToPeerAccess.cpp [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/PeerToPeerAccess.h -> /pytorch/aten/src/ATen/hip/PeerToPeerAccess.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/CUDASparse.h -> /pytorch/aten/src/ATen/hip/HIPSparse.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/CUDABlas.cpp -> /pytorch/aten/src/ATen/hip/HIPBlas.cpp [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/ATenCUDAGeneral.h -> /pytorch/aten/src/ATen/hip/ATenHIPGeneral.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/cub_definitions.cuh -> /pytorch/aten/src/ATen/hip/cub_definitions.cuh [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/CUDAGeneratorImpl.cpp -> /pytorch/aten/src/ATen/hip/HIPGeneratorImpl.cpp [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/CUDAGeneratorImpl.h -> /pytorch/aten/src/ATen/hip/HIPGeneratorImpl.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/EmptyTensor.h -> /pytorch/aten/src/ATen/hip/EmptyTensor.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/Exceptions.cpp -> /pytorch/aten/src/ATen/hip/Exceptions.cpp [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/Exceptions.h -> /pytorch/aten/src/ATen/hip/Exceptions.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/PinnedMemoryAllocator.h -> /pytorch/aten/src/ATen/hip/PinnedMemoryAllocator.h [ok] +#10 33.70 /pytorch/aten/src/ATen/cuda/CUDASparseDescriptors.cpp -> /pytorch/aten/src/ATen/hip/HIPSparseDescriptors.cpp [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/CUDASparseDescriptors.h -> /pytorch/aten/src/ATen/hip/HIPSparseDescriptors.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/CUDAEvent.h -> /pytorch/aten/src/ATen/hip/HIPEvent.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/jiterator.h -> /pytorch/aten/src/ATen/hip/jiterator.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/cub.cuh -> /pytorch/aten/src/ATen/hip/cub.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/CUDAConfig.h.in -> /pytorch/aten/src/ATen/hip/HIPConfig.h.in [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/CUDADevice.h -> /pytorch/aten/src/ATen/hip/HIPDevice.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/CUDAApplyUtils.cuh -> /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/OffsetCalculator.cuh -> /pytorch/aten/src/ATen/hip/detail/OffsetCalculator.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/CUDAHooks.h -> /pytorch/aten/src/ATen/hip/detail/HIPHooks.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/LazyNVRTC.cpp -> /pytorch/aten/src/ATen/hip/detail/LazyNVRTC.cpp [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/TensorInfo.cuh -> /pytorch/aten/src/ATen/hip/detail/TensorInfo.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/DeviceThreadHandles.h -> /pytorch/aten/src/ATen/hip/detail/DeviceThreadHandles.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/IndexUtils.cu -> /pytorch/aten/src/ATen/hip/detail/IndexUtils.hip [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/CUDAHooks.cpp -> /pytorch/aten/src/ATen/hip/detail/HIPHooks.cpp [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> /pytorch/aten/src/ATen/hip/detail/PhiloxCudaStateRaw.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/IndexUtils.cuh -> /pytorch/aten/src/ATen/hip/detail/IndexUtils.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/IntegerDivider.cuh -> /pytorch/aten/src/ATen/hip/detail/IntegerDivider.cuh [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/KernelUtils.h -> /pytorch/aten/src/ATen/hip/detail/KernelUtils.h [ok] +#10 33.71 /pytorch/aten/src/ATen/cuda/detail/LazyNVRTC.h -> /pytorch/aten/src/ATen/hip/detail/LazyNVRTC.h [ok] +#10 33.72 /pytorch/aten/src/ATen/cuda/detail/UnpackRaw.cuh -> /pytorch/aten/src/ATen/hip/detail/UnpackRaw.cuh [ok] +#10 33.72 /pytorch/aten/src/ATen/cuda/nvrtc_stub/ATenNVRTC.h -> /pytorch/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h [ok] +#10 33.72 /pytorch/aten/src/ATen/cuda/nvrtc_stub/ATenNVRTC.cpp -> /pytorch/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_apply_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_apply_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cpu_caching_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_caching_allocator_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_half_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_half_test.hip [ok] +#10 33.72 /pytorch/aten/src/ATen/test/operators_test.cpp -> /pytorch/aten/src/ATen/test/hip/operators_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_complex_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_complex_test.hip [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_device_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_device_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/Dict_test.cpp -> /pytorch/aten/src/ATen/test/hip/Dict_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/scalar_test.cpp -> /pytorch/aten/src/ATen/test/hip/scalar_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_generator_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_generator_test.hip [ok] +#10 33.72 /pytorch/aten/src/ATen/test/type_test.cpp -> /pytorch/aten/src/ATen/test/hip/type_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_atomic_ops_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_atomic_ops_test.hip [ok] +#10 33.72 /pytorch/aten/src/ATen/test/dlconvertor_test.cpp -> /pytorch/aten/src/ATen/test/hip/dlconvertor_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/test_thread_pool_guard.cpp -> /pytorch/aten/src/ATen/test/hip/test_thread_pool_guard.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/test_assert.h -> /pytorch/aten/src/ATen/test/hip/test_assert.h [ok] +#10 33.72 /pytorch/aten/src/ATen/test/half_test.cpp -> /pytorch/aten/src/ATen/test/hip/half_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/extension_backend_test.cpp -> /pytorch/aten/src/ATen/test/hip/extension_backend_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/cuda_dlconvertor_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_dlconvertor_test.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/verify_api_visibility.cpp -> /pytorch/aten/src/ATen/test/hip/verify_api_visibility.cpp [ok] +#10 33.72 /pytorch/aten/src/ATen/test/tensor_interop_test.cpp -> /pytorch/aten/src/ATen/test/hip/tensor_interop_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/cuda_tensor_interop_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_tensor_interop_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/variant_test.cpp -> /pytorch/aten/src/ATen/test/hip/variant_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/memory_format_test.cpp -> /pytorch/aten/src/ATen/test/hip/memory_format_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/cuda_cudnn_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_cudnn_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/cuda_reportMemoryUsage_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_reportMemoryUsage_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/operator_name_test.cpp -> /pytorch/aten/src/ATen/test/hip/operator_name_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/vulkan_quantized_api_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_quantized_api_test.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/vitals.cpp -> /pytorch/aten/src/ATen/test/hip/vitals.cpp [ok] +#10 33.73 /pytorch/aten/src/ATen/test/xla_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/xla_tensor_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/stride_properties_test.cpp -> /pytorch/aten/src/ATen/test/hip/stride_properties_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/rng_test.h -> /pytorch/aten/src/ATen/test/hip/rng_test.h [ok] +#10 33.74 /pytorch/aten/src/ATen/test/memory_overlapping_test.cpp -> /pytorch/aten/src/ATen/test/hip/memory_overlapping_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/mps_test_print.cpp -> /pytorch/aten/src/ATen/test/hip/mps_test_print.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/legacy_vmap_test.cpp -> /pytorch/aten/src/ATen/test/hip/legacy_vmap_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/reduce_ops_test.cpp -> /pytorch/aten/src/ATen/test/hip/reduce_ops_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/wrapdim_test.cpp -> /pytorch/aten/src/ATen/test/hip/wrapdim_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/reportMemoryUsage_test.cpp -> /pytorch/aten/src/ATen/test/hip/reportMemoryUsage_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/reportMemoryUsage.h -> /pytorch/aten/src/ATen/test/hip/reportMemoryUsage.h [ok] +#10 33.74 /pytorch/aten/src/ATen/test/cuda_caching_host_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_caching_host_allocator_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/pow_test.cpp -> /pytorch/aten/src/ATen/test/hip/pow_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/cuda_cub_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_cub_test.hip [ok] +#10 33.74 /pytorch/aten/src/ATen/test/packedtensoraccessor_test.cpp -> /pytorch/aten/src/ATen/test/hip/packedtensoraccessor_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/quantized_test.cpp -> /pytorch/aten/src/ATen/test/hip/quantized_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/weakref_test.cpp -> /pytorch/aten/src/ATen/test/hip/weakref_test.cpp [ok] +#10 33.74 /pytorch/aten/src/ATen/test/Dimname_test.cpp -> /pytorch/aten/src/ATen/test/hip/Dimname_test.cpp [ok] +#10 33.75 /pytorch/aten/src/ATen/test/apply_utils_test.cpp -> /pytorch/aten/src/ATen/test/hip/apply_utils_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/vulkan_api_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_api_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/cuda_complex_math_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_complex_math_test.hip [ok] +#10 33.76 /pytorch/aten/src/ATen/test/math_kernel_test.cpp -> /pytorch/aten/src/ATen/test/hip/math_kernel_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/NamedTensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/NamedTensor_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/atest.cpp -> /pytorch/aten/src/ATen/test/hip/atest.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/cpu_profiling_allocator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_profiling_allocator_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/broadcast_test.cpp -> /pytorch/aten/src/ATen/test/hip/broadcast_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/type_ptr_test.cpp -> /pytorch/aten/src/ATen/test/hip/type_ptr_test.cpp [ok] +#10 33.76 /pytorch/aten/src/ATen/test/vulkan_perf_test.cpp -> /pytorch/aten/src/ATen/test/hip/vulkan_perf_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/tensor_iterator_test.cpp -> /pytorch/aten/src/ATen/test/hip/tensor_iterator_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/cuda_stream_test.cpp -> /pytorch/aten/src/ATen/test/hip/hip_stream_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/cuda_vectorized_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_vectorized_test.hip [ok] +#10 33.77 /pytorch/aten/src/ATen/test/xnnpack_test.cpp -> /pytorch/aten/src/ATen/test/hip/xnnpack_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/dispatch_key_set_test.cpp -> /pytorch/aten/src/ATen/test/hip/dispatch_key_set_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/native_test.cpp -> /pytorch/aten/src/ATen/test/hip/native_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/thread_init_test.cpp -> /pytorch/aten/src/ATen/test/hip/thread_init_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/test_parallel.cpp -> /pytorch/aten/src/ATen/test/hip/test_parallel.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/cpu_generator_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_generator_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/cuda_optional_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_optional_test.hip [ok] +#10 33.77 /pytorch/aten/src/ATen/test/scalar_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/scalar_tensor_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/mobile_memory_cleanup.cpp -> /pytorch/aten/src/ATen/test/hip/mobile_memory_cleanup.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/undefined_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/undefined_tensor_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/cpu_rng_test.cpp -> /pytorch/aten/src/ATen/test/hip/cpu_rng_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/lazy_tensor_test.cpp -> /pytorch/aten/src/ATen/test/hip/lazy_tensor_test.cpp [ok] +#10 33.77 /pytorch/aten/src/ATen/test/ExclusivelyOwned_test.cpp -> /pytorch/aten/src/ATen/test/hip/ExclusivelyOwned_test.cpp [ok] +#10 33.78 /pytorch/aten/src/ATen/test/vec_test_all_types.h -> /pytorch/aten/src/ATen/test/hip/vec_test_all_types.h [ok] +#10 33.78 /pytorch/aten/src/ATen/test/MaybeOwned_test.cpp -> /pytorch/aten/src/ATen/test/hip/MaybeOwned_test.cpp [ok] +#10 33.78 /pytorch/aten/src/ATen/test/vec_test_all_types.cpp -> /pytorch/aten/src/ATen/test/hip/vec_test_all_types.cpp [ok] +#10 33.78 /pytorch/aten/src/ATen/test/cuda_distributions_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_distributions_test.hip [ok] +#10 33.78 /pytorch/aten/src/ATen/test/ivalue_test.cpp -> /pytorch/aten/src/ATen/test/hip/ivalue_test.cpp [ok] +#10 33.79 /pytorch/aten/src/ATen/test/cuda_integer_divider_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_integer_divider_test.hip [ok] +#10 33.79 /pytorch/aten/src/ATen/test/basic.cpp -> /pytorch/aten/src/ATen/test/hip/basic.cpp [ok] +#10 33.79 /pytorch/aten/src/ATen/test/mps_test_allocator.cpp -> /pytorch/aten/src/ATen/test/hip/mps_test_allocator.cpp [ok] +#10 33.79 /pytorch/aten/src/ATen/test/cuda_packedtensoraccessor_test.cu -> /pytorch/aten/src/ATen/test/hip/hip_packedtensoraccessor_test.hip [ok] +#10 33.79 /pytorch/aten/src/ATen/test/test_install/main.cpp -> /pytorch/aten/src/ATen/test/test_install/hip/main.cpp [ok] +#10 33.79 /pytorch/aten/src/THC/THCAtomics.cuh -> /pytorch/aten/src/THH/THHAtomics.cuh [ok] +#10 33.79 /pytorch/aten/src/THC/THCDeviceUtils.cuh -> /pytorch/aten/src/THH/THHDeviceUtils.cuh [ok] +#10 33.79 /pytorch/aten/src/THC/CMakeLists.txt -> /pytorch/aten/src/THH/CMakeLists.txt [ok] +#10 33.79 /pytorch/binaries/print_core_object_sizes_gpu.cc -> /pytorch/binaries/hip/print_core_object_sizes_gpu.cc [ok] +#10 33.79 /pytorch/binaries/core_overhead_benchmark_gpu.cc -> /pytorch/binaries/hip/core_overhead_benchmark_gpu.cc [ok] +#10 33.79 /pytorch/binaries/inspect_gpu.cc -> /pytorch/binaries/hip/inspect_gpu.cc [ok] +#10 33.79 /pytorch/torch/custom_class_detail.h -> /pytorch/torch/custom_class_detail.h [skipped, already hipified] +#10 33.79 /pytorch/torch/library.h -> /pytorch/torch/library.h [skipped, already hipified] +#10 33.79 /pytorch/torch/extension.h -> /pytorch/torch/extension.h [skipped, already hipified] +#10 33.79 /pytorch/torch/script.h -> /pytorch/torch/script.h [skipped, already hipified] +#10 33.79 /pytorch/torch/custom_class.h -> /pytorch/torch/custom_class.h [skipped, already hipified] +#10 33.79 /pytorch/torch/abi-check.cpp -> /pytorch/torch/abi-check.cpp [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/QScheme.h -> /pytorch/torch/csrc/QScheme.h [skipped, already hipified] +#10 33.79 /pytorch/torch/csrc/DataLoader.h -> /pytorch/torch/csrc/DataLoader.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/Layout.h -> /pytorch/torch/csrc/Layout.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/utils.h -> /pytorch/torch/csrc/utils.h [ok] +#10 33.80 /pytorch/torch/csrc/Stream.cpp -> /pytorch/torch/csrc/Stream.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/python_headers.h -> /pytorch/torch/csrc/python_headers.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/CudaIPCTypes.cpp -> /pytorch/torch/csrc/CudaIPCTypes.cpp [ok] +#10 33.80 /pytorch/torch/csrc/Size.h -> /pytorch/torch/csrc/Size.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/TypeInfo.cpp -> /pytorch/torch/csrc/TypeInfo.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/python_dimname.cpp -> /pytorch/torch/csrc/python_dimname.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/Export.h -> /pytorch/torch/csrc/Export.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/serialization.h -> /pytorch/torch/csrc/serialization.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/copy_utils.h -> /pytorch/torch/csrc/copy_utils.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/empty.c -> /pytorch/torch/csrc/empty.c [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/Device.h -> /pytorch/torch/csrc/Device.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/Generator.h -> /pytorch/torch/csrc/Generator.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/utils.cpp -> /pytorch/torch/csrc/utils.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/StorageMethods.cpp -> /pytorch/torch/csrc/StorageMethods.cpp [ok] +#10 33.80 /pytorch/torch/csrc/MemoryFormat.h -> /pytorch/torch/csrc/MemoryFormat.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/itt.cpp -> /pytorch/torch/csrc/itt.cpp [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/CudaIPCTypes.h -> /pytorch/torch/csrc/CudaIPCTypes.h [ok] +#10 33.80 /pytorch/torch/csrc/StorageMethods.h -> /pytorch/torch/csrc/StorageMethods.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/itt_wrapper.h -> /pytorch/torch/csrc/itt_wrapper.h [skipped, already hipified] +#10 33.80 /pytorch/torch/csrc/PyInterpreter.cpp -> /pytorch/torch/csrc/PyInterpreter.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Module.cpp -> /pytorch/torch/csrc/Module.cpp [ok] +#10 33.81 /pytorch/torch/csrc/TypeInfo.h -> /pytorch/torch/csrc/TypeInfo.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/MemoryFormat.cpp -> /pytorch/torch/csrc/MemoryFormat.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/THP.h -> /pytorch/torch/csrc/THP.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/PyInterpreter.h -> /pytorch/torch/csrc/PyInterpreter.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Storage.h -> /pytorch/torch/csrc/Storage.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Stream.h -> /pytorch/torch/csrc/Stream.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/PythonTypes.h -> /pytorch/torch/csrc/PythonTypes.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/StorageSharing.h -> /pytorch/torch/csrc/StorageSharing.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/stub.c -> /pytorch/torch/csrc/stub.c [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/DynamicTypes.cpp -> /pytorch/torch/csrc/DynamicTypes.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/DynamicTypes.h -> /pytorch/torch/csrc/DynamicTypes.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/THConcat.h -> /pytorch/torch/csrc/THConcat.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Size.cpp -> /pytorch/torch/csrc/Size.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Types.h -> /pytorch/torch/csrc/Types.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/StorageSharing.cpp -> /pytorch/torch/csrc/StorageSharing.cpp [ok] +#10 33.81 /pytorch/torch/csrc/Layout.cpp -> /pytorch/torch/csrc/Layout.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Exceptions.cpp -> /pytorch/torch/csrc/Exceptions.cpp [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/Exceptions.h -> /pytorch/torch/csrc/Exceptions.h [skipped, already hipified] +#10 33.81 /pytorch/torch/csrc/stub_with_flatbuffer.c -> /pytorch/torch/csrc/stub_with_flatbuffer.c [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/Device.cpp -> /pytorch/torch/csrc/Device.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/itt_wrapper.cpp -> /pytorch/torch/csrc/itt_wrapper.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/serialization.cpp -> /pytorch/torch/csrc/serialization.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/Dtype.h -> /pytorch/torch/csrc/Dtype.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/Module.h -> /pytorch/torch/csrc/Module.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/DataLoader.cpp -> /pytorch/torch/csrc/DataLoader.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/init_flatbuffer_module.cpp -> /pytorch/torch/csrc/init_flatbuffer_module.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/Dtype.cpp -> /pytorch/torch/csrc/Dtype.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/QScheme.cpp -> /pytorch/torch/csrc/QScheme.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/python_dimname.h -> /pytorch/torch/csrc/python_dimname.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/Storage.cpp -> /pytorch/torch/csrc/Storage.cpp [ok] +#10 33.82 /pytorch/torch/csrc/Generator.cpp -> /pytorch/torch/csrc/Generator.cpp [ok] +#10 33.82 /pytorch/torch/csrc/onnx/init.h -> /pytorch/torch/csrc/onnx/init.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/onnx/onnx.h -> /pytorch/torch/csrc/onnx/onnx.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/onnx/init.cpp -> /pytorch/torch/csrc/onnx/init.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/onnx/diagnostics/diagnostics.h -> /pytorch/torch/csrc/onnx/diagnostics/diagnostics.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/onnx/diagnostics/generated/rules.h -> /pytorch/torch/csrc/onnx/diagnostics/generated/rules.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/multiprocessing/init.h -> /pytorch/torch/csrc/multiprocessing/init.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/multiprocessing/init.cpp -> /pytorch/torch/csrc/multiprocessing/init.cpp [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/lazy/core/thread_pool.h -> /pytorch/torch/csrc/lazy/core/thread_pool.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/lazy/core/ir_metadata.h -> /pytorch/torch/csrc/lazy/core/ir_metadata.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/lazy/core/trie.h -> /pytorch/torch/csrc/lazy/core/trie.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/lazy/core/helpers.h -> /pytorch/torch/csrc/lazy/core/helpers.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/lazy/core/ir_dump_util.h -> /pytorch/torch/csrc/lazy/core/ir_dump_util.h [skipped, already hipified] +#10 33.82 /pytorch/torch/csrc/lazy/core/tensor.h -> /pytorch/torch/csrc/lazy/core/tensor.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/metrics.h -> /pytorch/torch/csrc/lazy/core/metrics.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/config.h -> /pytorch/torch/csrc/lazy/core/config.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/ir_util.h -> /pytorch/torch/csrc/lazy/core/ir_util.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/unique.h -> /pytorch/torch/csrc/lazy/core/unique.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/shape_inference.cpp -> /pytorch/torch/csrc/lazy/core/shape_inference.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/ir.h -> /pytorch/torch/csrc/lazy/core/ir.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/util.h -> /pytorch/torch/csrc/lazy/core/util.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/shape.cpp -> /pytorch/torch/csrc/lazy/core/shape.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/permutation_util.h -> /pytorch/torch/csrc/lazy/core/permutation_util.h [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/permutation_util.cpp -> /pytorch/torch/csrc/lazy/core/permutation_util.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/lazy_graph_executor.cpp -> /pytorch/torch/csrc/lazy/core/lazy_graph_executor.cpp [skipped, already hipified] +#10 33.83 /pytorch/torch/csrc/lazy/core/tensor_util.cpp -> /pytorch/torch/csrc/lazy/core/tensor_util.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/tensor.cpp -> /pytorch/torch/csrc/lazy/core/tensor.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/tensor_impl.cpp -> /pytorch/torch/csrc/lazy/core/tensor_impl.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/multi_wait.cpp -> /pytorch/torch/csrc/lazy/core/multi_wait.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/hash.h -> /pytorch/torch/csrc/lazy/core/hash.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/shape_inference.h -> /pytorch/torch/csrc/lazy/core/shape_inference.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/multi_wait.h -> /pytorch/torch/csrc/lazy/core/multi_wait.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/tensor_impl.h -> /pytorch/torch/csrc/lazy/core/tensor_impl.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/metrics.cpp -> /pytorch/torch/csrc/lazy/core/metrics.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/helpers.cpp -> /pytorch/torch/csrc/lazy/core/helpers.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/trie.cpp -> /pytorch/torch/csrc/lazy/core/trie.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/debug_util.h -> /pytorch/torch/csrc/lazy/core/debug_util.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/config.cpp -> /pytorch/torch/csrc/lazy/core/config.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/tensor_util.h -> /pytorch/torch/csrc/lazy/core/tensor_util.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/shape.h -> /pytorch/torch/csrc/lazy/core/shape.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/debug_util.cpp -> /pytorch/torch/csrc/lazy/core/debug_util.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/ir_builder.h -> /pytorch/torch/csrc/lazy/core/ir_builder.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/ir.cpp -> /pytorch/torch/csrc/lazy/core/ir.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/cache.h -> /pytorch/torch/csrc/lazy/core/cache.h [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/ir_dump_util.cpp -> /pytorch/torch/csrc/lazy/core/ir_dump_util.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/thread_pool.cpp -> /pytorch/torch/csrc/lazy/core/thread_pool.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/ir_util.cpp -> /pytorch/torch/csrc/lazy/core/ir_util.cpp [skipped, already hipified] +#10 33.84 /pytorch/torch/csrc/lazy/core/hash.cpp -> /pytorch/torch/csrc/lazy/core/hash.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/lazy_graph_executor.h -> /pytorch/torch/csrc/lazy/core/lazy_graph_executor.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/dynamic_ir.h -> /pytorch/torch/csrc/lazy/core/dynamic_ir.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/ir_metadata.cpp -> /pytorch/torch/csrc/lazy/core/ir_metadata.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/ops/utils.h -> /pytorch/torch/csrc/lazy/core/ops/utils.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/ops/utils.cpp -> /pytorch/torch/csrc/lazy/core/ops/utils.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp -> /pytorch/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> /pytorch/torch/csrc/lazy/core/internal_ops/ltc_ops.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_node.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_node.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_native_functions.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_native_functions.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/config.h -> /pytorch/torch/csrc/lazy/ts_backend/config.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_node.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_node.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.cpp -> /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp -> /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/config.cpp -> /pytorch/torch/csrc/lazy/ts_backend/config.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/ir_builder.h -> /pytorch/torch/csrc/lazy/ts_backend/ir_builder.h [skipped, already hipified] +#10 33.85 /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> /pytorch/torch/csrc/lazy/ts_backend/tensor_aten_ops.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.h -> /pytorch/torch/csrc/lazy/ts_backend/dynamic_ir.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> /pytorch/torch/csrc/lazy/ts_backend/ts_eager_fallback.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/random_ops.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/generic.cpp -> /pytorch/torch/csrc/lazy/ts_backend/ops/generic.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/to_copy.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/to_copy.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/generic.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/generic.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.h -> /pytorch/torch/csrc/lazy/ts_backend/ops/device_data.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/backend_device.cpp -> /pytorch/torch/csrc/lazy/backend/backend_device.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/backend_interface.h -> /pytorch/torch/csrc/lazy/backend/backend_interface.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/backend_interface.cpp -> /pytorch/torch/csrc/lazy/backend/backend_interface.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/backend_data.h -> /pytorch/torch/csrc/lazy/backend/backend_data.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/backend_device.h -> /pytorch/torch/csrc/lazy/backend/backend_device.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/lowering_context.cpp -> /pytorch/torch/csrc/lazy/backend/lowering_context.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/backend/lowering_context.h -> /pytorch/torch/csrc/lazy/backend/lowering_context.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/python/init.h -> /pytorch/torch/csrc/lazy/python/init.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/python/python_util.h -> /pytorch/torch/csrc/lazy/python/python_util.h [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/python/python_util.cpp -> /pytorch/torch/csrc/lazy/python/python_util.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/lazy/python/init.cpp -> /pytorch/torch/csrc/lazy/python/init.cpp [skipped, already hipified] +#10 33.86 /pytorch/torch/csrc/utils/tensor_numpy.h -> /pytorch/torch/csrc/utils/tensor_numpy.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/tensor_new.cpp -> /pytorch/torch/csrc/utils/tensor_new.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/object_ptr.h -> /pytorch/torch/csrc/utils/object_ptr.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/cuda_enabled.h -> /pytorch/torch/csrc/utils/cuda_enabled.h [ok] +#10 33.87 /pytorch/torch/csrc/utils/tensor_dtypes.h -> /pytorch/torch/csrc/utils/tensor_dtypes.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/schema_info.h -> /pytorch/torch/csrc/utils/schema_info.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/numpy_stub.h -> /pytorch/torch/csrc/utils/numpy_stub.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/byte_order.cpp -> /pytorch/torch/csrc/utils/byte_order.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/structseq.cpp -> /pytorch/torch/csrc/utils/structseq.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/init.h -> /pytorch/torch/csrc/utils/init.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/cuda_lazy_init.h -> /pytorch/torch/csrc/utils/cuda_lazy_init.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/cuda_lazy_init.cpp -> /pytorch/torch/csrc/utils/cuda_lazy_init.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/python_arg_parser.cpp -> /pytorch/torch/csrc/utils/python_arg_parser.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/tensor_list.cpp -> /pytorch/torch/csrc/utils/tensor_list.cpp [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/tensor_memoryformats.h -> /pytorch/torch/csrc/utils/tensor_memoryformats.h [skipped, already hipified] +#10 33.87 /pytorch/torch/csrc/utils/nested.h -> /pytorch/torch/csrc/utils/nested.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/pythoncapi_compat.h -> /pytorch/torch/csrc/utils/pythoncapi_compat.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/pybind.h -> /pytorch/torch/csrc/utils/pybind.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/out_types.cpp -> /pytorch/torch/csrc/utils/out_types.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/python_symnode.cpp -> /pytorch/torch/csrc/utils/python_symnode.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_layouts.cpp -> /pytorch/torch/csrc/utils/tensor_layouts.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/python_symnode.h -> /pytorch/torch/csrc/utils/python_symnode.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/variadic.cpp -> /pytorch/torch/csrc/utils/variadic.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_apply.cpp -> /pytorch/torch/csrc/utils/tensor_apply.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/memory.h -> /pytorch/torch/csrc/utils/memory.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/verbose.cpp -> /pytorch/torch/csrc/utils/verbose.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_qschemes.h -> /pytorch/torch/csrc/utils/tensor_qschemes.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/python_dispatch.cpp -> /pytorch/torch/csrc/utils/python_dispatch.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/six.h -> /pytorch/torch/csrc/utils/six.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_dtypes.cpp -> /pytorch/torch/csrc/utils/tensor_dtypes.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/python_numbers.h -> /pytorch/torch/csrc/utils/python_numbers.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_flatten.h -> /pytorch/torch/csrc/utils/tensor_flatten.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_numpy.cpp -> /pytorch/torch/csrc/utils/tensor_numpy.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/invalid_arguments.h -> /pytorch/torch/csrc/utils/invalid_arguments.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/tensor_layouts.h -> /pytorch/torch/csrc/utils/tensor_layouts.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/disable_torch_function.cpp -> /pytorch/torch/csrc/utils/disable_torch_function.cpp [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/python_tuples.h -> /pytorch/torch/csrc/utils/python_tuples.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/throughput_benchmark.h -> /pytorch/torch/csrc/utils/throughput_benchmark.h [skipped, already hipified] +#10 33.88 /pytorch/torch/csrc/utils/variadic.h -> /pytorch/torch/csrc/utils/variadic.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/pycfunction_helpers.h -> /pytorch/torch/csrc/utils/pycfunction_helpers.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/schema_info.cpp -> /pytorch/torch/csrc/utils/schema_info.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/auto_gil.h -> /pytorch/torch/csrc/utils/auto_gil.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/throughput_benchmark-inl.h -> /pytorch/torch/csrc/utils/throughput_benchmark-inl.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_stub.h -> /pytorch/torch/csrc/utils/python_stub.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/tensor_new.h -> /pytorch/torch/csrc/utils/tensor_new.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/cpp_stacktraces.cpp -> /pytorch/torch/csrc/utils/cpp_stacktraces.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/disable_torch_function.h -> /pytorch/torch/csrc/utils/disable_torch_function.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_dispatch.h -> /pytorch/torch/csrc/utils/python_dispatch.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/cpp_stacktraces.h -> /pytorch/torch/csrc/utils/cpp_stacktraces.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/throughput_benchmark.cpp -> /pytorch/torch/csrc/utils/throughput_benchmark.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_scalars.h -> /pytorch/torch/csrc/utils/python_scalars.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/tensor_apply.h -> /pytorch/torch/csrc/utils/tensor_apply.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/out_types.h -> /pytorch/torch/csrc/utils/out_types.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_arg_parser.h -> /pytorch/torch/csrc/utils/python_arg_parser.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/tensor_list.h -> /pytorch/torch/csrc/utils/tensor_list.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_compat.h -> /pytorch/torch/csrc/utils/python_compat.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/tensor_memoryformats.cpp -> /pytorch/torch/csrc/utils/tensor_memoryformats.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_torch_function_mode.h -> /pytorch/torch/csrc/utils/python_torch_function_mode.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/pybind.cpp -> /pytorch/torch/csrc/utils/pybind.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/structseq.h -> /pytorch/torch/csrc/utils/structseq.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/python_strings.h -> /pytorch/torch/csrc/utils/python_strings.h [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/tensor_flatten.cpp -> /pytorch/torch/csrc/utils/tensor_flatten.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/nested.cpp -> /pytorch/torch/csrc/utils/nested.cpp [skipped, already hipified] +#10 33.89 /pytorch/torch/csrc/utils/object_ptr.cpp -> /pytorch/torch/csrc/utils/object_ptr.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/invalid_arguments.cpp -> /pytorch/torch/csrc/utils/invalid_arguments.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/tensor_qschemes.cpp -> /pytorch/torch/csrc/utils/tensor_qschemes.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/byte_order.h -> /pytorch/torch/csrc/utils/byte_order.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/tensor_types.h -> /pytorch/torch/csrc/utils/tensor_types.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/init.cpp -> /pytorch/torch/csrc/utils/init.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/torch_dispatch_mode.h -> /pytorch/torch/csrc/utils/torch_dispatch_mode.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/utils/tensor_types.cpp -> /pytorch/torch/csrc/utils/tensor_types.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/functorch/init.h -> /pytorch/torch/csrc/functorch/init.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/functorch/init.cpp -> /pytorch/torch/csrc/functorch/init.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/kineto_shim.h -> /pytorch/torch/csrc/profiler/kineto_shim.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/kineto_client_interface.cpp -> /pytorch/torch/csrc/profiler/kineto_client_interface.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/perf.h -> /pytorch/torch/csrc/profiler/perf.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/util.h -> /pytorch/torch/csrc/profiler/util.h [ok] +#10 33.90 /pytorch/torch/csrc/profiler/perf.cpp -> /pytorch/torch/csrc/profiler/perf.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/collection.h -> /pytorch/torch/csrc/profiler/collection.h [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/util.cpp -> /pytorch/torch/csrc/profiler/util.cpp [skipped, already hipified] +#10 33.90 /pytorch/torch/csrc/profiler/events.h -> /pytorch/torch/csrc/profiler/events.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/data_flow.cpp -> /pytorch/torch/csrc/profiler/data_flow.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/collection.cpp -> /pytorch/torch/csrc/profiler/collection.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/perf-inl.h -> /pytorch/torch/csrc/profiler/perf-inl.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/kineto_shim.cpp -> /pytorch/torch/csrc/profiler/kineto_shim.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/containers.h -> /pytorch/torch/csrc/profiler/containers.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/api.h -> /pytorch/torch/csrc/profiler/api.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/data_flow.h -> /pytorch/torch/csrc/profiler/data_flow.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/standalone/nvtx_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/nvtx_observer.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.h -> /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/execution_graph_observer.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/standalone/itt_observer.h -> /pytorch/torch/csrc/profiler/standalone/itt_observer.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/standalone/nvtx_observer.h -> /pytorch/torch/csrc/profiler/standalone/nvtx_observer.h [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/standalone/itt_observer.cpp -> /pytorch/torch/csrc/profiler/standalone/itt_observer.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/stubs/base.cpp -> /pytorch/torch/csrc/profiler/stubs/base.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/stubs/base.h -> /pytorch/torch/csrc/profiler/stubs/base.h [ok] +#10 33.91 /pytorch/torch/csrc/profiler/stubs/itt.cpp -> /pytorch/torch/csrc/profiler/stubs/itt.cpp [skipped, already hipified] +#10 33.91 /pytorch/torch/csrc/profiler/stubs/cuda.cpp -> /pytorch/torch/csrc/profiler/stubs/cuda.cpp [ok] +#10 33.91 /pytorch/torch/csrc/profiler/orchestration/vulkan.h -> /pytorch/torch/csrc/profiler/orchestration/vulkan.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/orchestration/observer.h -> /pytorch/torch/csrc/profiler/orchestration/observer.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/orchestration/python_tracer.h -> /pytorch/torch/csrc/profiler/orchestration/python_tracer.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/orchestration/python_tracer.cpp -> /pytorch/torch/csrc/profiler/orchestration/python_tracer.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/orchestration/observer.cpp -> /pytorch/torch/csrc/profiler/orchestration/observer.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/orchestration/vulkan.cpp -> /pytorch/torch/csrc/profiler/orchestration/vulkan.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/python/init.h -> /pytorch/torch/csrc/profiler/python/init.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/python/pybind.h -> /pytorch/torch/csrc/profiler/python/pybind.h [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/profiler/python/init.cpp -> /pytorch/torch/csrc/profiler/python/init.cpp [skipped, already hipified] +#10 33.92 /pytorch/torch/csrc/cuda/nccl.cpp -> /pytorch/torch/csrc/cuda/nccl.cpp [ok] +#10 33.92 /pytorch/torch/csrc/cuda/python_nccl.cpp -> /pytorch/torch/csrc/cuda/python_nccl.cpp [ok] +#10 33.92 /pytorch/torch/csrc/cuda/Event.h -> /pytorch/torch/csrc/cuda/Event.h [ok] +#10 33.92 /pytorch/torch/csrc/cuda/Graph.cpp -> /pytorch/torch/csrc/cuda/Graph.cpp [ok] +#10 33.92 /pytorch/torch/csrc/cuda/Stream.cpp -> /pytorch/torch/csrc/cuda/Stream.cpp [ok] +#10 33.92 /pytorch/torch/csrc/cuda/nccl.h -> /pytorch/torch/csrc/cuda/nccl.h [ok] +#10 33.92 /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.h -> /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.h [ok] +#10 33.92 /pytorch/torch/csrc/cuda/comm.h -> /pytorch/torch/csrc/cuda/comm.h [ok] +#10 33.92 /pytorch/torch/csrc/cuda/utils.cpp -> /pytorch/torch/csrc/cuda/utils.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/comm.cpp -> /pytorch/torch/csrc/cuda/comm.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/python_comm.h -> /pytorch/torch/csrc/cuda/python_comm.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/Module.cpp -> /pytorch/torch/csrc/cuda/Module.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/memory_snapshot.h -> /pytorch/torch/csrc/cuda/memory_snapshot.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/Stream.h -> /pytorch/torch/csrc/cuda/Stream.h [ok] +#10 33.93 /pytorch/torch/csrc/cuda/python_nccl.h -> /pytorch/torch/csrc/cuda/python_nccl.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/python_comm.cpp -> /pytorch/torch/csrc/cuda/python_comm.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/memory_snapshot.cpp -> /pytorch/torch/csrc/cuda/memory_snapshot.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/THCP.h -> /pytorch/torch/csrc/cuda/THCP.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/Event.cpp -> /pytorch/torch/csrc/cuda/Event.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/device_set.h -> /pytorch/torch/csrc/cuda/device_set.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/Tensor.cpp -> /pytorch/torch/csrc/cuda/Tensor.cpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.cpp -> /pytorch/torch/csrc/cuda/CUDAPluggableAllocator.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/Module.h -> /pytorch/torch/csrc/cuda/Module.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/cuda/shared/cudnn.cpp -> /pytorch/torch/csrc/cuda/shared/cudnn.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/shared/cudart.cpp -> /pytorch/torch/csrc/cuda/shared/cudart.cpp [ok] +#10 33.93 /pytorch/torch/csrc/cuda/shared/nvtx.cpp -> /pytorch/torch/csrc/cuda/shared/nvtx.cpp [ok] +#10 33.93 /pytorch/torch/csrc/jit/jit_log.cpp -> /pytorch/torch/csrc/jit/jit_log.cpp [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/jit/jit_log.h -> /pytorch/torch/csrc/jit/jit_log.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/jit/resource_guard.h -> /pytorch/torch/csrc/jit/resource_guard.h [skipped, already hipified] +#10 33.93 /pytorch/torch/csrc/jit/jit_opt_limit.h -> /pytorch/torch/csrc/jit/jit_opt_limit.h [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/jit/jit_opt_limit.cpp -> /pytorch/torch/csrc/jit/jit_opt_limit.cpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> /pytorch/torch/csrc/jit/serialization/mobile_bytecode_generated.h [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/jit/serialization/export.cpp -> /pytorch/torch/csrc/jit/serialization/export.cpp [skipped, already hipified] +#10 33.94 /pytorch/torch/csrc/jit/serialization/import_export_constants.h -> /pytorch/torch/csrc/jit/serialization/import_export_constants.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/export.h -> /pytorch/torch/csrc/jit/serialization/export.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/import_export_functions.h -> /pytorch/torch/csrc/jit/serialization/import_export_functions.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/import.h -> /pytorch/torch/csrc/jit/serialization/import.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/source_range_serialization_impl.h -> /pytorch/torch/csrc/jit/serialization/source_range_serialization_impl.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/onnx.h -> /pytorch/torch/csrc/jit/serialization/onnx.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/import_read.h -> /pytorch/torch/csrc/jit/serialization/import_read.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/import_export_helpers.h -> /pytorch/torch/csrc/jit/serialization/import_export_helpers.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/import.cpp -> /pytorch/torch/csrc/jit/serialization/import.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/source_range_serialization.h -> /pytorch/torch/csrc/jit/serialization/source_range_serialization.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/type_name_uniquer.cpp -> /pytorch/torch/csrc/jit/serialization/type_name_uniquer.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/type_name_uniquer.h -> /pytorch/torch/csrc/jit/serialization/type_name_uniquer.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.cpp -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.cpp [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/export_bytecode.h -> /pytorch/torch/csrc/jit/serialization/export_bytecode.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/storage_context.h -> /pytorch/torch/csrc/jit/serialization/storage_context.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/pickle.h -> /pytorch/torch/csrc/jit/serialization/pickle.h [skipped, already hipified] +#10 33.95 /pytorch/torch/csrc/jit/serialization/export_module.cpp -> /pytorch/torch/csrc/jit/serialization/export_module.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/import_read.cpp -> /pytorch/torch/csrc/jit/serialization/import_read.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.cpp -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/python_print.cpp -> /pytorch/torch/csrc/jit/serialization/python_print.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/onnx.cpp -> /pytorch/torch/csrc/jit/serialization/onnx.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/import_export_helpers.cpp -> /pytorch/torch/csrc/jit/serialization/import_export_helpers.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/pickle.cpp -> /pytorch/torch/csrc/jit/serialization/pickle.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/python_print.h -> /pytorch/torch/csrc/jit/serialization/python_print.h [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp -> /pytorch/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/pickler.h -> /pytorch/torch/csrc/jit/serialization/pickler.h [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.h -> /pytorch/torch/csrc/jit/serialization/flatbuffer_serializer.h [skipped, already hipified] +#10 33.96 /pytorch/torch/csrc/jit/serialization/import_legacy.h -> /pytorch/torch/csrc/jit/serialization/import_legacy.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/pickler.cpp -> /pytorch/torch/csrc/jit/serialization/pickler.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/unpickler.cpp -> /pytorch/torch/csrc/jit/serialization/unpickler.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/source_range_serialization.cpp -> /pytorch/torch/csrc/jit/serialization/source_range_serialization.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/export_bytecode.cpp -> /pytorch/torch/csrc/jit/serialization/export_bytecode.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/unpickler.h -> /pytorch/torch/csrc/jit/serialization/unpickler.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/import_legacy.cpp -> /pytorch/torch/csrc/jit/serialization/import_legacy.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/import_source.h -> /pytorch/torch/csrc/jit/serialization/import_source.h [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/serialization/import_source.cpp -> /pytorch/torch/csrc/jit/serialization/import_source.cpp [skipped, already hipified] +#10 33.97 /pytorch/torch/csrc/jit/tensorexpr/expr.cpp -> /pytorch/torch/csrc/jit/tensorexpr/expr.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/tensor.h -> /pytorch/torch/csrc/jit/tensorexpr/tensor.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp -> /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> /pytorch/torch/csrc/jit/tensorexpr/intrinsic_symbols.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/half_support.h -> /pytorch/torch/csrc/jit/tensorexpr/half_support.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.h -> /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/codegen.cpp [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/loopnest.h -> /pytorch/torch/csrc/jit/tensorexpr/loopnest.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/ir.h -> /pytorch/torch/csrc/jit/tensorexpr/ir.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/graph_opt.h -> /pytorch/torch/csrc/jit/tensorexpr/graph_opt.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.h -> /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_verifier.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/lowerings.h -> /pytorch/torch/csrc/jit/tensorexpr/lowerings.h [skipped, already hipified] +#10 33.98 /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/stmt.h -> /pytorch/torch/csrc/jit/tensorexpr/stmt.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/tensor.cpp -> /pytorch/torch/csrc/jit/tensorexpr/tensor.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.h [ok] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.cpp -> /pytorch/torch/csrc/jit/tensorexpr/llvm_jit.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/reduction.cpp -> /pytorch/torch/csrc/jit/tensorexpr/reduction.cpp [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/types.h -> /pytorch/torch/csrc/jit/tensorexpr/types.h [skipped, already hipified] +#10 33.99 /pytorch/torch/csrc/jit/tensorexpr/hash_provider.cpp -> /pytorch/torch/csrc/jit/tensorexpr/hash_provider.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/jit/tensorexpr/lowerings.cpp -> /pytorch/torch/csrc/jit/tensorexpr/lowerings.cpp [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/jit/tensorexpr/codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/codegen.h [skipped, already hipified] +#10 34.00 /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/cpp_codegen.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/jit/tensorexpr/loopnest.cpp -> /pytorch/torch/csrc/jit/tensorexpr/loopnest.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/jit/tensorexpr/external_functions.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/jit/tensorexpr/hash_provider.h -> /pytorch/torch/csrc/jit/tensorexpr/hash_provider.h [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.cpp -> /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.cpp [skipped, already hipified] +#10 34.01 /pytorch/torch/csrc/jit/tensorexpr/registerizer.h -> /pytorch/torch/csrc/jit/tensorexpr/registerizer.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/jit/tensorexpr/analysis.h -> /pytorch/torch/csrc/jit/tensorexpr/analysis.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/jit/tensorexpr/kernel.h -> /pytorch/torch/csrc/jit/tensorexpr/kernel.h [skipped, already hipified] +#10 34.02 /pytorch/torch/csrc/jit/tensorexpr/var_substitutor.h -> /pytorch/torch/csrc/jit/tensorexpr/var_substitutor.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.cpp -> /pytorch/torch/csrc/jit/tensorexpr/tensorexpr_init.cpp [ok] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp -> /pytorch/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp -> /pytorch/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/llvm_codegen.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/cuda_random.h -> /pytorch/torch/csrc/jit/tensorexpr/cuda_random.h [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.cpp [skipped, already hipified] +#10 34.03 /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.cpp -> /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/jit/tensorexpr/eval.cpp -> /pytorch/torch/csrc/jit/tensorexpr/eval.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/jit/tensorexpr/kernel.cpp -> /pytorch/torch/csrc/jit/tensorexpr/kernel.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/jit/tensorexpr/ir.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir.cpp [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/jit/tensorexpr/eval.h -> /pytorch/torch/csrc/jit/tensorexpr/eval.h [skipped, already hipified] +#10 34.04 /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/cuda_codegen.cpp [ok] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.cpp -> /pytorch/torch/csrc/jit/tensorexpr/unique_name_manager.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/reduction.h -> /pytorch/torch/csrc/jit/tensorexpr/reduction.h [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_cloner.h [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.cpp [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_simplifier.h [skipped, already hipified] +#10 34.05 /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/expr.h -> /pytorch/torch/csrc/jit/tensorexpr/expr.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_mutator.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/registerizer.cpp -> /pytorch/torch/csrc/jit/tensorexpr/registerizer.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> /pytorch/torch/csrc/jit/tensorexpr/cpp_intrinsics.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/exceptions.h -> /pytorch/torch/csrc/jit/tensorexpr/exceptions.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/ir_printer.h -> /pytorch/torch/csrc/jit/tensorexpr/ir_printer.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/fwd_decls.h -> /pytorch/torch/csrc/jit/tensorexpr/fwd_decls.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/external_functions.h -> /pytorch/torch/csrc/jit/tensorexpr/external_functions.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/types.cpp -> /pytorch/torch/csrc/jit/tensorexpr/types.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/block_codegen.h -> /pytorch/torch/csrc/jit/tensorexpr/block_codegen.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_core.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.h -> /pytorch/torch/csrc/jit/tensorexpr/bounds_overlap.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.h -> /pytorch/torch/csrc/jit/tensorexpr/bounds_inference.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.cpp -> /pytorch/torch/csrc/jit/tensorexpr/ir_visitor.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/block_codegen.cpp -> /pytorch/torch/csrc/jit/tensorexpr/block_codegen.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.cpp -> /pytorch/torch/csrc/jit/tensorexpr/external_functions_registry.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/graph_opt.cpp -> /pytorch/torch/csrc/jit/tensorexpr/graph_opt.cpp [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/operators/operators.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/operators.h [skipped, already hipified] +#10 34.06 /pytorch/torch/csrc/jit/tensorexpr/operators/norm.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/norm.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/norm.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/norm.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/misc.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/misc.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/pointwise.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/softmax.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/misc.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/misc.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/conv2d.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.h -> /pytorch/torch/csrc/jit/tensorexpr/operators/reduction.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/quantization.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.cpp -> /pytorch/torch/csrc/jit/tensorexpr/operators/matmul.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/backends/backend_debug_handler.cpp -> /pytorch/torch/csrc/jit/backends/backend_debug_handler.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/backends/backend_interface.h -> /pytorch/torch/csrc/jit/backends/backend_interface.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/backends/backend_debug_info.h -> /pytorch/torch/csrc/jit/backends/backend_debug_info.h [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/backends/backend_init.cpp -> /pytorch/torch/csrc/jit/backends/backend_init.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/backends/backend_resolver.cpp -> /pytorch/torch/csrc/jit/backends/backend_resolver.cpp [skipped, already hipified] +#10 34.07 /pytorch/torch/csrc/jit/backends/backend_init.h -> /pytorch/torch/csrc/jit/backends/backend_init.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_interface.cpp -> /pytorch/torch/csrc/jit/backends/backend_interface.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend.h -> /pytorch/torch/csrc/jit/backends/backend.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_preprocess.h -> /pytorch/torch/csrc/jit/backends/backend_preprocess.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_resolver.h -> /pytorch/torch/csrc/jit/backends/backend_resolver.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_detail.cpp -> /pytorch/torch/csrc/jit/backends/backend_detail.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_debug_info.cpp -> /pytorch/torch/csrc/jit/backends/backend_debug_info.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_debug_handler.h -> /pytorch/torch/csrc/jit/backends/backend_debug_handler.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_exception.h -> /pytorch/torch/csrc/jit/backends/backend_exception.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/backend_detail.h -> /pytorch/torch/csrc/jit/backends/backend_detail.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/cpp/context.h -> /pytorch/torch/csrc/jit/backends/coreml/cpp/context.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/cpp/backend.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/backend.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/cpp/context.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/context.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/cpp/preprocess.cpp -> /pytorch/torch/csrc/jit/backends/coreml/cpp/preprocess.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> /pytorch/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_lib.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_lib.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_preprocess.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/xnnpack_backend_preprocess.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/serialization/serializer.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> /pytorch/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.cpp -> /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> /pytorch/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp -> /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_lib.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp -> /pytorch/torch/csrc/jit/backends/nnapi/nnapi_backend_preprocess.cpp [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/frontend/parser_constants.h -> /pytorch/torch/csrc/jit/frontend/parser_constants.h [skipped, already hipified] +#10 34.08 /pytorch/torch/csrc/jit/frontend/inline_loop_condition.h -> /pytorch/torch/csrc/jit/frontend/inline_loop_condition.h [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/jit/frontend/schema_matching.cpp -> /pytorch/torch/csrc/jit/frontend/schema_matching.cpp [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp -> /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp [skipped, already hipified] +#10 34.09 /pytorch/torch/csrc/jit/frontend/name_mangler.h -> /pytorch/torch/csrc/jit/frontend/name_mangler.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/ir_emitter.cpp -> /pytorch/torch/csrc/jit/frontend/ir_emitter.cpp [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/script_type_parser.h -> /pytorch/torch/csrc/jit/frontend/script_type_parser.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/convert_to_ssa.cpp -> /pytorch/torch/csrc/jit/frontend/convert_to_ssa.cpp [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/function_schema_parser.cpp -> /pytorch/torch/csrc/jit/frontend/function_schema_parser.cpp [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/function_schema_parser.h -> /pytorch/torch/csrc/jit/frontend/function_schema_parser.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/convert_to_ssa.h -> /pytorch/torch/csrc/jit/frontend/convert_to_ssa.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/edit_distance.h -> /pytorch/torch/csrc/jit/frontend/edit_distance.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/schema_type_parser.h -> /pytorch/torch/csrc/jit/frontend/schema_type_parser.h [skipped, already hipified] +#10 34.10 /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> /pytorch/torch/csrc/jit/frontend/canonicalize_modified_loop.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/concrete_module_type.cpp -> /pytorch/torch/csrc/jit/frontend/concrete_module_type.cpp [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/sugared_value.h -> /pytorch/torch/csrc/jit/frontend/sugared_value.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/builtin_functions.h -> /pytorch/torch/csrc/jit/frontend/builtin_functions.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/parser.cpp -> /pytorch/torch/csrc/jit/frontend/parser.cpp [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/source_ref.h -> /pytorch/torch/csrc/jit/frontend/source_ref.h [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/sugared_value.cpp -> /pytorch/torch/csrc/jit/frontend/sugared_value.cpp [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/script_type_parser.cpp -> /pytorch/torch/csrc/jit/frontend/script_type_parser.cpp [skipped, already hipified] +#10 34.11 /pytorch/torch/csrc/jit/frontend/source_range.cpp -> /pytorch/torch/csrc/jit/frontend/source_range.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/exit_transforms.cpp -> /pytorch/torch/csrc/jit/frontend/exit_transforms.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/parser.h -> /pytorch/torch/csrc/jit/frontend/parser.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/concrete_module_type.h -> /pytorch/torch/csrc/jit/frontend/concrete_module_type.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/ir_emitter.h -> /pytorch/torch/csrc/jit/frontend/ir_emitter.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/strtod.cpp -> /pytorch/torch/csrc/jit/frontend/strtod.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/lexer.cpp -> /pytorch/torch/csrc/jit/frontend/lexer.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/mini_environment.h -> /pytorch/torch/csrc/jit/frontend/mini_environment.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/name_mangler.cpp -> /pytorch/torch/csrc/jit/frontend/name_mangler.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/versioned_symbols.h -> /pytorch/torch/csrc/jit/frontend/versioned_symbols.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/error_report.h -> /pytorch/torch/csrc/jit/frontend/error_report.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/source_range.h -> /pytorch/torch/csrc/jit/frontend/source_range.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/schema_matching.h -> /pytorch/torch/csrc/jit/frontend/schema_matching.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/builtin_functions.cpp -> /pytorch/torch/csrc/jit/frontend/builtin_functions.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/edit_distance.cpp -> /pytorch/torch/csrc/jit/frontend/edit_distance.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/tracer.h -> /pytorch/torch/csrc/jit/frontend/tracer.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/error_report.cpp -> /pytorch/torch/csrc/jit/frontend/error_report.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/tree_views.cpp -> /pytorch/torch/csrc/jit/frontend/tree_views.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/parse_string_literal.h -> /pytorch/torch/csrc/jit/frontend/parse_string_literal.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/inline_loop_condition.cpp -> /pytorch/torch/csrc/jit/frontend/inline_loop_condition.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/schema_type_parser.cpp -> /pytorch/torch/csrc/jit/frontend/schema_type_parser.cpp [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/tree.h -> /pytorch/torch/csrc/jit/frontend/tree.h [skipped, already hipified] +#10 34.12 /pytorch/torch/csrc/jit/frontend/exit_transforms.h -> /pytorch/torch/csrc/jit/frontend/exit_transforms.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/frontend/tracer.cpp -> /pytorch/torch/csrc/jit/frontend/tracer.cpp [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/frontend/strtod.h -> /pytorch/torch/csrc/jit/frontend/strtod.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/frontend/tree_views.h -> /pytorch/torch/csrc/jit/frontend/tree_views.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/frontend/versioned_symbols.cpp -> /pytorch/torch/csrc/jit/frontend/versioned_symbols.cpp [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/frontend/resolver.h -> /pytorch/torch/csrc/jit/frontend/resolver.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/frontend/lexer.h -> /pytorch/torch/csrc/jit/frontend/lexer.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/cuda/cuda.h -> /pytorch/torch/csrc/jit/cuda/cuda.h [ok] +#10 34.13 /pytorch/torch/csrc/jit/mobile/profiler_edge.h -> /pytorch/torch/csrc/jit/mobile/profiler_edge.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/mobile/type_parser.h -> /pytorch/torch/csrc/jit/mobile/type_parser.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/mobile/module.h -> /pytorch/torch/csrc/jit/mobile/module.h [skipped, already hipified] +#10 34.13 /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.cpp -> /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.cpp -> /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/parse_operators.h -> /pytorch/torch/csrc/jit/mobile/parse_operators.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/parse_bytecode.cpp -> /pytorch/torch/csrc/jit/mobile/parse_bytecode.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.h -> /pytorch/torch/csrc/jit/mobile/flatbuffer_loader.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/quantization.h -> /pytorch/torch/csrc/jit/mobile/quantization.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/observer.h -> /pytorch/torch/csrc/jit/mobile/observer.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.cpp -> /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/import.h -> /pytorch/torch/csrc/jit/mobile/import.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/code.h -> /pytorch/torch/csrc/jit/mobile/code.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/module.cpp -> /pytorch/torch/csrc/jit/mobile/module.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/profiler_edge.cpp -> /pytorch/torch/csrc/jit/mobile/profiler_edge.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/import.cpp -> /pytorch/torch/csrc/jit/mobile/import.cpp [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/import_data.h -> /pytorch/torch/csrc/jit/mobile/import_data.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.h -> /pytorch/torch/csrc/jit/mobile/register_ops_common_utils.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/upgrader_mobile.h -> /pytorch/torch/csrc/jit/mobile/upgrader_mobile.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/file_format.h -> /pytorch/torch/csrc/jit/mobile/file_format.h [skipped, already hipified] +#10 34.14 /pytorch/torch/csrc/jit/mobile/import_export_common.h -> /pytorch/torch/csrc/jit/mobile/import_export_common.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/parse_bytecode.h -> /pytorch/torch/csrc/jit/mobile/parse_bytecode.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/parse_operators.cpp -> /pytorch/torch/csrc/jit/mobile/parse_operators.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/function.h -> /pytorch/torch/csrc/jit/mobile/function.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/debug_info.h -> /pytorch/torch/csrc/jit/mobile/debug_info.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.h -> /pytorch/torch/csrc/jit/mobile/promoted_prim_ops.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/prim_ops_registery.h -> /pytorch/torch/csrc/jit/mobile/prim_ops_registery.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/frame.h -> /pytorch/torch/csrc/jit/mobile/frame.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/prim_ops_registery.cpp -> /pytorch/torch/csrc/jit/mobile/prim_ops_registery.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/upgrader_mobile.cpp -> /pytorch/torch/csrc/jit/mobile/upgrader_mobile.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/quantization.cpp -> /pytorch/torch/csrc/jit/mobile/quantization.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/interpreter.h -> /pytorch/torch/csrc/jit/mobile/interpreter.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/method.h -> /pytorch/torch/csrc/jit/mobile/method.h [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/observer.cpp -> /pytorch/torch/csrc/jit/mobile/observer.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/function.cpp -> /pytorch/torch/csrc/jit/mobile/function.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/import_data.cpp -> /pytorch/torch/csrc/jit/mobile/import_data.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/interpreter.cpp -> /pytorch/torch/csrc/jit/mobile/interpreter.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/type_parser.cpp -> /pytorch/torch/csrc/jit/mobile/type_parser.cpp [skipped, already hipified] +#10 34.15 /pytorch/torch/csrc/jit/mobile/debug_info.cpp -> /pytorch/torch/csrc/jit/mobile/debug_info.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/random.cpp -> /pytorch/torch/csrc/jit/mobile/train/random.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/random.h -> /pytorch/torch/csrc/jit/mobile/train/random.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/export_data.cpp -> /pytorch/torch/csrc/jit/mobile/train/export_data.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/sequential.h -> /pytorch/torch/csrc/jit/mobile/train/sequential.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/export_data.h -> /pytorch/torch/csrc/jit/mobile/train/export_data.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/sequential.cpp -> /pytorch/torch/csrc/jit/mobile/train/sequential.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/optim/sgd.h -> /pytorch/torch/csrc/jit/mobile/train/optim/sgd.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/train/optim/sgd.cpp -> /pytorch/torch/csrc/jit/mobile/train/optim/sgd.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/TracerRunner.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/TensorUtils.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/tracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/tracer.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.cpp -> /pytorch/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> /pytorch/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/compatibility/backport.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/backport.cpp [skipped, already hipified] +#10 34.16 /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/compatibility/backport.h -> /pytorch/torch/csrc/jit/mobile/compatibility/backport.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.h -> /pytorch/torch/csrc/jit/mobile/compatibility/backport_manager.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp -> /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> /pytorch/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/registry.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/registry.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/context.h -> /pytorch/torch/csrc/jit/mobile/nnc/context.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.h -> /pytorch/torch/csrc/jit/mobile/nnc/aot_compiler.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/backend.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/backend.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/registry.h -> /pytorch/torch/csrc/jit/mobile/nnc/registry.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/mobile/nnc/context.cpp -> /pytorch/torch/csrc/jit/mobile/nnc/context.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/testing/file_check.h -> /pytorch/torch/csrc/jit/testing/file_check.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/testing/hooks_for_testing.h -> /pytorch/torch/csrc/jit/testing/hooks_for_testing.h [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/testing/hooks_for_testing.cpp -> /pytorch/torch/csrc/jit/testing/hooks_for_testing.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/testing/catch_utils.hpp -> /pytorch/torch/csrc/jit/testing/catch_utils.hpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/testing/file_check.cpp -> /pytorch/torch/csrc/jit/testing/file_check.cpp [skipped, already hipified] +#10 34.17 /pytorch/torch/csrc/jit/ir/alias_analysis.h -> /pytorch/torch/csrc/jit/ir/alias_analysis.h [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/ir.h -> /pytorch/torch/csrc/jit/ir/ir.h [ok] +#10 34.18 /pytorch/torch/csrc/jit/ir/graph_node_list.h -> /pytorch/torch/csrc/jit/ir/graph_node_list.h [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/irparser.h -> /pytorch/torch/csrc/jit/ir/irparser.h [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/constants.cpp -> /pytorch/torch/csrc/jit/ir/constants.cpp [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/graph_utils.h -> /pytorch/torch/csrc/jit/ir/graph_utils.h [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/scope.h -> /pytorch/torch/csrc/jit/ir/scope.h [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/irparser.cpp -> /pytorch/torch/csrc/jit/ir/irparser.cpp [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/node_hashing.cpp -> /pytorch/torch/csrc/jit/ir/node_hashing.cpp [skipped, already hipified] +#10 34.18 /pytorch/torch/csrc/jit/ir/attributes.cpp -> /pytorch/torch/csrc/jit/ir/attributes.cpp [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/alias_analysis.cpp -> /pytorch/torch/csrc/jit/ir/alias_analysis.cpp [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/graph_utils.cpp -> /pytorch/torch/csrc/jit/ir/graph_utils.cpp [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/subgraph_matcher.cpp -> /pytorch/torch/csrc/jit/ir/subgraph_matcher.cpp [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/type_hashing.h -> /pytorch/torch/csrc/jit/ir/type_hashing.h [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/ir.cpp -> /pytorch/torch/csrc/jit/ir/ir.cpp [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/named_value.h -> /pytorch/torch/csrc/jit/ir/named_value.h [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/scope.cpp -> /pytorch/torch/csrc/jit/ir/scope.cpp [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/node_hashing.h -> /pytorch/torch/csrc/jit/ir/node_hashing.h [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/attributes.h -> /pytorch/torch/csrc/jit/ir/attributes.h [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/subgraph_matcher.h -> /pytorch/torch/csrc/jit/ir/subgraph_matcher.h [skipped, already hipified] +#10 34.19 /pytorch/torch/csrc/jit/ir/type_hashing.cpp -> /pytorch/torch/csrc/jit/ir/type_hashing.cpp [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/ir/ir_views.h -> /pytorch/torch/csrc/jit/ir/ir_views.h [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/ir/constants.h -> /pytorch/torch/csrc/jit/ir/constants.h [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/utils.h -> /pytorch/torch/csrc/jit/operator_upgraders/utils.h [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/utils.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/utils.cpp [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/version_map.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/version_map.cpp [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/upgraders.h -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders.h [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders_entry.h [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/upgraders.cpp -> /pytorch/torch/csrc/jit/operator_upgraders/upgraders.cpp [skipped, already hipified] +#10 34.20 /pytorch/torch/csrc/jit/operator_upgraders/version_map.h -> /pytorch/torch/csrc/jit/operator_upgraders/version_map.h [skipped, already hipified] +#10 34.21 /pytorch/torch/csrc/jit/runtime/register_prim_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_prim_ops.cpp [skipped, already hipified] +#10 34.21 /pytorch/torch/csrc/jit/runtime/calculate_necessary_args.h -> /pytorch/torch/csrc/jit/runtime/calculate_necessary_args.h [skipped, already hipified] +#10 34.21 /pytorch/torch/csrc/jit/runtime/graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/graph_executor_impl.h [skipped, already hipified] +#10 34.21 /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp -> /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp [skipped, already hipified] +#10 34.21 /pytorch/torch/csrc/jit/runtime/graph_executor.h -> /pytorch/torch/csrc/jit/runtime/graph_executor.h [skipped, already hipified] +#10 34.21 /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.cpp -> /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.cpp [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/register_ops_utils.h -> /pytorch/torch/csrc/jit/runtime/register_ops_utils.h [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.h -> /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.h [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/vararg_functions.h -> /pytorch/torch/csrc/jit/runtime/vararg_functions.h [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/jit_exception.h -> /pytorch/torch/csrc/jit/runtime/jit_exception.h [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/symbolic_script.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_script.cpp [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/jit_trace.cpp -> /pytorch/torch/csrc/jit/runtime/jit_trace.cpp [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/vararg_functions.cpp -> /pytorch/torch/csrc/jit/runtime/vararg_functions.cpp [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/logging.cpp -> /pytorch/torch/csrc/jit/runtime/logging.cpp [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/instruction.cpp -> /pytorch/torch/csrc/jit/runtime/instruction.cpp [skipped, already hipified] +#10 34.22 /pytorch/torch/csrc/jit/runtime/decomposition_registry.cpp -> /pytorch/torch/csrc/jit/runtime/decomposition_registry.cpp [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/operator.h -> /pytorch/torch/csrc/jit/runtime/operator.h [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/autodiff.cpp -> /pytorch/torch/csrc/jit/runtime/autodiff.cpp [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/profiling_record.cpp -> /pytorch/torch/csrc/jit/runtime/profiling_record.cpp [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/decomposition_registry.h -> /pytorch/torch/csrc/jit/runtime/decomposition_registry.h [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/register_c10_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_c10_ops.cpp [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/graph_executor.cpp -> /pytorch/torch/csrc/jit/runtime/graph_executor.cpp [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/print_handler.h -> /pytorch/torch/csrc/jit/runtime/print_handler.h [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/argument_spec.h -> /pytorch/torch/csrc/jit/runtime/argument_spec.h [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.h [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry_util.h [skipped, already hipified] +#10 34.23 /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.cpp -> /pytorch/torch/csrc/jit/runtime/decomposition_registry_util.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/register_ops_utils.cpp -> /pytorch/torch/csrc/jit/runtime/register_ops_utils.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/graph_iterator.h -> /pytorch/torch/csrc/jit/runtime/graph_iterator.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/jit_exception.cpp -> /pytorch/torch/csrc/jit/runtime/jit_exception.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/symbolic_script.h -> /pytorch/torch/csrc/jit/runtime/symbolic_script.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> /pytorch/torch/csrc/jit/runtime/serialized_shape_function_registry.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/autodiff.h -> /pytorch/torch/csrc/jit/runtime/autodiff.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp -> /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/shape_function_registry.h -> /pytorch/torch/csrc/jit/runtime/shape_function_registry.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> /pytorch/torch/csrc/jit/runtime/profiling_graph_executor_impl.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/logging.h -> /pytorch/torch/csrc/jit/runtime/logging.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/custom_operator.h -> /pytorch/torch/csrc/jit/runtime/custom_operator.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/exception_message.h -> /pytorch/torch/csrc/jit/runtime/exception_message.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.h -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/variable_tensor_list.h -> /pytorch/torch/csrc/jit/runtime/variable_tensor_list.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/register_distributed_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_distributed_ops.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/profiling_record.h -> /pytorch/torch/csrc/jit/runtime/profiling_record.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/operator.cpp -> /pytorch/torch/csrc/jit/runtime/operator.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/jit_trace.h -> /pytorch/torch/csrc/jit/runtime/jit_trace.h [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/print_handler.cpp -> /pytorch/torch/csrc/jit/runtime/print_handler.cpp [skipped, already hipified] +#10 34.24 /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.h -> /pytorch/torch/csrc/jit/runtime/slice_indices_adjust.h [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp -> /pytorch/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp -> /pytorch/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/interpreter.h -> /pytorch/torch/csrc/jit/runtime/interpreter.h [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/register_special_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_special_ops.cpp [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/instruction.h -> /pytorch/torch/csrc/jit/runtime/instruction.h [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/argument_spec.cpp -> /pytorch/torch/csrc/jit/runtime/argument_spec.cpp [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/interpreter.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter.cpp [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/register_cuda_ops.cpp -> /pytorch/torch/csrc/jit/runtime/register_cuda_ops.cpp [ok] +#10 34.25 /pytorch/torch/csrc/jit/runtime/script_profile.cpp -> /pytorch/torch/csrc/jit/runtime/script_profile.cpp [skipped, already hipified] +#10 34.25 /pytorch/torch/csrc/jit/runtime/script_profile.h -> /pytorch/torch/csrc/jit/runtime/script_profile.h [skipped, already hipified] +#10 34.26 /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.cpp -> /pytorch/torch/csrc/jit/runtime/symbolic_shape_registry.cpp [skipped, already hipified] +#10 34.26 /pytorch/torch/csrc/jit/runtime/operator_options.h -> /pytorch/torch/csrc/jit/runtime/operator_options.h [skipped, already hipified] +#10 34.26 /pytorch/torch/csrc/jit/runtime/static/fusion.h -> /pytorch/torch/csrc/jit/runtime/static/fusion.h [skipped, already hipified] +#10 34.26 /pytorch/torch/csrc/jit/runtime/static/fusion.cpp -> /pytorch/torch/csrc/jit/runtime/static/fusion.cpp [skipped, already hipified] +#10 34.26 /pytorch/torch/csrc/jit/runtime/static/impl.cpp -> /pytorch/torch/csrc/jit/runtime/static/impl.cpp [skipped, already hipified] +#10 34.26 /pytorch/torch/csrc/jit/runtime/static/impl.h -> /pytorch/torch/csrc/jit/runtime/static/impl.h [skipped, already hipified] +#10 34.27 /pytorch/torch/csrc/jit/runtime/static/memory_planner.h -> /pytorch/torch/csrc/jit/runtime/static/memory_planner.h [skipped, already hipified] +#10 34.27 /pytorch/torch/csrc/jit/runtime/static/static_method.h -> /pytorch/torch/csrc/jit/runtime/static/static_method.h [skipped, already hipified] +#10 34.27 /pytorch/torch/csrc/jit/runtime/static/ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/ops.cpp [skipped, already hipified] +#10 34.27 /pytorch/torch/csrc/jit/runtime/static/init.h -> /pytorch/torch/csrc/jit/runtime/static/init.h [skipped, already hipified] +#10 34.27 /pytorch/torch/csrc/jit/runtime/static/passes.h -> /pytorch/torch/csrc/jit/runtime/static/passes.h [skipped, already hipified] +#10 34.28 /pytorch/torch/csrc/jit/runtime/static/native_ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/native_ops.cpp [skipped, already hipified] +#10 34.28 /pytorch/torch/csrc/jit/runtime/static/memory_planner.cpp -> /pytorch/torch/csrc/jit/runtime/static/memory_planner.cpp [skipped, already hipified] +#10 34.28 /pytorch/torch/csrc/jit/runtime/static/te_wrapper.h -> /pytorch/torch/csrc/jit/runtime/static/te_wrapper.h [skipped, already hipified] +#10 34.28 /pytorch/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> /pytorch/torch/csrc/jit/runtime/static/processed_node_wrapper.h [skipped, already hipified] +#10 34.28 /pytorch/torch/csrc/jit/runtime/static/ops.h -> /pytorch/torch/csrc/jit/runtime/static/ops.h [skipped, already hipified] +#10 34.29 /pytorch/torch/csrc/jit/runtime/static/generated_ops.cpp -> /pytorch/torch/csrc/jit/runtime/static/generated_ops.cpp [skipped, already hipified] +#10 34.29 /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h [skipped, already hipified] +#10 34.29 /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.cpp -> /pytorch/torch/csrc/jit/runtime/static/ProcessedNodeInputs.cpp [skipped, already hipified] +#10 34.29 /pytorch/torch/csrc/jit/runtime/static/te_wrapper.cpp -> /pytorch/torch/csrc/jit/runtime/static/te_wrapper.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/static/passes.cpp -> /pytorch/torch/csrc/jit/runtime/static/passes.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/static/init.cpp -> /pytorch/torch/csrc/jit/runtime/static/init.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> /pytorch/torch/csrc/jit/runtime/interpreter/can_emit_inline.h [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/interpreter/code_impl.h -> /pytorch/torch/csrc/jit/runtime/interpreter/code_impl.h [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/interpreter/frame.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter/frame.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.h [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/interpreter/frame.h -> /pytorch/torch/csrc/jit/runtime/interpreter/frame.h [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp -> /pytorch/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/api/module.h -> /pytorch/torch/csrc/jit/api/module.h [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/api/object.cpp -> /pytorch/torch/csrc/jit/api/object.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/api/module.cpp -> /pytorch/torch/csrc/jit/api/module.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/api/function_impl.cpp -> /pytorch/torch/csrc/jit/api/function_impl.cpp [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/api/object.h -> /pytorch/torch/csrc/jit/api/object.h [skipped, already hipified] +#10 34.30 /pytorch/torch/csrc/jit/api/compilation_unit.h -> /pytorch/torch/csrc/jit/api/compilation_unit.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/api/function_impl.h -> /pytorch/torch/csrc/jit/api/function_impl.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/api/method.h -> /pytorch/torch/csrc/jit/api/method.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/api/module_save.cpp -> /pytorch/torch/csrc/jit/api/module_save.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/lower_graph.cpp -> /pytorch/torch/csrc/jit/passes/lower_graph.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/liveness.cpp -> /pytorch/torch/csrc/jit/passes/liveness.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/pass_manager.cpp -> /pytorch/torch/csrc/jit/passes/pass_manager.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.cpp -> /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/lift_closures.cpp -> /pytorch/torch/csrc/jit/passes/lift_closures.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.h -> /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.h -> /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/lift_closures.h -> /pytorch/torch/csrc/jit/passes/lift_closures.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/remove_expands.cpp -> /pytorch/torch/csrc/jit/passes/remove_expands.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/guard_elimination.h -> /pytorch/torch/csrc/jit/passes/guard_elimination.h [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/xnnpack_rewrite.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/peephole_list_idioms.cpp -> /pytorch/torch/csrc/jit/passes/peephole_list_idioms.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/vulkan_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/vulkan_rewrite.cpp [skipped, already hipified] +#10 34.31 /pytorch/torch/csrc/jit/passes/fuse_relu.h -> /pytorch/torch/csrc/jit/passes/fuse_relu.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.cpp -> /pytorch/torch/csrc/jit/passes/tensorexpr_fuser.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/remove_dropout.cpp -> /pytorch/torch/csrc/jit/passes/remove_dropout.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/concat_opt.cpp -> /pytorch/torch/csrc/jit/passes/concat_opt.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.h -> /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/clear_profiling.h -> /pytorch/torch/csrc/jit/passes/clear_profiling.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.cpp -> /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/metal_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/metal_rewrite.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/specialize_autogradzero.cpp -> /pytorch/torch/csrc/jit/passes/specialize_autogradzero.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/requires_grad_analysis.h -> /pytorch/torch/csrc/jit/passes/requires_grad_analysis.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/clear_profiling.cpp -> /pytorch/torch/csrc/jit/passes/clear_profiling.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.h -> /pytorch/torch/csrc/jit/passes/graph_rewrite_helper.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.h -> /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/prepack_folding.cpp -> /pytorch/torch/csrc/jit/passes/prepack_folding.cpp [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/peephole_list_idioms.h -> /pytorch/torch/csrc/jit/passes/peephole_list_idioms.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/onnx.h -> /pytorch/torch/csrc/jit/passes/onnx.h [skipped, already hipified] +#10 34.32 /pytorch/torch/csrc/jit/passes/frozen_linear_folding.cpp -> /pytorch/torch/csrc/jit/passes/frozen_linear_folding.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/lower_grad_of.cpp -> /pytorch/torch/csrc/jit/passes/lower_grad_of.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/erase_number_types.cpp -> /pytorch/torch/csrc/jit/passes/erase_number_types.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/fuse_linear.cpp -> /pytorch/torch/csrc/jit/passes/fuse_linear.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/shape_analysis.cpp -> /pytorch/torch/csrc/jit/passes/shape_analysis.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/loop_unrolling.cpp -> /pytorch/torch/csrc/jit/passes/loop_unrolling.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/fuse_linear.h -> /pytorch/torch/csrc/jit/passes/fuse_linear.h [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/lower_tuples.cpp -> /pytorch/torch/csrc/jit/passes/lower_tuples.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/decompose_ops.cpp -> /pytorch/torch/csrc/jit/passes/decompose_ops.cpp [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/peephole_non_tensor.h -> /pytorch/torch/csrc/jit/passes/peephole_non_tensor.h [skipped, already hipified] +#10 34.33 /pytorch/torch/csrc/jit/passes/shape_analysis.h -> /pytorch/torch/csrc/jit/passes/shape_analysis.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/remove_inplace_ops.h -> /pytorch/torch/csrc/jit/passes/remove_inplace_ops.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/decompose_ops.h -> /pytorch/torch/csrc/jit/passes/decompose_ops.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp -> /pytorch/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/bailout_graph.h -> /pytorch/torch/csrc/jit/passes/bailout_graph.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/canonicalize.h -> /pytorch/torch/csrc/jit/passes/canonicalize.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/inplace_check.cpp -> /pytorch/torch/csrc/jit/passes/inplace_check.cpp [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/inline_fork_wait.h -> /pytorch/torch/csrc/jit/passes/inline_fork_wait.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/value_refinement_utils.h -> /pytorch/torch/csrc/jit/passes/value_refinement_utils.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/prepack_folding.h -> /pytorch/torch/csrc/jit/passes/prepack_folding.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/dead_code_elimination.cpp -> /pytorch/torch/csrc/jit/passes/dead_code_elimination.cpp [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.cpp [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/constant_pooling.h -> /pytorch/torch/csrc/jit/passes/constant_pooling.h [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/constant_propagation.cpp -> /pytorch/torch/csrc/jit/passes/constant_propagation.cpp [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/dtype_analysis.cpp -> /pytorch/torch/csrc/jit/passes/dtype_analysis.cpp [skipped, already hipified] +#10 34.34 /pytorch/torch/csrc/jit/passes/fuse_relu.cpp -> /pytorch/torch/csrc/jit/passes/fuse_relu.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/freeze_module.cpp -> /pytorch/torch/csrc/jit/passes/freeze_module.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/mobile_optimizer_type.h -> /pytorch/torch/csrc/jit/passes/mobile_optimizer_type.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/clear_undefinedness.cpp -> /pytorch/torch/csrc/jit/passes/clear_undefinedness.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/remove_expands.h -> /pytorch/torch/csrc/jit/passes/remove_expands.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/annotate_warns.h -> /pytorch/torch/csrc/jit/passes/annotate_warns.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp -> /pytorch/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/normalize_ops.cpp -> /pytorch/torch/csrc/jit/passes/normalize_ops.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.h -> /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/subgraph_rewrite.h -> /pytorch/torch/csrc/jit/passes/subgraph_rewrite.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.cpp -> /pytorch/torch/csrc/jit/passes/replacement_of_old_operators.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/device_type_analysis.cpp -> /pytorch/torch/csrc/jit/passes/device_type_analysis.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.cpp -> /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/autocast.cpp -> /pytorch/torch/csrc/jit/passes/autocast.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/check_strict_fusion.cpp -> /pytorch/torch/csrc/jit/passes/check_strict_fusion.cpp [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/integer_value_refinement.h -> /pytorch/torch/csrc/jit/passes/integer_value_refinement.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/peephole.h -> /pytorch/torch/csrc/jit/passes/peephole.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/loop_unrolling.h -> /pytorch/torch/csrc/jit/passes/loop_unrolling.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/fold_linear_bn.h -> /pytorch/torch/csrc/jit/passes/fold_linear_bn.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/onednn_graph_fuser.h -> /pytorch/torch/csrc/jit/passes/onednn_graph_fuser.h [skipped, already hipified] +#10 34.35 /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp -> /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/requires_grad_analysis.cpp -> /pytorch/torch/csrc/jit/passes/requires_grad_analysis.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/subgraph_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/subgraph_rewrite.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/insert_guards.cpp -> /pytorch/torch/csrc/jit/passes/insert_guards.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/lower_graph.h -> /pytorch/torch/csrc/jit/passes/lower_graph.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.h -> /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/lower_grad_of.h -> /pytorch/torch/csrc/jit/passes/lower_grad_of.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/guard_elimination.cpp -> /pytorch/torch/csrc/jit/passes/guard_elimination.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/inplace_check.h -> /pytorch/torch/csrc/jit/passes/inplace_check.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/erase_number_types.h -> /pytorch/torch/csrc/jit/passes/erase_number_types.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/inline_fork_wait.cpp -> /pytorch/torch/csrc/jit/passes/inline_fork_wait.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/remove_mutation.h -> /pytorch/torch/csrc/jit/passes/remove_mutation.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/fold_linear_bn.cpp -> /pytorch/torch/csrc/jit/passes/fold_linear_bn.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.h -> /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/constant_pooling.cpp -> /pytorch/torch/csrc/jit/passes/constant_pooling.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/refine_tuple_types.h -> /pytorch/torch/csrc/jit/passes/refine_tuple_types.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.cpp -> /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/dead_code_elimination.h -> /pytorch/torch/csrc/jit/passes/dead_code_elimination.h [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/peephole_non_tensor.cpp -> /pytorch/torch/csrc/jit/passes/peephole_non_tensor.cpp [skipped, already hipified] +#10 34.36 /pytorch/torch/csrc/jit/passes/check_strict_fusion.h -> /pytorch/torch/csrc/jit/passes/check_strict_fusion.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.cpp -> /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.cpp -> /pytorch/torch/csrc/jit/passes/remove_redundant_profiles.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp -> /pytorch/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.h -> /pytorch/torch/csrc/jit/passes/frozen_linear_transpose.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/refine_tuple_types.cpp -> /pytorch/torch/csrc/jit/passes/refine_tuple_types.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.cpp -> /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/frozen_concat_linear.cpp -> /pytorch/torch/csrc/jit/passes/frozen_concat_linear.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/batch_mm.h -> /pytorch/torch/csrc/jit/passes/batch_mm.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.h -> /pytorch/torch/csrc/jit/passes/peephole_alias_sensitive.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/inline_forked_closures.h -> /pytorch/torch/csrc/jit/passes/inline_forked_closures.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/liveness.h -> /pytorch/torch/csrc/jit/passes/liveness.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/variadic_ops.h -> /pytorch/torch/csrc/jit/passes/variadic_ops.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/peephole.cpp -> /pytorch/torch/csrc/jit/passes/peephole.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/canonicalize.cpp -> /pytorch/torch/csrc/jit/passes/canonicalize.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/specialize_autogradzero.h -> /pytorch/torch/csrc/jit/passes/specialize_autogradzero.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/add_if_then_else.h -> /pytorch/torch/csrc/jit/passes/add_if_then_else.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.h -> /pytorch/torch/csrc/jit/passes/peephole_dict_idioms.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/fold_conv_bn.h -> /pytorch/torch/csrc/jit/passes/fold_conv_bn.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/pass_manager.h -> /pytorch/torch/csrc/jit/passes/pass_manager.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/annotate_warns.cpp -> /pytorch/torch/csrc/jit/passes/annotate_warns.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/inline_forked_closures.cpp -> /pytorch/torch/csrc/jit/passes/inline_forked_closures.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_analysis.h [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/add_if_then_else.cpp -> /pytorch/torch/csrc/jit/passes/add_if_then_else.cpp [skipped, already hipified] +#10 34.37 /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp -> /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/batch_mm.cpp -> /pytorch/torch/csrc/jit/passes/batch_mm.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/normalize_ops.h -> /pytorch/torch/csrc/jit/passes/normalize_ops.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/inliner.cpp -> /pytorch/torch/csrc/jit/passes/inliner.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/constant_propagation.h -> /pytorch/torch/csrc/jit/passes/constant_propagation.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/create_functional_graphs.cpp -> /pytorch/torch/csrc/jit/passes/create_functional_graphs.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/fold_conv_bn.cpp -> /pytorch/torch/csrc/jit/passes/fold_conv_bn.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/freeze_module.h -> /pytorch/torch/csrc/jit/passes/freeze_module.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/restore_mutation.cpp -> /pytorch/torch/csrc/jit/passes/restore_mutation.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/frozen_linear_folding.h -> /pytorch/torch/csrc/jit/passes/frozen_linear_folding.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/restore_mutation.h -> /pytorch/torch/csrc/jit/passes/restore_mutation.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.h -> /pytorch/torch/csrc/jit/passes/common_subexpression_elimination.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/frozen_conv_folding.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_folding.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/insert_guards.h -> /pytorch/torch/csrc/jit/passes/insert_guards.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/dtype_analysis.h -> /pytorch/torch/csrc/jit/passes/dtype_analysis.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.cpp -> /pytorch/torch/csrc/jit/passes/hoist_conv_packed_params.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.cpp -> /pytorch/torch/csrc/jit/passes/frozen_graph_optimizations.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/bailout_graph.cpp -> /pytorch/torch/csrc/jit/passes/bailout_graph.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/lower_tuples.h -> /pytorch/torch/csrc/jit/passes/lower_tuples.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/integer_value_refinement.cpp -> /pytorch/torch/csrc/jit/passes/integer_value_refinement.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/frozen_concat_linear.h -> /pytorch/torch/csrc/jit/passes/frozen_concat_linear.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/graph_fuser.h -> /pytorch/torch/csrc/jit/passes/graph_fuser.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/eliminate_no_ops.cpp -> /pytorch/torch/csrc/jit/passes/eliminate_no_ops.cpp [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp [ok] +#10 34.38 /pytorch/torch/csrc/jit/passes/eliminate_no_ops.h -> /pytorch/torch/csrc/jit/passes/eliminate_no_ops.h [skipped, already hipified] +#10 34.38 /pytorch/torch/csrc/jit/passes/concat_opt.h -> /pytorch/torch/csrc/jit/passes/concat_opt.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/device_type_analysis.h -> /pytorch/torch/csrc/jit/passes/device_type_analysis.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> /pytorch/torch/csrc/jit/passes/create_autodiff_subgraphs.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/remove_mutation.cpp -> /pytorch/torch/csrc/jit/passes/remove_mutation.cpp [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.h -> /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/frozen_conv_folding.h -> /pytorch/torch/csrc/jit/passes/frozen_conv_folding.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.cpp -> /pytorch/torch/csrc/jit/passes/mkldnn_rewrite.cpp [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/metal_rewrite.h -> /pytorch/torch/csrc/jit/passes/metal_rewrite.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/remove_exceptions.h -> /pytorch/torch/csrc/jit/passes/remove_exceptions.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/remove_exceptions.cpp -> /pytorch/torch/csrc/jit/passes/remove_exceptions.cpp [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/autocast.h -> /pytorch/torch/csrc/jit/passes/autocast.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/clear_undefinedness.h -> /pytorch/torch/csrc/jit/passes/clear_undefinedness.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/value_refinement_utils.cpp -> /pytorch/torch/csrc/jit/passes/value_refinement_utils.cpp [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp -> /pytorch/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.cpp -> /pytorch/torch/csrc/jit/passes/cuda_graph_fuser.cpp [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/create_functional_graphs.h -> /pytorch/torch/csrc/jit/passes/create_functional_graphs.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/vulkan_rewrite.h -> /pytorch/torch/csrc/jit/passes/vulkan_rewrite.h [skipped, already hipified] +#10 34.39 /pytorch/torch/csrc/jit/passes/variadic_ops.cpp -> /pytorch/torch/csrc/jit/passes/variadic_ops.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/graph_fuser.cpp -> /pytorch/torch/csrc/jit/passes/graph_fuser.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.h -> /pytorch/torch/csrc/jit/passes/symbolic_shape_cache.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion_cuda.cpp -> /pytorch/torch/csrc/jit/passes/frozen_conv_add_relu_fusion_cuda.cpp [ok] +#10 34.40 /pytorch/torch/csrc/jit/passes/remove_inplace_ops.cpp -> /pytorch/torch/csrc/jit/passes/remove_inplace_ops.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/inliner.h -> /pytorch/torch/csrc/jit/passes/inliner.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> /pytorch/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/remove_dropout.h -> /pytorch/torch/csrc/jit/passes/remove_dropout.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/function_substitution.cpp -> /pytorch/torch/csrc/jit/passes/onnx/function_substitution.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.h -> /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.cpp -> /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/naming.cpp -> /pytorch/torch/csrc/jit/passes/onnx/naming.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp -> /pytorch/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.cpp -> /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/constant_fold.h -> /pytorch/torch/csrc/jit/passes/onnx/constant_fold.h [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/constant_fold.cpp -> /pytorch/torch/csrc/jit/passes/onnx/constant_fold.cpp [skipped, already hipified] +#10 34.40 /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> /pytorch/torch/csrc/jit/passes/onnx/eliminate_unused_items.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp -> /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.cpp [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.cpp -> /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.cpp [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/helper.cpp -> /pytorch/torch/csrc/jit/passes/onnx/helper.cpp [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/naming.h -> /pytorch/torch/csrc/jit/passes/onnx/naming.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.cpp -> /pytorch/torch/csrc/jit/passes/onnx/list_model_parameters.cpp [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.cpp -> /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.cpp [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/peephole.h -> /pytorch/torch/csrc/jit/passes/onnx/peephole.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.h -> /pytorch/torch/csrc/jit/passes/onnx/shape_type_inference.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> /pytorch/torch/csrc/jit/passes/onnx/deduplicate_initializers.h [skipped, already hipified] +#10 34.41 /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/peephole.cpp -> /pytorch/torch/csrc/jit/passes/onnx/peephole.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/onnx_log.cpp -> /pytorch/torch/csrc/jit/passes/onnx/onnx_log.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/function_extraction.cpp -> /pytorch/torch/csrc/jit/passes/onnx/function_extraction.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/constant_map.h -> /pytorch/torch/csrc/jit/passes/onnx/constant_map.h [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp -> /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.cpp -> /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/helper.h -> /pytorch/torch/csrc/jit/passes/onnx/helper.h [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/function_substitution.h -> /pytorch/torch/csrc/jit/passes/onnx/function_substitution.h [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> /pytorch/torch/csrc/jit/passes/onnx/scalar_type_analysis.h [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp -> /pytorch/torch/csrc/jit/passes/onnx/constant_map.cpp [skipped, already hipified] +#10 34.42 /pytorch/torch/csrc/jit/passes/onnx/onnx_log.h -> /pytorch/torch/csrc/jit/passes/onnx/onnx_log.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/function_extraction.h -> /pytorch/torch/csrc/jit/passes/onnx/function_extraction.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> /pytorch/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.h -> /pytorch/torch/csrc/jit/passes/onnx/eval_peephole.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> /pytorch/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.cpp -> /pytorch/torch/csrc/jit/passes/onnx/unpack_quantized_weights.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/common.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> /pytorch/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.h -> /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.h -> /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/op_registry.cpp -> /pytorch/torch/csrc/jit/passes/utils/op_registry.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/memory_dag.cpp -> /pytorch/torch/csrc/jit/passes/utils/memory_dag.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/optimization_utils.cpp -> /pytorch/torch/csrc/jit/passes/utils/optimization_utils.cpp [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/op_registry.h -> /pytorch/torch/csrc/jit/passes/utils/op_registry.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/memory_dag.h -> /pytorch/torch/csrc/jit/passes/utils/memory_dag.h [skipped, already hipified] +#10 34.43 /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.cpp -> /pytorch/torch/csrc/jit/passes/utils/check_alias_annotation.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.cpp -> /pytorch/torch/csrc/jit/passes/utils/subgraph_utils.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/utils/optimization_utils.h -> /pytorch/torch/csrc/jit/passes/utils/optimization_utils.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp -> /pytorch/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/quantization_type.h -> /pytorch/torch/csrc/jit/passes/quantization/quantization_type.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp -> /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h -> /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/helper.cpp -> /pytorch/torch/csrc/jit/passes/quantization/helper.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp -> /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.cpp -> /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.cpp [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.h -> /pytorch/torch/csrc/jit/passes/quantization/register_packed_params.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> /pytorch/torch/csrc/jit/passes/quantization/dedup_module_uses.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/finalize.h -> /pytorch/torch/csrc/jit/passes/quantization/finalize.h [skipped, already hipified] +#10 34.44 /pytorch/torch/csrc/jit/passes/quantization/insert_observers.h -> /pytorch/torch/csrc/jit/passes/quantization/insert_observers.h [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/insert_observers.cpp -> /pytorch/torch/csrc/jit/passes/quantization/insert_observers.cpp [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/finalize.cpp -> /pytorch/torch/csrc/jit/passes/quantization/finalize.cpp [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/helper.h -> /pytorch/torch/csrc/jit/passes/quantization/helper.h [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> /pytorch/torch/csrc/jit/passes/quantization/insert_quant_dequant.h [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/quantization_type.cpp -> /pytorch/torch/csrc/jit/passes/quantization/quantization_type.cpp [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/quantization_patterns.h -> /pytorch/torch/csrc/jit/passes/quantization/quantization_patterns.h [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.cpp -> /pytorch/torch/csrc/jit/passes/quantization/fusion_passes.cpp [skipped, already hipified] +#10 34.45 /pytorch/torch/csrc/jit/codegen/cuda/interface.h -> /pytorch/torch/csrc/jit/codegen/cuda/interface.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/cuda/interface.cpp -> /pytorch/torch/csrc/jit/codegen/cuda/interface.cpp [ok] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/interface.h -> /pytorch/torch/csrc/jit/codegen/onednn/interface.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/register_interface.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/register_interface.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.h -> /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.h -> /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/interface.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/interface.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/operator.h -> /pytorch/torch/csrc/jit/codegen/onednn/operator.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_helper.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/kernel.h -> /pytorch/torch/csrc/jit/codegen/onednn/kernel.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> /pytorch/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.h -> /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/kernel.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/kernel.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.h -> /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/guard_shape.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.h -> /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.h -> /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.h -> /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.h [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/layout_propagation.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/defer_size_check.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/graph_fuser.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/prepare_binary.cpp [skipped, already hipified] +#10 34.46 /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.cpp -> /pytorch/torch/csrc/jit/codegen/onednn/decompose_silu.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/interface.h -> /pytorch/torch/csrc/jit/codegen/fuser/interface.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/tensor_info.h -> /pytorch/torch/csrc/jit/codegen/fuser/tensor_info.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/kernel_spec.h -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_spec.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/codegen.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/codegen.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/fallback.h -> /pytorch/torch/csrc/jit/codegen/fuser/fallback.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/compiler.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/compiler.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/interface.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/interface.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/partition_desc.h -> /pytorch/torch/csrc/jit/codegen/fuser/partition_desc.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.h -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/codegen.h -> /pytorch/torch/csrc/jit/codegen/fuser/codegen.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/fallback.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/fallback.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/tensor_desc.h -> /pytorch/torch/csrc/jit/codegen/fuser/tensor_desc.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/arg_spec.h -> /pytorch/torch/csrc/jit/codegen/fuser/arg_spec.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/kernel_cache.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/compiler.h -> /pytorch/torch/csrc/jit/codegen/fuser/compiler.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/fused_kernel.h [ok] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/executor.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/executor.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/executor.h -> /pytorch/torch/csrc/jit/codegen/fuser/executor.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.cpp [ok] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h [ok] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/temp_file.h [skipped, already hipified] +#10 34.47 /pytorch/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> /pytorch/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/python_arg_flatten.h -> /pytorch/torch/csrc/jit/python/python_arg_flatten.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/script_init.cpp -> /pytorch/torch/csrc/jit/python/script_init.cpp [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/python_dict.cpp -> /pytorch/torch/csrc/jit/python/python_dict.cpp [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/python_ir.h -> /pytorch/torch/csrc/jit/python/python_ir.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/init.h -> /pytorch/torch/csrc/jit/python/init.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/python_list.cpp -> /pytorch/torch/csrc/jit/python/python_list.cpp [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/python_interpreter.cpp -> /pytorch/torch/csrc/jit/python/python_interpreter.cpp [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/script_init.h -> /pytorch/torch/csrc/jit/python/script_init.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/pybind.h -> /pytorch/torch/csrc/jit/python/pybind.h [skipped, already hipified] +#10 34.48 /pytorch/torch/csrc/jit/python/update_graph_executor_opt.cpp -> /pytorch/torch/csrc/jit/python/update_graph_executor_opt.cpp [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_tree_views.h -> /pytorch/torch/csrc/jit/python/python_tree_views.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/module_python.h -> /pytorch/torch/csrc/jit/python/module_python.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_ivalue.h -> /pytorch/torch/csrc/jit/python/python_ivalue.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_tracer.h -> /pytorch/torch/csrc/jit/python/python_tracer.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_dict.h -> /pytorch/torch/csrc/jit/python/python_dict.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/pybind_utils.h -> /pytorch/torch/csrc/jit/python/pybind_utils.h [ok] +#10 34.49 /pytorch/torch/csrc/jit/python/python_custom_class.h -> /pytorch/torch/csrc/jit/python/python_custom_class.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/update_graph_executor_opt.h -> /pytorch/torch/csrc/jit/python/update_graph_executor_opt.h [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_ir.cpp -> /pytorch/torch/csrc/jit/python/python_ir.cpp [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_tracer.cpp -> /pytorch/torch/csrc/jit/python/python_tracer.cpp [skipped, already hipified] +#10 34.49 /pytorch/torch/csrc/jit/python/python_arg_flatten.cpp -> /pytorch/torch/csrc/jit/python/python_arg_flatten.cpp [skipped, already hipified] +#10 34.50 /pytorch/torch/csrc/jit/python/python_sugared_value.cpp -> /pytorch/torch/csrc/jit/python/python_sugared_value.cpp [ok] +#10 34.50 /pytorch/torch/csrc/jit/python/python_tree_views.cpp -> /pytorch/torch/csrc/jit/python/python_tree_views.cpp [skipped, already hipified] +#10 34.50 /pytorch/torch/csrc/jit/python/python_list.h -> /pytorch/torch/csrc/jit/python/python_list.h [skipped, already hipified] +#10 34.50 /pytorch/torch/csrc/jit/python/pybind_utils.cpp -> /pytorch/torch/csrc/jit/python/pybind_utils.cpp [skipped, already hipified] +#10 34.50 /pytorch/torch/csrc/jit/python/python_custom_class.cpp -> /pytorch/torch/csrc/jit/python/python_custom_class.cpp [skipped, already hipified] +#10 34.50 /pytorch/torch/csrc/jit/python/python_sugared_value.h -> /pytorch/torch/csrc/jit/python/python_sugared_value.h [skipped, already hipified] +#10 34.51 /pytorch/torch/csrc/jit/python/init.cpp -> /pytorch/torch/csrc/jit/python/init.cpp [skipped, already hipified] +#10 34.51 /pytorch/torch/csrc/autograd/jit_decomp_interface.cpp -> /pytorch/torch/csrc/autograd/jit_decomp_interface.cpp [skipped, already hipified] +#10 34.51 /pytorch/torch/csrc/autograd/input_buffer.cpp -> /pytorch/torch/csrc/autograd/input_buffer.cpp [skipped, already hipified] +#10 34.51 /pytorch/torch/csrc/autograd/forward_grad.cpp -> /pytorch/torch/csrc/autograd/forward_grad.cpp [skipped, already hipified] +#10 34.51 /pytorch/torch/csrc/autograd/record_function_ops.cpp -> /pytorch/torch/csrc/autograd/record_function_ops.cpp [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/FunctionsManual.cpp -> /pytorch/torch/csrc/autograd/FunctionsManual.cpp [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/VariableTypeUtils.h -> /pytorch/torch/csrc/autograd/VariableTypeUtils.h [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/record_function_ops.h -> /pytorch/torch/csrc/autograd/record_function_ops.h [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/python_engine.cpp -> /pytorch/torch/csrc/autograd/python_engine.cpp [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/profiler_python.h -> /pytorch/torch/csrc/autograd/profiler_python.h [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/edge.h -> /pytorch/torch/csrc/autograd/edge.h [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/engine.cpp -> /pytorch/torch/csrc/autograd/engine.cpp [ok] +#10 34.53 /pytorch/torch/csrc/autograd/python_anomaly_mode.cpp -> /pytorch/torch/csrc/autograd/python_anomaly_mode.cpp [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/python_sparse_functions.h -> /pytorch/torch/csrc/autograd/python_sparse_functions.h [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/python_saved_variable_hooks.cpp -> /pytorch/torch/csrc/autograd/python_saved_variable_hooks.cpp [skipped, already hipified] +#10 34.53 /pytorch/torch/csrc/autograd/function_hook.h -> /pytorch/torch/csrc/autograd/function_hook.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/variable.h -> /pytorch/torch/csrc/autograd/variable.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/input_buffer.h -> /pytorch/torch/csrc/autograd/input_buffer.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_return_types.h -> /pytorch/torch/csrc/autograd/python_return_types.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/graph_task.h -> /pytorch/torch/csrc/autograd/graph_task.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/cpp_hook.cpp -> /pytorch/torch/csrc/autograd/cpp_hook.cpp [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_legacy_variable.cpp -> /pytorch/torch/csrc/autograd/python_legacy_variable.cpp [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_enum_tag.h -> /pytorch/torch/csrc/autograd/python_enum_tag.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_nested_functions_manual.cpp -> /pytorch/torch/csrc/autograd/python_nested_functions_manual.cpp [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/autograd_meta.cpp -> /pytorch/torch/csrc/autograd/autograd_meta.cpp [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/saved_variable.h -> /pytorch/torch/csrc/autograd/saved_variable.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_cpp_function.h -> /pytorch/torch/csrc/autograd/python_cpp_function.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_fft_functions.h -> /pytorch/torch/csrc/autograd/python_fft_functions.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/profiler.h -> /pytorch/torch/csrc/autograd/profiler.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/engine.h -> /pytorch/torch/csrc/autograd/engine.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/forward_grad.h -> /pytorch/torch/csrc/autograd/forward_grad.h [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/variable.cpp -> /pytorch/torch/csrc/autograd/variable.cpp [skipped, already hipified] +#10 34.54 /pytorch/torch/csrc/autograd/python_hook.cpp -> /pytorch/torch/csrc/autograd/python_hook.cpp [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/autograd.cpp -> /pytorch/torch/csrc/autograd/autograd.cpp [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/python_anomaly_mode.h -> /pytorch/torch/csrc/autograd/python_anomaly_mode.h [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/symbolic.h -> /pytorch/torch/csrc/autograd/symbolic.h [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/anomaly_mode.cpp -> /pytorch/torch/csrc/autograd/anomaly_mode.cpp [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/python_variable_indexing.cpp -> /pytorch/torch/csrc/autograd/python_variable_indexing.cpp [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/python_function.cpp -> /pytorch/torch/csrc/autograd/python_function.cpp [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.cpp -> /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.cpp [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/autograd.h -> /pytorch/torch/csrc/autograd/autograd.h [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/function.h -> /pytorch/torch/csrc/autograd/function.h [skipped, already hipified] +#10 34.55 /pytorch/torch/csrc/autograd/python_function.h -> /pytorch/torch/csrc/autograd/python_function.h [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/python_engine.h -> /pytorch/torch/csrc/autograd/python_engine.h [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/python_torch_functions_manual.cpp -> /pytorch/torch/csrc/autograd/python_torch_functions_manual.cpp [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/anomaly_mode.h -> /pytorch/torch/csrc/autograd/anomaly_mode.h [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/custom_function.h -> /pytorch/torch/csrc/autograd/custom_function.h [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/python_hook.h -> /pytorch/torch/csrc/autograd/python_hook.h [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/python_cpp_function.cpp -> /pytorch/torch/csrc/autograd/python_cpp_function.cpp [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/profiler_python.cpp -> /pytorch/torch/csrc/autograd/profiler_python.cpp [skipped, already hipified] +#10 34.56 /pytorch/torch/csrc/autograd/VariableTypeManual.cpp -> /pytorch/torch/csrc/autograd/VariableTypeManual.cpp [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/FunctionsManual.h -> /pytorch/torch/csrc/autograd/FunctionsManual.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/grad_mode.h -> /pytorch/torch/csrc/autograd/grad_mode.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/profiler_legacy.h -> /pytorch/torch/csrc/autograd/profiler_legacy.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/saved_variable_hooks.h -> /pytorch/torch/csrc/autograd/saved_variable_hooks.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/profiler_legacy.cpp -> /pytorch/torch/csrc/autograd/profiler_legacy.cpp [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/jit_decomp_interface.h -> /pytorch/torch/csrc/autograd/jit_decomp_interface.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/input_metadata.h -> /pytorch/torch/csrc/autograd/input_metadata.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/TraceTypeManual.cpp -> /pytorch/torch/csrc/autograd/TraceTypeManual.cpp [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/python_nested_functions.h -> /pytorch/torch/csrc/autograd/python_nested_functions.h [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/python_variable.cpp -> /pytorch/torch/csrc/autograd/python_variable.cpp [skipped, already hipified] +#10 34.57 /pytorch/torch/csrc/autograd/python_torch_functions.h -> /pytorch/torch/csrc/autograd/python_torch_functions.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_saved_variable_hooks.h -> /pytorch/torch/csrc/autograd/python_saved_variable_hooks.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_special_functions.h -> /pytorch/torch/csrc/autograd/python_special_functions.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/cpp_hook.h -> /pytorch/torch/csrc/autograd/cpp_hook.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/profiler_kineto.cpp -> /pytorch/torch/csrc/autograd/profiler_kineto.cpp [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_variable_indexing.h -> /pytorch/torch/csrc/autograd/python_variable_indexing.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_autograd.h -> /pytorch/torch/csrc/autograd/python_autograd.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.h -> /pytorch/torch/csrc/autograd/autograd_not_implemented_fallback.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/function.cpp -> /pytorch/torch/csrc/autograd/function.cpp [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/profiler_kineto.h -> /pytorch/torch/csrc/autograd/profiler_kineto.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_legacy_variable.h -> /pytorch/torch/csrc/autograd/python_legacy_variable.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_nn_functions.h -> /pytorch/torch/csrc/autograd/python_nn_functions.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/custom_function.cpp -> /pytorch/torch/csrc/autograd/custom_function.cpp [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_linalg_functions.h -> /pytorch/torch/csrc/autograd/python_linalg_functions.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/saved_variable.cpp -> /pytorch/torch/csrc/autograd/saved_variable.cpp [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/init.cpp -> /pytorch/torch/csrc/autograd/init.cpp [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/InferenceMode.h -> /pytorch/torch/csrc/autograd/InferenceMode.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/python_variable.h -> /pytorch/torch/csrc/autograd/python_variable.h [skipped, already hipified] +#10 34.58 /pytorch/torch/csrc/autograd/utils/error_messages.h -> /pytorch/torch/csrc/autograd/utils/error_messages.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/utils/wrap_outputs.h -> /pytorch/torch/csrc/autograd/utils/wrap_outputs.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/utils/python_arg_parsing.h -> /pytorch/torch/csrc/autograd/utils/python_arg_parsing.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/utils/warnings.h -> /pytorch/torch/csrc/autograd/utils/warnings.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/utils/grad_layout_contract.h -> /pytorch/torch/csrc/autograd/utils/grad_layout_contract.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/utils/warnings.cpp -> /pytorch/torch/csrc/autograd/utils/warnings.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/utils/lambda_post_hook.h -> /pytorch/torch/csrc/autograd/utils/lambda_post_hook.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/tensor.h -> /pytorch/torch/csrc/autograd/functions/tensor.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/utils.h -> /pytorch/torch/csrc/autograd/functions/utils.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/accumulate_grad.h -> /pytorch/torch/csrc/autograd/functions/accumulate_grad.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/tensor.cpp -> /pytorch/torch/csrc/autograd/functions/tensor.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/pybind.h -> /pytorch/torch/csrc/autograd/functions/pybind.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/comm.h -> /pytorch/torch/csrc/autograd/functions/comm.h [ok] +#10 34.59 /pytorch/torch/csrc/autograd/functions/utils.cpp -> /pytorch/torch/csrc/autograd/functions/utils.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/comm.cpp -> /pytorch/torch/csrc/autograd/functions/comm.cpp [ok] +#10 34.59 /pytorch/torch/csrc/autograd/functions/basic_ops.h -> /pytorch/torch/csrc/autograd/functions/basic_ops.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/basic_ops.cpp -> /pytorch/torch/csrc/autograd/functions/basic_ops.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/accumulate_grad.cpp -> /pytorch/torch/csrc/autograd/functions/accumulate_grad.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/autograd/functions/init.cpp -> /pytorch/torch/csrc/autograd/functions/init.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/mps/Module.cpp -> /pytorch/torch/csrc/mps/Module.cpp [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/mps/Module.h -> /pytorch/torch/csrc/mps/Module.h [skipped, already hipified] +#10 34.59 /pytorch/torch/csrc/distributed/c10d/TCPStore.cpp -> /pytorch/torch/csrc/distributed/c10d/TCPStore.cpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/Store.hpp -> /pytorch/torch/csrc/distributed/c10d/Store.hpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/socket.cpp -> /pytorch/torch/csrc/distributed/c10d/socket.cpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/Store.cpp -> /pytorch/torch/csrc/distributed/c10d/Store.cpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/UCCUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCUtils.hpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/HashStore.hpp -> /pytorch/torch/csrc/distributed/c10d/HashStore.hpp [skipped, already hipified] +#10 34.60 /pytorch/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/UnixSockUtils.hpp [skipped, already hipified] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/reducer.cpp -> /pytorch/torch/csrc/distributed/c10d/reducer.cpp [skipped, already hipified] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/c10d.h -> /pytorch/torch/csrc/distributed/c10d/c10d.h [skipped, already hipified] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/logging.cpp -> /pytorch/torch/csrc/distributed/c10d/logging.cpp [skipped, already hipified] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/TraceUtils.h -> /pytorch/torch/csrc/distributed/c10d/TraceUtils.h [skipped, already hipified] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/TCPStore.hpp -> /pytorch/torch/csrc/distributed/c10d/TCPStore.hpp [skipped, already hipified] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/NCCLUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/NCCLUtils.hpp [ok] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.cpp [ok] +#10 34.61 /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/debug.h -> /pytorch/torch/csrc/distributed/c10d/debug.h [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/UCCUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/UCCUtils.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/sequence_num.cpp -> /pytorch/torch/csrc/distributed/c10d/sequence_num.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/Work.cpp -> /pytorch/torch/csrc/distributed/c10d/Work.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/Ops.cpp -> /pytorch/torch/csrc/distributed/c10d/Ops.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp [ok] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/comm.cpp -> /pytorch/torch/csrc/distributed/c10d/comm.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/HashStore.cpp -> /pytorch/torch/csrc/distributed/c10d/HashStore.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/UCCTracing.cpp -> /pytorch/torch/csrc/distributed/c10d/UCCTracing.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/UCCTracing.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCTracing.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/Work.hpp -> /pytorch/torch/csrc/distributed/c10d/Work.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/exception.cpp -> /pytorch/torch/csrc/distributed/c10d/exception.cpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/FileStore.hpp -> /pytorch/torch/csrc/distributed/c10d/FileStore.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/comm.hpp -> /pytorch/torch/csrc/distributed/c10d/comm.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/reducer.hpp -> /pytorch/torch/csrc/distributed/c10d/reducer.hpp [skipped, already hipified] +#10 34.62 /pytorch/torch/csrc/distributed/c10d/PrefixStore.hpp -> /pytorch/torch/csrc/distributed/c10d/PrefixStore.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp [ok] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> /pytorch/torch/csrc/distributed/c10d/PyProcessGroup.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/ProcessGroup.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroup.cpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/ProcessGroup.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroup.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/logger.hpp -> /pytorch/torch/csrc/distributed/c10d/logger.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/FileStore.cpp -> /pytorch/torch/csrc/distributed/c10d/FileStore.cpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/Backend.hpp -> /pytorch/torch/csrc/distributed/c10d/Backend.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/sequence_num.hpp -> /pytorch/torch/csrc/distributed/c10d/sequence_num.hpp [skipped, already hipified] +#10 34.63 /pytorch/torch/csrc/distributed/c10d/error.h -> /pytorch/torch/csrc/distributed/c10d/error.h [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupUCC.cpp [ok] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/python_comm_hook.h -> /pytorch/torch/csrc/distributed/c10d/python_comm_hook.h [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/logging.h -> /pytorch/torch/csrc/distributed/c10d/logging.h [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/exception.h -> /pytorch/torch/csrc/distributed/c10d/exception.h [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/WinSockUtils.hpp -> /pytorch/torch/csrc/distributed/c10d/WinSockUtils.hpp [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/debug.cpp -> /pytorch/torch/csrc/distributed/c10d/debug.cpp [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/Types.hpp -> /pytorch/torch/csrc/distributed/c10d/Types.hpp [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp [skipped, already hipified] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/reducer_cuda.cpp -> /pytorch/torch/csrc/distributed/c10d/reducer_cuda.cpp [ok] +#10 34.64 /pytorch/torch/csrc/distributed/c10d/PrefixStore.cpp -> /pytorch/torch/csrc/distributed/c10d/PrefixStore.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp -> /pytorch/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.cpp -> /pytorch/torch/csrc/distributed/c10d/default_comm_hooks.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/NCCLUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/NCCLUtils.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/socket.h -> /pytorch/torch/csrc/distributed/c10d/socket.h [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/reducer_timer.hpp -> /pytorch/torch/csrc/distributed/c10d/reducer_timer.hpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/UCCForNCCL.hpp -> /pytorch/torch/csrc/distributed/c10d/UCCForNCCL.hpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.cpp -> /pytorch/torch/csrc/distributed/c10d/ParamCommsUtils.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/python_comm_hook.cpp -> /pytorch/torch/csrc/distributed/c10d/python_comm_hook.cpp [skipped, already hipified] +#10 34.65 /pytorch/torch/csrc/distributed/c10d/Utils.hpp -> /pytorch/torch/csrc/distributed/c10d/Utils.hpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/init.cpp -> /pytorch/torch/csrc/distributed/c10d/init.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/Backend.cpp -> /pytorch/torch/csrc/distributed/c10d/Backend.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/logger.cpp -> /pytorch/torch/csrc/distributed/c10d/logger.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> /pytorch/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/Utils.cpp -> /pytorch/torch/csrc/distributed/c10d/Utils.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/quantization/quantization.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_utils.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/quantization/quantization.cpp -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.cu -> /pytorch/torch/csrc/distributed/c10d/quantization/quantization_gpu.cu [ok] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/utils.h -> /pytorch/torch/csrc/distributed/autograd/utils.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/utils.cpp -> /pytorch/torch/csrc/distributed/autograd/utils.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/autograd.cpp -> /pytorch/torch/csrc/distributed/autograd/autograd.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/autograd.h -> /pytorch/torch/csrc/distributed/autograd/autograd.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/python_autograd.h -> /pytorch/torch/csrc/distributed/autograd/python_autograd.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/init.cpp -> /pytorch/torch/csrc/distributed/autograd/init.cpp [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.h [skipped, already hipified] +#10 34.66 /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp -> /pytorch/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp -> /pytorch/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp -> /pytorch/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/context/context.h -> /pytorch/torch/csrc/distributed/autograd/context/context.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/context/container.h -> /pytorch/torch/csrc/distributed/autograd/context/container.h [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/context/container.cpp -> /pytorch/torch/csrc/distributed/autograd/context/container.cpp [skipped, already hipified] +#10 34.67 /pytorch/torch/csrc/distributed/autograd/context/context.cpp -> /pytorch/torch/csrc/distributed/autograd/context/context.cpp [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.cpp -> /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.cpp [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.h -> /pytorch/torch/csrc/distributed/autograd/engine/dist_engine.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/rpc_command_base.h -> /pytorch/torch/csrc/distributed/rpc/rpc_command_base.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/utils.h -> /pytorch/torch/csrc/distributed/rpc/utils.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/rpc_agent.h -> /pytorch/torch/csrc/distributed/rpc/rpc_agent.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/request_callback.h -> /pytorch/torch/csrc/distributed/rpc/request_callback.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/script_call.h -> /pytorch/torch/csrc/distributed/rpc/script_call.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/request_callback_impl.h -> /pytorch/torch/csrc/distributed/rpc/request_callback_impl.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.h -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/rref_proto.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_proto.cpp [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/rpc_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/rpc_agent.cpp [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/script_call.cpp -> /pytorch/torch/csrc/distributed/rpc/script_call.cpp [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/request_callback_impl.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback_impl.cpp [ok] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.h -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/torchscript_functions.h -> /pytorch/torch/csrc/distributed/rpc/torchscript_functions.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/agent_utils.h -> /pytorch/torch/csrc/distributed/rpc/agent_utils.h [skipped, already hipified] +#10 34.68 /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_utils.cpp [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_agent.cpp [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/utils.cpp -> /pytorch/torch/csrc/distributed/rpc/utils.cpp [ok] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/request_callback.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback.cpp [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/types.h -> /pytorch/torch/csrc/distributed/rpc/types.h [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.h [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/python_resp.cpp -> /pytorch/torch/csrc/distributed/rpc/python_resp.cpp [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/rref_proto.h -> /pytorch/torch/csrc/distributed/rpc/rref_proto.h [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.h -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.h [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/python_call.h -> /pytorch/torch/csrc/distributed/rpc/python_call.h [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.h -> /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.h [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/python_call.cpp -> /pytorch/torch/csrc/distributed/rpc/python_call.cpp [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/rref_context.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_context.cpp [skipped, already hipified] +#10 34.69 /pytorch/torch/csrc/distributed/rpc/tensorpipe_cuda.cpp -> /pytorch/torch/csrc/distributed/rpc/tensorpipe_cuda.cpp [ok] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.cpp -> /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.cpp [ok] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/script_resp.h -> /pytorch/torch/csrc/distributed/rpc/script_resp.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/python_functions.h -> /pytorch/torch/csrc/distributed/rpc/python_functions.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/python_resp.h -> /pytorch/torch/csrc/distributed/rpc/python_resp.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/py_rref.cpp -> /pytorch/torch/csrc/distributed/rpc/py_rref.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.cpp -> /pytorch/torch/csrc/distributed/rpc/python_rpc_handler.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/message.h -> /pytorch/torch/csrc/distributed/rpc/message.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/script_resp.cpp -> /pytorch/torch/csrc/distributed/rpc/script_resp.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/script_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/script_remote_call.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/python_remote_call.h -> /pytorch/torch/csrc/distributed/rpc/python_remote_call.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/torchscript_functions.cpp -> /pytorch/torch/csrc/distributed/rpc/torchscript_functions.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/message.cpp -> /pytorch/torch/csrc/distributed/rpc/message.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/rref_impl.cpp -> /pytorch/torch/csrc/distributed/rpc/rref_impl.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/py_rref.h -> /pytorch/torch/csrc/distributed/rpc/py_rref.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/python_functions.cpp -> /pytorch/torch/csrc/distributed/rpc/python_functions.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_remote_call.cpp [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/rpc.h -> /pytorch/torch/csrc/distributed/rpc/rpc.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/rref_context.h -> /pytorch/torch/csrc/distributed/rpc/rref_context.h [skipped, already hipified] +#10 34.70 /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.cpp -> /pytorch/torch/csrc/distributed/rpc/unpickled_python_call.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.h -> /pytorch/torch/csrc/distributed/rpc/request_callback_no_python.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/script_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/script_remote_call.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/types.cpp -> /pytorch/torch/csrc/distributed/rpc/types.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/agent_utils.cpp -> /pytorch/torch/csrc/distributed/rpc/agent_utils.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/init.cpp -> /pytorch/torch/csrc/distributed/rpc/init.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/rref_impl.h -> /pytorch/torch/csrc/distributed/rpc/rref_impl.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/python_remote_call.cpp -> /pytorch/torch/csrc/distributed/rpc/python_remote_call.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/metrics/registry.cpp -> /pytorch/torch/csrc/distributed/rpc/metrics/registry.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> /pytorch/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp -> /pytorch/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp -> /pytorch/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/testing/testing.h -> /pytorch/torch/csrc/distributed/rpc/testing/testing.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp -> /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> /pytorch/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/distributed/rpc/testing/init.cpp -> /pytorch/torch/csrc/distributed/rpc/testing/init.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/api/src/serialize.cpp -> /pytorch/torch/csrc/api/src/serialize.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/api/src/jit.cpp -> /pytorch/torch/csrc/api/src/jit.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/api/src/enum.cpp -> /pytorch/torch/csrc/api/src/enum.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/api/src/cuda.cpp -> /pytorch/torch/csrc/api/src/cuda.cpp [skipped, already hipified] +#10 34.71 /pytorch/torch/csrc/api/src/imethod.cpp -> /pytorch/torch/csrc/api/src/imethod.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/module.cpp -> /pytorch/torch/csrc/api/src/nn/module.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/init.cpp -> /pytorch/torch/csrc/api/src/nn/init.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/vision.cpp -> /pytorch/torch/csrc/api/src/nn/options/vision.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/padding.cpp -> /pytorch/torch/csrc/api/src/nn/options/padding.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/dropout.cpp -> /pytorch/torch/csrc/api/src/nn/options/dropout.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/adaptive.cpp -> /pytorch/torch/csrc/api/src/nn/options/adaptive.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/normalization.cpp -> /pytorch/torch/csrc/api/src/nn/options/normalization.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/instancenorm.cpp -> /pytorch/torch/csrc/api/src/nn/options/instancenorm.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/activation.cpp -> /pytorch/torch/csrc/api/src/nn/options/activation.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/embedding.cpp -> /pytorch/torch/csrc/api/src/nn/options/embedding.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/conv.cpp -> /pytorch/torch/csrc/api/src/nn/options/conv.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/rnn.cpp -> /pytorch/torch/csrc/api/src/nn/options/rnn.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/batchnorm.cpp -> /pytorch/torch/csrc/api/src/nn/options/batchnorm.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/pooling.cpp -> /pytorch/torch/csrc/api/src/nn/options/pooling.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/linear.cpp -> /pytorch/torch/csrc/api/src/nn/options/linear.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/options/transformer.cpp -> /pytorch/torch/csrc/api/src/nn/options/transformer.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/padding.cpp -> /pytorch/torch/csrc/api/src/nn/modules/padding.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/_functions.cpp -> /pytorch/torch/csrc/api/src/nn/modules/_functions.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/dropout.cpp -> /pytorch/torch/csrc/api/src/nn/modules/dropout.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/pixelshuffle.cpp -> /pytorch/torch/csrc/api/src/nn/modules/pixelshuffle.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/adaptive.cpp -> /pytorch/torch/csrc/api/src/nn/modules/adaptive.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/normalization.cpp -> /pytorch/torch/csrc/api/src/nn/modules/normalization.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/instancenorm.cpp -> /pytorch/torch/csrc/api/src/nn/modules/instancenorm.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/upsampling.cpp -> /pytorch/torch/csrc/api/src/nn/modules/upsampling.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/activation.cpp -> /pytorch/torch/csrc/api/src/nn/modules/activation.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/embedding.cpp -> /pytorch/torch/csrc/api/src/nn/modules/embedding.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/fold.cpp -> /pytorch/torch/csrc/api/src/nn/modules/fold.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/loss.cpp -> /pytorch/torch/csrc/api/src/nn/modules/loss.cpp [skipped, already hipified] +#10 34.72 /pytorch/torch/csrc/api/src/nn/modules/conv.cpp -> /pytorch/torch/csrc/api/src/nn/modules/conv.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/rnn.cpp -> /pytorch/torch/csrc/api/src/nn/modules/rnn.cpp [ok] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/batchnorm.cpp -> /pytorch/torch/csrc/api/src/nn/modules/batchnorm.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/pooling.cpp -> /pytorch/torch/csrc/api/src/nn/modules/pooling.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/linear.cpp -> /pytorch/torch/csrc/api/src/nn/modules/linear.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/transformer.cpp -> /pytorch/torch/csrc/api/src/nn/modules/transformer.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/distance.cpp -> /pytorch/torch/csrc/api/src/nn/modules/distance.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/nn/modules/container/functional.cpp -> /pytorch/torch/csrc/api/src/nn/modules/container/functional.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/data/datasets/mnist.cpp -> /pytorch/torch/csrc/api/src/data/datasets/mnist.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/data/samplers/random.cpp -> /pytorch/torch/csrc/api/src/data/samplers/random.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/data/samplers/stream.cpp -> /pytorch/torch/csrc/api/src/data/samplers/stream.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/data/samplers/sequential.cpp -> /pytorch/torch/csrc/api/src/data/samplers/sequential.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/data/samplers/distributed.cpp -> /pytorch/torch/csrc/api/src/data/samplers/distributed.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/serialize/output-archive.cpp -> /pytorch/torch/csrc/api/src/serialize/output-archive.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/serialize/input-archive.cpp -> /pytorch/torch/csrc/api/src/serialize/input-archive.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/optim/adam.cpp -> /pytorch/torch/csrc/api/src/optim/adam.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/optim/rmsprop.cpp -> /pytorch/torch/csrc/api/src/optim/rmsprop.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/optim/optimizer.cpp -> /pytorch/torch/csrc/api/src/optim/optimizer.cpp [skipped, already hipified] +#10 34.73 /pytorch/torch/csrc/api/src/optim/serialize.cpp -> /pytorch/torch/csrc/api/src/optim/serialize.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/optim/adagrad.cpp -> /pytorch/torch/csrc/api/src/optim/adagrad.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/optim/adamw.cpp -> /pytorch/torch/csrc/api/src/optim/adamw.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/optim/sgd.cpp -> /pytorch/torch/csrc/api/src/optim/sgd.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/optim/lbfgs.cpp -> /pytorch/torch/csrc/api/src/optim/lbfgs.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp -> /pytorch/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/optim/schedulers/step_lr.cpp -> /pytorch/torch/csrc/api/src/optim/schedulers/step_lr.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/src/python/init.cpp -> /pytorch/torch/csrc/api/src/python/init.cpp [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/include/torch/utils.h -> /pytorch/torch/csrc/api/include/torch/utils.h [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/include/torch/enum.h -> /pytorch/torch/csrc/api/include/torch/enum.h [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/include/torch/imethod.h -> /pytorch/torch/csrc/api/include/torch/imethod.h [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/include/torch/special.h -> /pytorch/torch/csrc/api/include/torch/special.h [skipped, already hipified] +#10 34.74 /pytorch/torch/csrc/api/include/torch/sparse.h -> /pytorch/torch/csrc/api/include/torch/sparse.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/linalg.h -> /pytorch/torch/csrc/api/include/torch/linalg.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/nested.h -> /pytorch/torch/csrc/api/include/torch/nested.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/types.h -> /pytorch/torch/csrc/api/include/torch/types.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/jit.h -> /pytorch/torch/csrc/api/include/torch/jit.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/ordered_dict.h -> /pytorch/torch/csrc/api/include/torch/ordered_dict.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/autograd.h -> /pytorch/torch/csrc/api/include/torch/autograd.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/all.h -> /pytorch/torch/csrc/api/include/torch/all.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/arg.h -> /pytorch/torch/csrc/api/include/torch/arg.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/optim.h -> /pytorch/torch/csrc/api/include/torch/optim.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/fft.h -> /pytorch/torch/csrc/api/include/torch/fft.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/expanding_array.h -> /pytorch/torch/csrc/api/include/torch/expanding_array.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/data.h -> /pytorch/torch/csrc/api/include/torch/data.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/nn.h -> /pytorch/torch/csrc/api/include/torch/nn.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/cuda.h -> /pytorch/torch/csrc/api/include/torch/cuda.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/torch.h -> /pytorch/torch/csrc/api/include/torch/torch.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/serialize.h -> /pytorch/torch/csrc/api/include/torch/serialize.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/version.h.in -> /pytorch/torch/csrc/api/include/torch/version.h.in [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/python.h -> /pytorch/torch/csrc/api/include/torch/python.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/nn/pimpl.h -> /pytorch/torch/csrc/api/include/torch/nn/pimpl.h [ok] +#10 34.75 /pytorch/torch/csrc/api/include/torch/nn/module.h -> /pytorch/torch/csrc/api/include/torch/nn/module.h [skipped, already hipified] +#10 34.75 /pytorch/torch/csrc/api/include/torch/nn/utils.h -> /pytorch/torch/csrc/api/include/torch/nn/utils.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options.h -> /pytorch/torch/csrc/api/include/torch/nn/options.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/init.h -> /pytorch/torch/csrc/api/include/torch/nn/init.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/functional.h -> /pytorch/torch/csrc/api/include/torch/nn/functional.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/modules.h -> /pytorch/torch/csrc/api/include/torch/nn/modules.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/pimpl-inl.h -> /pytorch/torch/csrc/api/include/torch/nn/pimpl-inl.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/cloneable.h -> /pytorch/torch/csrc/api/include/torch/nn/cloneable.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/options/conv.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/options/pixelshuffle.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/options/distance.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/transformercoder.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformercoder.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/options/loss.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/vision.h -> /pytorch/torch/csrc/api/include/torch/nn/options/vision.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/options/rnn.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/options/normalization.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/transformer.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformer.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/options/pooling.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/options/linear.h [skipped, already hipified] +#10 34.76 /pytorch/torch/csrc/api/include/torch/nn/options/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/options/batchnorm.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/options/embedding.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/options/activation.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/options/padding.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> /pytorch/torch/csrc/api/include/torch/nn/options/transformerlayer.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/adaptive.h -> /pytorch/torch/csrc/api/include/torch/nn/options/adaptive.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/options/fold.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/options/instancenorm.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/options/upsampling.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/options/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/options/dropout.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/convert_parameters.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/utils/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/rnn.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> /pytorch/torch/csrc/api/include/torch/nn/utils/clip_grad.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/functional/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/conv.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/functional/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/distance.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/functional/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/loss.h [skipped, already hipified] +#10 34.77 /pytorch/torch/csrc/api/include/torch/nn/functional/vision.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/vision.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/normalization.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/pooling.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/linear.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/batchnorm.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/embedding.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/activation.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/padding.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/fold.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/instancenorm.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/upsampling.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/functional/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/functional/dropout.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/modules/utils.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/utils.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/modules/conv.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/conv.h [skipped, already hipified] +#10 34.78 /pytorch/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/distance.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/distance.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformercoder.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/loss.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/loss.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/rnn.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/rnn.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/common.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/common.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/normalization.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/normalization.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/transformer.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformer.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/pooling.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/pooling.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/linear.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/linear.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/batchnorm.h [skipped, already hipified] +#10 34.79 /pytorch/torch/csrc/api/include/torch/nn/modules/embedding.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/embedding.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/activation.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/activation.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/padding.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/padding.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/transformerlayer.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/adaptive.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/adaptive.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/fold.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/fold.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/instancenorm.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/upsampling.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/upsampling.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/dropout.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/dropout.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/_functions.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/_functions.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/functional.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/functional.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_value.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/sequential.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/modulelist.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/named_any.h [skipped, already hipified] +#10 34.80 /pytorch/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/moduledict.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/nn/modules/container/any.h -> /pytorch/torch/csrc/api/include/torch/nn/modules/container/any.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> /pytorch/torch/csrc/api/include/torch/nn/parallel/data_parallel.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/dataloader.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/example.h -> /pytorch/torch/csrc/api/include/torch/data/example.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/iterator.h -> /pytorch/torch/csrc/api/include/torch/data/iterator.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/transforms.h -> /pytorch/torch/csrc/api/include/torch/data/transforms.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers.h -> /pytorch/torch/csrc/api/include/torch/data/samplers.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets.h -> /pytorch/torch/csrc/api/include/torch/data/datasets.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/dataloader_options.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader_options.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/worker_exception.h -> /pytorch/torch/csrc/api/include/torch/data/worker_exception.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/map.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/map.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/stateful.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/stateful.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/tensor.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/tensor.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/shared.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/shared.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/base.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/base.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/chunk.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/chunk.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/datasets/mnist.h -> /pytorch/torch/csrc/api/include/torch/data/datasets/mnist.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/random.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/random.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/base.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/base.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/stream.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/stream.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/sequential.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/sequential.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/serialize.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/serialize.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/samplers/distributed.h -> /pytorch/torch/csrc/api/include/torch/data/samplers/distributed.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/dataloader/stateful.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/stateful.h [skipped, already hipified] +#10 34.81 /pytorch/torch/csrc/api/include/torch/data/dataloader/stateless.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/stateless.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/dataloader/base.h -> /pytorch/torch/csrc/api/include/torch/data/dataloader/base.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/transforms/stack.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/stack.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/transforms/tensor.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/tensor.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/transforms/base.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/base.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/transforms/collate.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/collate.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/transforms/lambda.h -> /pytorch/torch/csrc/api/include/torch/data/transforms/lambda.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/detail/sequencers.h -> /pytorch/torch/csrc/api/include/torch/data/detail/sequencers.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/detail/queue.h -> /pytorch/torch/csrc/api/include/torch/data/detail/queue.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> /pytorch/torch/csrc/api/include/torch/data/detail/data_shuttle.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/serialize/tensor.h -> /pytorch/torch/csrc/api/include/torch/serialize/tensor.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/serialize/input-archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/input-archive.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/serialize/archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/archive.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/serialize/output-archive.h -> /pytorch/torch/csrc/api/include/torch/serialize/output-archive.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/rmsprop.h -> /pytorch/torch/csrc/api/include/torch/optim/rmsprop.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/sgd.h -> /pytorch/torch/csrc/api/include/torch/optim/sgd.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/optimizer.h -> /pytorch/torch/csrc/api/include/torch/optim/optimizer.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/adagrad.h -> /pytorch/torch/csrc/api/include/torch/optim/adagrad.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/adam.h -> /pytorch/torch/csrc/api/include/torch/optim/adam.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/adamw.h -> /pytorch/torch/csrc/api/include/torch/optim/adamw.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/serialize.h -> /pytorch/torch/csrc/api/include/torch/optim/serialize.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/lbfgs.h -> /pytorch/torch/csrc/api/include/torch/optim/lbfgs.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> /pytorch/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> /pytorch/torch/csrc/api/include/torch/optim/schedulers/step_lr.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> /pytorch/torch/csrc/api/include/torch/detail/TensorDataContainer.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/detail/static.h -> /pytorch/torch/csrc/api/include/torch/detail/static.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/api/include/torch/python/init.h -> /pytorch/torch/csrc/api/include/torch/python/init.h [skipped, already hipified] +#10 34.82 /pytorch/torch/csrc/monitor/python_init.h -> /pytorch/torch/csrc/monitor/python_init.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/monitor/events.h -> /pytorch/torch/csrc/monitor/events.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/monitor/counters.cpp -> /pytorch/torch/csrc/monitor/counters.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/monitor/counters.h -> /pytorch/torch/csrc/monitor/counters.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/monitor/events.cpp -> /pytorch/torch/csrc/monitor/events.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/monitor/python_init.cpp -> /pytorch/torch/csrc/monitor/python_init.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/dynamo/init.h -> /pytorch/torch/csrc/dynamo/init.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/dynamo/guards.cpp -> /pytorch/torch/csrc/dynamo/guards.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/dynamo/eval_frame.h -> /pytorch/torch/csrc/dynamo/eval_frame.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/dynamo/eval_frame.c -> /pytorch/torch/csrc/dynamo/eval_frame.c [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/dynamo/guards.h -> /pytorch/torch/csrc/dynamo/guards.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/dynamo/init.cpp -> /pytorch/torch/csrc/dynamo/init.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/tensor/python_tensor.h -> /pytorch/torch/csrc/tensor/python_tensor.h [skipped, already hipified] +#10 34.83 /pytorch/torch/csrc/tensor/python_tensor.cpp -> /pytorch/torch/csrc/tensor/python_tensor.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/utils/data/datapipes/datapipe.pyi.in -> /pytorch/torch/utils/data/datapipes/datapipe.pyi.in [skipped, already hipified] +#10 34.83 /pytorch/torch/utils/benchmark/utils/timeit_template.cpp -> /pytorch/torch/utils/benchmark/utils/timeit_template.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> /pytorch/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/_inductor/codegen/cpp_prefix.h -> /pytorch/torch/_inductor/codegen/cpp_prefix.h [skipped, already hipified] +#10 34.83 /pytorch/torch/lib/libshm/manager.cpp -> /pytorch/torch/lib/libshm/manager.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/lib/libshm/core.cpp -> /pytorch/torch/lib/libshm/core.cpp [skipped, already hipified] +#10 34.83 /pytorch/torch/lib/libshm/err.h -> /pytorch/torch/lib/libshm/err.h [skipped, already hipified] +#10 34.83 /pytorch/torch/lib/libshm/libshm.h -> /pytorch/torch/lib/libshm/libshm.h [skipped, already hipified] +#10 34.84 /pytorch/torch/lib/libshm/socket.h -> /pytorch/torch/lib/libshm/socket.h [skipped, already hipified] +#10 34.84 /pytorch/torch/lib/libshm/alloc_info.h -> /pytorch/torch/lib/libshm/alloc_info.h [skipped, already hipified] +#10 34.84 /pytorch/torch/lib/libshm_windows/core.cpp -> /pytorch/torch/lib/libshm_windows/core.cpp [skipped, already hipified] +#10 34.84 /pytorch/torch/lib/libshm_windows/libshm.h -> /pytorch/torch/lib/libshm_windows/libshm.h [skipped, already hipified] +#10 34.84 /pytorch/torch/nn/functional.pyi.in -> /pytorch/torch/nn/functional.pyi.in [skipped, already hipified] +#10 34.84 /pytorch/torch/_C/return_types.pyi.in -> /pytorch/torch/_C/return_types.pyi.in [skipped, already hipified] +#10 34.84 /pytorch/torch/_C/__init__.pyi.in -> /pytorch/torch/_C/__init__.pyi.in [skipped, already hipified] +#10 34.84 /pytorch/torch/_C/_nn.pyi.in -> /pytorch/torch/_C/_nn.pyi.in [skipped, already hipified] +#10 34.84 /pytorch/torch/_C/_VariableFunctions.pyi.in -> /pytorch/torch/_C/_VariableFunctions.pyi.in [skipped, already hipified] +#10 34.84 /pytorch/caffe2/db/create_db_op_gpu.cc -> /pytorch/caffe2/db/hip/create_db_op_gpu.cc [ok] +#10 34.84 /pytorch/caffe2/core/context_gpu.h -> /pytorch/caffe2/core/hip/context_gpu.h [ok] +#10 34.84 /pytorch/caffe2/core/net_gpu_test.cc -> /pytorch/caffe2/core/hip/net_gpu_test.cc [ok] +#10 34.84 /pytorch/caffe2/core/common_gpu.cc -> /pytorch/caffe2/core/hip/common_gpu.cc [ok] +#10 34.85 /pytorch/caffe2/core/event_gpu.cc -> /pytorch/caffe2/core/hip/event_gpu.cc [ok] +#10 34.85 /pytorch/caffe2/core/event_gpu_test.cc -> /pytorch/caffe2/core/hip/event_gpu_test.cc [ok] +#10 34.85 /pytorch/caffe2/core/blob_serialization_gpu.cc -> /pytorch/caffe2/core/hip/blob_serialization_gpu.cc [ok] +#10 34.85 /pytorch/caffe2/core/context_gpu_test.cc -> /pytorch/caffe2/core/hip/context_gpu_test.cc [ok] +#10 34.85 /pytorch/caffe2/core/blob_gpu_test.cc -> /pytorch/caffe2/core/hip/blob_gpu_test.cc [ok] +#10 34.85 /pytorch/caffe2/core/context_gpu.cu -> /pytorch/caffe2/core/hip/context_gpu.hip [ok] +#10 34.85 /pytorch/caffe2/core/common_gpu.h -> /pytorch/caffe2/core/hip/common_gpu.h [ok] +#10 34.85 /pytorch/caffe2/core/operator_gpu_test.cc -> /pytorch/caffe2/core/hip/operator_gpu_test.cc [ok] +#10 34.85 /pytorch/caffe2/utils/GpuAtomics.cuh -> /pytorch/caffe2/utils/hip/GpuAtomics.cuh [ok] +#10 34.85 /pytorch/caffe2/utils/GpuScanUtils.cuh -> /pytorch/caffe2/utils/hip/GpuScanUtils.cuh [ok] +#10 34.85 /pytorch/caffe2/utils/cub_namespace.cuh -> /pytorch/caffe2/utils/hip/cub_namespace.cuh [ok] +#10 34.85 /pytorch/caffe2/utils/math_gpu_test.cc -> /pytorch/caffe2/utils/hip/math_gpu_test.cc [ok] +#10 34.85 /pytorch/caffe2/utils/GpuDefs.cuh -> /pytorch/caffe2/utils/hip/GpuDefs.cuh [ok] +#10 34.86 /pytorch/caffe2/utils/math_gpu.cu -> /pytorch/caffe2/utils/hip/math_gpu.hip [ok] +#10 34.86 /pytorch/caffe2/utils/GpuBitonicSort.cuh -> /pytorch/caffe2/utils/hip/GpuBitonicSort.cuh [ok] +#10 34.86 /pytorch/caffe2/utils/math/reduce.cuh -> /pytorch/caffe2/utils/math/hip/reduce.cuh [ok] +#10 34.86 /pytorch/caffe2/utils/math/broadcast.cu -> /pytorch/caffe2/utils/math/hip/broadcast.hip [ok] +#10 34.86 /pytorch/caffe2/utils/math/transpose.cu -> /pytorch/caffe2/utils/math/hip/transpose.hip [ok] +#10 34.86 /pytorch/caffe2/utils/math/reduce.cu -> /pytorch/caffe2/utils/math/hip/reduce.hip [ok] +#10 34.86 /pytorch/caffe2/utils/math/elementwise.cu -> /pytorch/caffe2/utils/math/hip/elementwise.hip [ok] +#10 34.86 /pytorch/caffe2/mpi/mpi_gpu_test.cc -> /pytorch/caffe2/mpi/hip/mpi_gpu_test.cc [ok] +#10 34.86 /pytorch/caffe2/distributed/redis_store_handler_op_gpu.cc -> /pytorch/caffe2/distributed/hip/redis_store_handler_op_gpu.cc [ok] +#10 34.86 /pytorch/caffe2/distributed/file_store_handler_op_gpu.cc -> /pytorch/caffe2/distributed/hip/file_store_handler_op_gpu.cc [ok] +#10 34.86 /pytorch/caffe2/operators/channel_shuffle_op.cu -> /pytorch/caffe2/operators/hip/channel_shuffle_op.hip [ok] +#10 34.86 /pytorch/caffe2/operators/sparse_normalize_op_gpu.cu -> /pytorch/caffe2/operators/hip/sparse_normalize_op_gpu.hip [ok] +#10 34.86 /pytorch/caffe2/operators/zero_gradient_op_gpu.cc -> /pytorch/caffe2/operators/hip/zero_gradient_op_gpu.cc [ok] +#10 34.86 /pytorch/caffe2/operators/roi_align_rotated_op.cu -> /pytorch/caffe2/operators/hip/roi_align_rotated_op.hip [ok] +#10 34.86 /pytorch/caffe2/operators/batch_sparse_to_dense_op.cu -> /pytorch/caffe2/operators/hip/batch_sparse_to_dense_op.hip [ok] +#10 34.86 /pytorch/caffe2/operators/operator_fallback_gpu.h -> /pytorch/caffe2/operators/hip/operator_fallback_gpu.h [ok] +#10 34.86 /pytorch/caffe2/operators/relu_n_op.cu -> /pytorch/caffe2/operators/hip/relu_n_op.hip [ok] +#10 34.86 /pytorch/caffe2/operators/mem_query_op.cu -> /pytorch/caffe2/operators/hip/mem_query_op.hip [ok] +#10 34.86 /pytorch/caffe2/operators/reduce_front_back_max_ops.cu -> /pytorch/caffe2/operators/hip/reduce_front_back_max_ops.hip [ok] +#10 34.86 /pytorch/caffe2/operators/gather_op.cu -> /pytorch/caffe2/operators/hip/gather_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/half_float_ops.cu -> /pytorch/caffe2/operators/hip/half_float_ops.hip [ok] +#10 34.87 /pytorch/caffe2/operators/max_pool_with_index.cu -> /pytorch/caffe2/operators/hip/max_pool_with_index.hip [ok] +#10 34.87 /pytorch/caffe2/operators/data_couple_gpu.cu -> /pytorch/caffe2/operators/hip/data_couple_gpu.hip [ok] +#10 34.87 /pytorch/caffe2/operators/lengths_pad_op.cu -> /pytorch/caffe2/operators/hip/lengths_pad_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/locally_connected_op_gpu.cc -> /pytorch/caffe2/operators/hip/locally_connected_op_gpu.cc [ok] +#10 34.87 /pytorch/caffe2/operators/sparse_lp_regularizer_op_gpu.cu -> /pytorch/caffe2/operators/hip/sparse_lp_regularizer_op_gpu.hip [ok] +#10 34.87 /pytorch/caffe2/operators/prepend_dim_op_gpu.cc -> /pytorch/caffe2/operators/hip/prepend_dim_op_gpu.cc [ok] +#10 34.87 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu_test.cc -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu_test.cc [ok] +#10 34.87 /pytorch/caffe2/operators/while_op_gpu.cc -> /pytorch/caffe2/operators/hip/while_op_gpu.cc [ok] +#10 34.87 /pytorch/caffe2/operators/fully_connected_op_gpu.cc -> /pytorch/caffe2/operators/hip/fully_connected_op_gpu.cc [ok] +#10 34.87 /pytorch/caffe2/operators/im2col_op_gpu.cc -> /pytorch/caffe2/operators/hip/im2col_op_gpu.cc [ok] +#10 34.87 /pytorch/caffe2/operators/transpose_op.cu -> /pytorch/caffe2/operators/hip/transpose_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/sqrt_op_gpu.cc -> /pytorch/caffe2/operators/hip/sqrt_op_gpu.cc [ok] +#10 34.87 /pytorch/caffe2/operators/instance_norm_op.cu -> /pytorch/caffe2/operators/hip/instance_norm_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/summarize_op.cu -> /pytorch/caffe2/operators/hip/summarize_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/tile_op.cu -> /pytorch/caffe2/operators/hip/tile_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/lp_pool_op.cu -> /pytorch/caffe2/operators/hip/lp_pool_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/moments_op.cu -> /pytorch/caffe2/operators/hip/moments_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/cosine_embedding_criterion_op.cu -> /pytorch/caffe2/operators/hip/cosine_embedding_criterion_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/roi_align_gradient_op.cu -> /pytorch/caffe2/operators/hip/roi_align_gradient_op.hip [ok] +#10 34.87 /pytorch/caffe2/operators/cbrt_op.cu -> /pytorch/caffe2/operators/hip/cbrt_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/segment_reduction_op_gpu.cu -> /pytorch/caffe2/operators/hip/segment_reduction_op_gpu.hip [ok] +#10 34.88 /pytorch/caffe2/operators/batch_permutation_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/batch_permutation_op_gpu_test.cc [ok] +#10 34.88 /pytorch/caffe2/operators/ensure_cpu_output_op.cu -> /pytorch/caffe2/operators/hip/ensure_cpu_output_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/sigmoid_op.cu -> /pytorch/caffe2/operators/hip/sigmoid_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/mod_op.cu -> /pytorch/caffe2/operators/hip/mod_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/reshape_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/reshape_op_gpu_test.cc [ok] +#10 34.88 /pytorch/caffe2/operators/one_hot_ops.cu -> /pytorch/caffe2/operators/hip/one_hot_ops.hip [ok] +#10 34.88 /pytorch/caffe2/operators/elementwise_add_op_gpu.cc -> /pytorch/caffe2/operators/hip/elementwise_add_op_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/normalize_ops.cu -> /pytorch/caffe2/operators/hip/normalize_ops.hip [ok] +#10 34.88 /pytorch/caffe2/operators/sqr_op_gpu.cc -> /pytorch/caffe2/operators/hip/sqr_op_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/negative_op_gpu.cc -> /pytorch/caffe2/operators/hip/negative_op_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/scale_op_gpu.cc -> /pytorch/caffe2/operators/hip/scale_op_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/piecewise_linear_transform_op.cu -> /pytorch/caffe2/operators/hip/piecewise_linear_transform_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/cosh_op.cu -> /pytorch/caffe2/operators/hip/cosh_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/enforce_finite_op.cu -> /pytorch/caffe2/operators/hip/enforce_finite_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/elementwise_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/elementwise_op_gpu_test.cc [ok] +#10 34.88 /pytorch/caffe2/operators/counter_ops_gpu.cc -> /pytorch/caffe2/operators/hip/counter_ops_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/lpnorm_op.cu -> /pytorch/caffe2/operators/hip/lpnorm_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/conv_op_shared_gpu.cc -> /pytorch/caffe2/operators/hip/conv_op_shared_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/sparse_to_dense_op.cu -> /pytorch/caffe2/operators/hip/sparse_to_dense_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/mean_op.cu -> /pytorch/caffe2/operators/hip/mean_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/resize_op.cu -> /pytorch/caffe2/operators/hip/resize_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/stop_gradient_gpu.cc -> /pytorch/caffe2/operators/hip/stop_gradient_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/deform_conv_op.cu -> /pytorch/caffe2/operators/hip/deform_conv_op.hip [ok] +#10 34.88 /pytorch/caffe2/operators/utility_ops_gpu_test.cc -> /pytorch/caffe2/operators/hip/utility_ops_gpu_test.cc [ok] +#10 34.88 /pytorch/caffe2/operators/expand_op_gpu.cc -> /pytorch/caffe2/operators/hip/expand_op_gpu.cc [ok] +#10 34.88 /pytorch/caffe2/operators/reverse_packed_segs_op.cu -> /pytorch/caffe2/operators/hip/reverse_packed_segs_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/lstm_unit_op_gpu.cu -> /pytorch/caffe2/operators/hip/lstm_unit_op_gpu.hip [ok] +#10 34.89 /pytorch/caffe2/operators/conv_op_gpu.cc -> /pytorch/caffe2/operators/hip/conv_op_gpu.cc [ok] +#10 34.89 /pytorch/caffe2/operators/async_net_barrier_op.cu -> /pytorch/caffe2/operators/hip/async_net_barrier_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/pow_op.cu -> /pytorch/caffe2/operators/hip/pow_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/ceil_op.cu -> /pytorch/caffe2/operators/hip/ceil_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/lengths_tile_op.cu -> /pytorch/caffe2/operators/hip/lengths_tile_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/roi_align_rotated_gradient_op.cu -> /pytorch/caffe2/operators/hip/roi_align_rotated_gradient_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/log1p_op.cu -> /pytorch/caffe2/operators/hip/log1p_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/spatial_batch_norm_op.cu -> /pytorch/caffe2/operators/hip/spatial_batch_norm_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/batch_gather_ops.cu -> /pytorch/caffe2/operators/hip/batch_gather_ops.hip [ok] +#10 34.89 /pytorch/caffe2/operators/arg_ops.cu -> /pytorch/caffe2/operators/hip/arg_ops.hip [ok] +#10 34.89 /pytorch/caffe2/operators/leaky_relu_op.cu -> /pytorch/caffe2/operators/hip/leaky_relu_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/generate_proposals_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/generate_proposals_op_gpu_test.cc [ok] +#10 34.89 /pytorch/caffe2/operators/conv_transpose_op_gpu.cc -> /pytorch/caffe2/operators/hip/conv_transpose_op_gpu.cc [ok] +#10 34.89 /pytorch/caffe2/operators/concat_split_op_gpu.cc -> /pytorch/caffe2/operators/hip/concat_split_op_gpu.cc [ok] +#10 34.89 /pytorch/caffe2/operators/margin_ranking_criterion_op.cu -> /pytorch/caffe2/operators/hip/margin_ranking_criterion_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/acos_op.cu -> /pytorch/caffe2/operators/hip/acos_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/alias_with_name.cu -> /pytorch/caffe2/operators/hip/alias_with_name.hip [ok] +#10 34.89 /pytorch/caffe2/operators/free_op_gpu.cc -> /pytorch/caffe2/operators/hip/free_op_gpu.cc [ok] +#10 34.89 /pytorch/caffe2/operators/gelu_op.cu -> /pytorch/caffe2/operators/hip/gelu_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/loss_op.cu -> /pytorch/caffe2/operators/hip/loss_op.hip [ok] +#10 34.89 /pytorch/caffe2/operators/softmax_ops.cu -> /pytorch/caffe2/operators/hip/softmax_ops.hip [ok] +#10 34.90 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.cu -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu.hip [ok] +#10 34.90 /pytorch/caffe2/operators/cross_entropy_op.cu -> /pytorch/caffe2/operators/hip/cross_entropy_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/sequence_ops.cu -> /pytorch/caffe2/operators/hip/sequence_ops.hip [ok] +#10 34.90 /pytorch/caffe2/operators/boolean_mask_ops.cu -> /pytorch/caffe2/operators/hip/boolean_mask_ops.hip [ok] +#10 34.90 /pytorch/caffe2/operators/operator_fallback_gpu_test.cc -> /pytorch/caffe2/operators/hip/operator_fallback_gpu_test.cc [ok] +#10 34.90 /pytorch/caffe2/operators/gather_op.cuh -> /pytorch/caffe2/operators/hip/gather_op.cuh [ok] +#10 34.90 /pytorch/caffe2/operators/channel_stats_op.cu -> /pytorch/caffe2/operators/hip/channel_stats_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/space_batch_op_gpu.cu -> /pytorch/caffe2/operators/hip/space_batch_op_gpu.hip [ok] +#10 34.90 /pytorch/caffe2/operators/cast_op.cu -> /pytorch/caffe2/operators/hip/cast_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/find_op.cu -> /pytorch/caffe2/operators/hip/find_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/unsafe_coalesce.cu -> /pytorch/caffe2/operators/hip/unsafe_coalesce.hip [ok] +#10 34.90 /pytorch/caffe2/operators/elementwise_div_op.cu -> /pytorch/caffe2/operators/hip/elementwise_div_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/integral_image_op.cu -> /pytorch/caffe2/operators/hip/integral_image_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/exp_op_gpu.cc -> /pytorch/caffe2/operators/hip/exp_op_gpu.cc [ok] +#10 34.90 /pytorch/caffe2/operators/pack_segments.cu -> /pytorch/caffe2/operators/hip/pack_segments.hip [ok] +#10 34.90 /pytorch/caffe2/operators/elementwise_sub_op_gpu.cc -> /pytorch/caffe2/operators/hip/elementwise_sub_op_gpu.cc [ok] +#10 34.90 /pytorch/caffe2/operators/roi_align_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/roi_align_op_gpu_test.cc [ok] +#10 34.90 /pytorch/caffe2/operators/prelu_op.cu -> /pytorch/caffe2/operators/hip/prelu_op.hip [ok] +#10 34.90 /pytorch/caffe2/operators/utility_ops.cu -> /pytorch/caffe2/operators/hip/utility_ops.hip [ok] +#10 34.91 /pytorch/caffe2/operators/clip_op.cu -> /pytorch/caffe2/operators/hip/clip_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/reduce_front_back_sum_mean_ops.cu -> /pytorch/caffe2/operators/hip/reduce_front_back_sum_mean_ops.hip [ok] +#10 34.91 /pytorch/caffe2/operators/glu_op.cu -> /pytorch/caffe2/operators/hip/glu_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/roi_pool_op.cu -> /pytorch/caffe2/operators/hip/roi_pool_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/weighted_sample_op.cu -> /pytorch/caffe2/operators/hip/weighted_sample_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/atan_op.cu -> /pytorch/caffe2/operators/hip/atan_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/top_k.cu -> /pytorch/caffe2/operators/hip/top_k.hip [ok] +#10 34.91 /pytorch/caffe2/operators/tensor_protos_db_input_gpu.cc -> /pytorch/caffe2/operators/hip/tensor_protos_db_input_gpu.cc [ok] +#10 34.91 /pytorch/caffe2/operators/rsqrt_op.cu -> /pytorch/caffe2/operators/hip/rsqrt_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/elementwise_linear_op.cu -> /pytorch/caffe2/operators/hip/elementwise_linear_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/segment_reduction_op_gpu.cuh -> /pytorch/caffe2/operators/hip/segment_reduction_op_gpu.cuh [ok] +#10 34.91 /pytorch/caffe2/operators/rmac_regions_op.cu -> /pytorch/caffe2/operators/hip/rmac_regions_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/batch_matmul_op.cu -> /pytorch/caffe2/operators/hip/batch_matmul_op.hip [ok] +#10 34.91 /pytorch/caffe2/operators/spatial_batch_norm_op_impl.cuh -> /pytorch/caffe2/operators/hip/spatial_batch_norm_op_impl.cuh [ok] +#10 34.91 /pytorch/caffe2/operators/do_op_gpu.cc -> /pytorch/caffe2/operators/hip/do_op_gpu.cc [ok] +#10 34.91 /pytorch/caffe2/operators/negate_gradient_op_gpu.cc -> /pytorch/caffe2/operators/hip/negate_gradient_op_gpu.cc [ok] +#10 34.91 /pytorch/caffe2/operators/pad_op_gpu.cu -> /pytorch/caffe2/operators/hip/pad_op_gpu.hip [ok] +#10 34.92 /pytorch/caffe2/operators/pool_op.cu -> /pytorch/caffe2/operators/hip/pool_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/roi_align_op.cu -> /pytorch/caffe2/operators/hip/roi_align_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/stump_func_op.cu -> /pytorch/caffe2/operators/hip/stump_func_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/copy_op.cu -> /pytorch/caffe2/operators/hip/copy_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/load_save_op_gpu.cc -> /pytorch/caffe2/operators/hip/load_save_op_gpu.cc [ok] +#10 34.92 /pytorch/caffe2/operators/expand_squeeze_dims_op_gpu.cc -> /pytorch/caffe2/operators/hip/expand_squeeze_dims_op_gpu.cc [ok] +#10 34.92 /pytorch/caffe2/operators/floor_op.cu -> /pytorch/caffe2/operators/hip/floor_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/bucketize_op.cu -> /pytorch/caffe2/operators/hip/bucketize_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/distance_op.cu -> /pytorch/caffe2/operators/hip/distance_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/reshape_op_gpu.cc -> /pytorch/caffe2/operators/hip/reshape_op_gpu.cc [ok] +#10 34.92 /pytorch/caffe2/operators/logit_op.cu -> /pytorch/caffe2/operators/hip/logit_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/accumulate_op.cu -> /pytorch/caffe2/operators/hip/accumulate_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/elu_op.cu -> /pytorch/caffe2/operators/hip/elu_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/top_k_heap_selection.cuh -> /pytorch/caffe2/operators/hip/top_k_heap_selection.cuh [ok] +#10 34.92 /pytorch/caffe2/operators/hard_sigmoid_op.cu -> /pytorch/caffe2/operators/hip/hard_sigmoid_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/reciprocal_op.cu -> /pytorch/caffe2/operators/hip/reciprocal_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/accuracy_op.cu -> /pytorch/caffe2/operators/hip/accuracy_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/elementwise_ops.cu -> /pytorch/caffe2/operators/hip/elementwise_ops.hip [ok] +#10 34.92 /pytorch/caffe2/operators/reduction_ops.cu -> /pytorch/caffe2/operators/hip/reduction_ops.hip [ok] +#10 34.92 /pytorch/caffe2/operators/shape_op_gpu.cc -> /pytorch/caffe2/operators/hip/shape_op_gpu.cc [ok] +#10 34.92 /pytorch/caffe2/operators/scale_blobs_op.cu -> /pytorch/caffe2/operators/hip/scale_blobs_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/upsample_op.cu -> /pytorch/caffe2/operators/hip/upsample_op.hip [ok] +#10 34.92 /pytorch/caffe2/operators/softsign_op.cu -> /pytorch/caffe2/operators/hip/softsign_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/group_norm_op.cu -> /pytorch/caffe2/operators/hip/group_norm_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/layer_norm_op.cu -> /pytorch/caffe2/operators/hip/layer_norm_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/filler_op.cu -> /pytorch/caffe2/operators/hip/filler_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/minmax_ops.cu -> /pytorch/caffe2/operators/hip/minmax_ops.hip [ok] +#10 34.93 /pytorch/caffe2/operators/local_response_normalization_op.cu -> /pytorch/caffe2/operators/hip/local_response_normalization_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/replace_nan_op.cu -> /pytorch/caffe2/operators/hip/replace_nan_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/generate_proposals_op_util_nms_gpu.h -> /pytorch/caffe2/operators/hip/generate_proposals_op_util_nms_gpu.h [ok] +#10 34.93 /pytorch/caffe2/operators/tanh_op.cu -> /pytorch/caffe2/operators/hip/tanh_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/generate_proposals_op.cu -> /pytorch/caffe2/operators/hip/generate_proposals_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/erf_op.cu -> /pytorch/caffe2/operators/hip/erf_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/elementwise_mul_op.cu -> /pytorch/caffe2/operators/hip/elementwise_mul_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/order_switch_ops_gpu.cc -> /pytorch/caffe2/operators/hip/order_switch_ops_gpu.cc [ok] +#10 34.93 /pytorch/caffe2/operators/unique_ops.cu -> /pytorch/caffe2/operators/hip/unique_ops.hip [ok] +#10 34.93 /pytorch/caffe2/operators/if_op_gpu.cc -> /pytorch/caffe2/operators/hip/if_op_gpu.cc [ok] +#10 34.93 /pytorch/caffe2/operators/swish_op.cu -> /pytorch/caffe2/operators/hip/swish_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/communicator_op_gpu.cc -> /pytorch/caffe2/operators/hip/communicator_op_gpu.cc [ok] +#10 34.93 /pytorch/caffe2/operators/resize_3d_op.cu -> /pytorch/caffe2/operators/hip/resize_3d_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/given_tensor_fill_op.cu -> /pytorch/caffe2/operators/hip/given_tensor_fill_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/boolean_unmask_ops.cu -> /pytorch/caffe2/operators/hip/boolean_unmask_ops.hip [ok] +#10 34.93 /pytorch/caffe2/operators/thresholded_relu_op.cu -> /pytorch/caffe2/operators/hip/thresholded_relu_op.hip [ok] +#10 34.93 /pytorch/caffe2/operators/affine_channel_op.cu -> /pytorch/caffe2/operators/hip/affine_channel_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/sinh_op.cu -> /pytorch/caffe2/operators/hip/sinh_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/batch_permutation_op.cu -> /pytorch/caffe2/operators/hip/batch_permutation_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/slice_op.cu -> /pytorch/caffe2/operators/hip/slice_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/perplexity_op.cu -> /pytorch/caffe2/operators/hip/perplexity_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/cos_op.cu -> /pytorch/caffe2/operators/hip/cos_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/reduce_ops.cu -> /pytorch/caffe2/operators/hip/reduce_ops.hip [ok] +#10 34.94 /pytorch/caffe2/operators/assert_op.cu -> /pytorch/caffe2/operators/hip/assert_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/softplus_op.cu -> /pytorch/caffe2/operators/hip/softplus_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/batch_moments_op.cu -> /pytorch/caffe2/operators/hip/batch_moments_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/relu_op.cu -> /pytorch/caffe2/operators/hip/relu_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/given_tensor_byte_string_to_uint8_fill_op.cu -> /pytorch/caffe2/operators/hip/given_tensor_byte_string_to_uint8_fill_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/dropout_op.cu -> /pytorch/caffe2/operators/hip/dropout_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/top_k_radix_selection.cuh -> /pytorch/caffe2/operators/hip/top_k_radix_selection.cuh [ok] +#10 34.94 /pytorch/caffe2/operators/rms_norm_op.cu -> /pytorch/caffe2/operators/hip/rms_norm_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/asin_op.cu -> /pytorch/caffe2/operators/hip/asin_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/max_pool_with_index_gpu.h -> /pytorch/caffe2/operators/hip/max_pool_with_index_gpu.h [ok] +#10 34.94 /pytorch/caffe2/operators/multi_class_accuracy_op.cu -> /pytorch/caffe2/operators/hip/multi_class_accuracy_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/matmul_op_gpu.cc -> /pytorch/caffe2/operators/hip/matmul_op_gpu.cc [ok] +#10 34.94 /pytorch/caffe2/operators/gru_unit_op_gpu.cu -> /pytorch/caffe2/operators/hip/gru_unit_op_gpu.hip [ok] +#10 34.94 /pytorch/caffe2/operators/selu_op.cu -> /pytorch/caffe2/operators/hip/selu_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/batch_matmul_op_gpu_test.cc -> /pytorch/caffe2/operators/hip/batch_matmul_op_gpu_test.cc [ok] +#10 34.94 /pytorch/caffe2/operators/log_op_gpu.cc -> /pytorch/caffe2/operators/hip/log_op_gpu.cc [ok] +#10 34.94 /pytorch/caffe2/operators/sin_op.cu -> /pytorch/caffe2/operators/hip/sin_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/abs_op.cu -> /pytorch/caffe2/operators/hip/abs_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/tan_op.cu -> /pytorch/caffe2/operators/hip/tan_op.hip [ok] +#10 34.94 /pytorch/caffe2/operators/channel_backprop_stats_op.cu -> /pytorch/caffe2/operators/hip/channel_backprop_stats_op.hip [ok] +#10 34.95 /pytorch/caffe2/operators/cube_op.cu -> /pytorch/caffe2/operators/hip/cube_op.hip [ok] +#10 34.95 /pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.cc -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_executor_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/operators/rnn/recurrent_network_op_gpu.cu -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_op_gpu.hip [ok] +#10 34.95 /pytorch/caffe2/operators/rnn/recurrent_network_executor_gpu.h -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_executor_gpu.h [ok] +#10 34.95 /pytorch/caffe2/operators/rnn/recurrent_network_blob_fetcher_op_gpu.cc -> /pytorch/caffe2/operators/rnn/hip/recurrent_network_blob_fetcher_op_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/contrib/aten/aten_op_gpu.cc -> /pytorch/caffe2/contrib/aten/hip/aten_op_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/contrib/gloo/broadcast_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/broadcast_ops_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/contrib/gloo/common_world_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/common_world_ops_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/contrib/gloo/allreduce_ops_gpu.cc -> /pytorch/caffe2/contrib/gloo/hip/allreduce_ops_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/contrib/nccl/cuda_nccl_op_gpu.cc -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_op_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.h -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_gpu.h [ok] +#10 34.95 /pytorch/caffe2/contrib/nccl/cuda_nccl_gpu.cc -> /pytorch/caffe2/contrib/nccl/hip/hip_nccl_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/video/video_input_op_gpu.cc -> /pytorch/caffe2/video/hip/video_input_op_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/queue/queue_ops_gpu.cc -> /pytorch/caffe2/queue/hip/queue_ops_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/sgd/fp32_momentum_sgd_op.cu -> /pytorch/caffe2/sgd/hip/fp32_momentum_sgd_op.hip [ok] +#10 34.95 /pytorch/caffe2/sgd/adam_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adam_op_gpu.hip [ok] +#10 34.95 /pytorch/caffe2/sgd/yellowfin_op_gpu.cu -> /pytorch/caffe2/sgd/hip/yellowfin_op_gpu.hip [ok] +#10 34.95 /pytorch/caffe2/sgd/fp16_momentum_sgd_op.cu -> /pytorch/caffe2/sgd/hip/fp16_momentum_sgd_op.hip [ok] +#10 34.95 /pytorch/caffe2/sgd/learning_rate_op_gpu.cc -> /pytorch/caffe2/sgd/hip/learning_rate_op_gpu.cc [ok] +#10 34.95 /pytorch/caffe2/sgd/momentum_sgd_op_gpu.cu -> /pytorch/caffe2/sgd/hip/momentum_sgd_op_gpu.hip [ok] +#10 34.95 /pytorch/caffe2/sgd/adagrad_fused_op_gpu.cuh -> /pytorch/caffe2/sgd/hip/adagrad_fused_op_gpu.cuh [ok] +#10 34.96 /pytorch/caffe2/sgd/adadelta_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adadelta_op_gpu.hip [ok] +#10 34.96 /pytorch/caffe2/sgd/rmsprop_op_gpu.cu -> /pytorch/caffe2/sgd/hip/rmsprop_op_gpu.hip [ok] +#10 34.96 /pytorch/caffe2/sgd/lars_op_gpu.cu -> /pytorch/caffe2/sgd/hip/lars_op_gpu.hip [ok] +#10 34.96 /pytorch/caffe2/sgd/weight_scale_op_gpu.cc -> /pytorch/caffe2/sgd/hip/weight_scale_op_gpu.cc [ok] +#10 34.96 /pytorch/caffe2/sgd/adagrad_fused_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adagrad_fused_op_gpu.hip [ok] +#10 34.96 /pytorch/caffe2/sgd/adagrad_op_gpu.cu -> /pytorch/caffe2/sgd/hip/adagrad_op_gpu.hip [ok] +#10 34.96 /pytorch/caffe2/sgd/iter_op_gpu.cc -> /pytorch/caffe2/sgd/hip/iter_op_gpu.cc [ok] +#10 34.96 /pytorch/caffe2/image/transform_gpu.h -> /pytorch/caffe2/image/hip/transform_gpu.h [ok] +#10 34.96 /pytorch/caffe2/image/image_input_op_gpu.cc -> /pytorch/caffe2/image/hip/image_input_op_gpu.cc [ok] +#10 34.96 /pytorch/caffe2/image/transform_gpu.cu -> /pytorch/caffe2/image/hip/transform_gpu.hip [ok] +#10 34.96 /pytorch/modules/detectron/roi_pool_f_op.cu -> /pytorch/modules/detectron/hip/roi_pool_f_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/group_spatial_softmax_op.cu -> /pytorch/modules/detectron/hip/group_spatial_softmax_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/sigmoid_focal_loss_op.cu -> /pytorch/modules/detectron/hip/sigmoid_focal_loss_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/sample_as_op.cu -> /pytorch/modules/detectron/hip/sample_as_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/sigmoid_cross_entropy_loss_op.cu -> /pytorch/modules/detectron/hip/sigmoid_cross_entropy_loss_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/smooth_l1_loss_op.cu -> /pytorch/modules/detectron/hip/smooth_l1_loss_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/select_smooth_l1_loss_op.cu -> /pytorch/modules/detectron/hip/select_smooth_l1_loss_op.hip [ok] +#10 34.96 /pytorch/modules/detectron/ps_roi_pool_op.cu -> /pytorch/modules/detectron/hip/ps_roi_pool_op.hip [ok] +#10 34.97 /pytorch/modules/detectron/softmax_focal_loss_op.cu -> /pytorch/modules/detectron/hip/softmax_focal_loss_op.hip [ok] +#10 34.97 /pytorch/modules/detectron/upsample_nearest_op.cu -> /pytorch/modules/detectron/hip/upsample_nearest_op.hip [ok] +#10 34.97 /pytorch/modules/detectron/spatial_narrow_as_op.cu -> /pytorch/modules/detectron/hip/spatial_narrow_as_op.hip [ok] +#10 34.97 /pytorch/c10/cuda/CUDAFunctions.cpp -> /pytorch/c10/hip/HIPFunctions.cpp [ok] +#10 34.97 /pytorch/c10/cuda/CUDAMathCompat.h -> /pytorch/c10/hip/HIPMathCompat.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDAStream.h -> /pytorch/c10/hip/HIPStream.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDAException.cpp -> /pytorch/c10/hip/HIPException.cpp [ok] +#10 34.97 /pytorch/c10/cuda/CUDAStream.cpp -> /pytorch/c10/hip/HIPStream.cpp [ok] +#10 34.97 /pytorch/c10/cuda/CUDAGraphsC10Utils.h -> /pytorch/c10/hip/HIPGraphsC10Utils.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDAMiscFunctions.h -> /pytorch/c10/hip/HIPMiscFunctions.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDADeviceAssertion.h -> /pytorch/c10/hip/HIPDeviceAssertion.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDACachingAllocator.h -> /pytorch/c10/hip/HIPCachingAllocator.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDAAlgorithm.h -> /pytorch/c10/hip/HIPAlgorithm.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDAMiscFunctions.cpp -> /pytorch/c10/hip/HIPMiscFunctions.cpp [ok] +#10 34.97 /pytorch/c10/cuda/CUDADeviceAssertionHost.cpp -> /pytorch/c10/hip/HIPDeviceAssertionHost.cpp [ok] +#10 34.97 /pytorch/c10/cuda/CUDACachingAllocator.cpp -> /pytorch/c10/hip/HIPCachingAllocator.cpp [ok] +#10 34.97 /pytorch/c10/cuda/CUDAMacros.h -> /pytorch/c10/hip/HIPMacros.h [ok] +#10 34.97 /pytorch/c10/cuda/CUDAFunctions.h -> /pytorch/c10/hip/HIPFunctions.h [ok] +#10 34.98 /pytorch/c10/cuda/CUDAMallocAsyncAllocator.cpp -> /pytorch/c10/hip/HIPMallocAsyncAllocator.cpp [ok] +#10 34.98 /pytorch/c10/cuda/CUDAException.h -> /pytorch/c10/hip/HIPException.h [ok] +#10 34.98 /pytorch/c10/cuda/CUDAGuard.h -> /pytorch/c10/hip/HIPGuard.h [ok] +#10 34.98 /pytorch/c10/cuda/CUDADeviceAssertionHost.h -> /pytorch/c10/hip/HIPDeviceAssertionHost.h [ok] +#10 34.98 /pytorch/c10/cuda/impl/CUDATest.h -> /pytorch/c10/hip/impl/HIPTest.h [ok] +#10 34.98 /pytorch/c10/cuda/impl/CUDAGuardImpl.cpp -> /pytorch/c10/hip/impl/HIPGuardImpl.cpp [ok] +#10 34.98 /pytorch/c10/cuda/impl/CUDAGuardImpl.h -> /pytorch/c10/hip/impl/HIPGuardImpl.h [ok] +#10 34.98 /pytorch/c10/cuda/impl/cuda_cmake_macros.h.in -> /pytorch/c10/hip/impl/hip_cmake_macros.h.in [ok] +#10 34.98 /pytorch/c10/cuda/impl/CUDATest.cpp -> /pytorch/c10/hip/impl/HIPTest.cpp [ok] +#10 34.98 /pytorch/c10/cuda/test/CMakeLists.txt -> /pytorch/c10/hip/test/CMakeLists.txt [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_multiple_blocks.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_same_block.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_same_block.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_from_2_processes.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_from_2_processes.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_1_var_test.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_1_var_test.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_catches_stream.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_catches_stream.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_catches_thread_and_block_and_device.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_catches_thread_and_block_and_device.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu -> /pytorch/c10/hip/test/impl/HIPAssertionsTest_multiple_writes_from_blocks_and_threads.hip [ok] +#10 34.98 /pytorch/c10/cuda/test/impl/CUDATest.cpp -> /pytorch/c10/hip/test/impl/HIPTest.cpp [ok] +#10 34.98 /pytorch/third_party/nvfuser/csrc/partition.cpp -> /pytorch/third_party/nvfuser/csrc/partition.cpp [ok] +#10 34.98 /pytorch/third_party/nvfuser/csrc/lower_validation.h -> /pytorch/third_party/nvfuser/csrc/lower_validation.h [skipped, already hipified] +#10 34.98 /pytorch/third_party/nvfuser/csrc/manager.h -> /pytorch/third_party/nvfuser/csrc/manager.h [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/iter_visitor.cpp -> /pytorch/third_party/nvfuser/csrc/iter_visitor.cpp [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/lower_allocation.h -> /pytorch/third_party/nvfuser/csrc/lower_allocation.h [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/inlining.h -> /pytorch/third_party/nvfuser/csrc/inlining.h [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/lower_double_buffer.h -> /pytorch/third_party/nvfuser/csrc/lower_double_buffer.h [ok] +#10 34.99 /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.cpp [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/lower_shift.h -> /pytorch/third_party/nvfuser/csrc/lower_shift.h [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/lower2device.cpp -> /pytorch/third_party/nvfuser/csrc/lower2device.cpp [ok] +#10 34.99 /pytorch/third_party/nvfuser/csrc/inlining.cpp -> /pytorch/third_party/nvfuser/csrc/inlining.cpp [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.cpp -> /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.cpp [skipped, already hipified] +#10 34.99 /pytorch/third_party/nvfuser/csrc/fusion.h -> /pytorch/third_party/nvfuser/csrc/fusion.h [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/lower_index_compute.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index_compute.cpp [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/register_interface.cpp -> /pytorch/third_party/nvfuser/csrc/register_interface.cpp [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/fusion.cpp -> /pytorch/third_party/nvfuser/csrc/fusion.cpp [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/utils.h -> /pytorch/third_party/nvfuser/csrc/utils.h [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/lower_shift.cpp -> /pytorch/third_party/nvfuser/csrc/lower_shift.cpp [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/type_inference.cpp -> /pytorch/third_party/nvfuser/csrc/type_inference.cpp [skipped, already hipified] +#10 35.00 /pytorch/third_party/nvfuser/csrc/kernel_ir.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_ir.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/iter_visitor.h -> /pytorch/third_party/nvfuser/csrc/iter_visitor.h [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.cpp -> /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/ir_graphviz.cpp -> /pytorch/third_party/nvfuser/csrc/ir_graphviz.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/ir_container.h -> /pytorch/third_party/nvfuser/csrc/ir_container.h [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/manager.cpp -> /pytorch/third_party/nvfuser/csrc/manager.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/lower_magic_zero.cpp -> /pytorch/third_party/nvfuser/csrc/lower_magic_zero.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/type_promotion.cpp -> /pytorch/third_party/nvfuser/csrc/type_promotion.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/root_domain_map.cpp -> /pytorch/third_party/nvfuser/csrc/root_domain_map.cpp [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/lower2device.h -> /pytorch/third_party/nvfuser/csrc/lower2device.h [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/non_divisible_split.h -> /pytorch/third_party/nvfuser/csrc/non_divisible_split.h [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/lower_predicate.h -> /pytorch/third_party/nvfuser/csrc/lower_predicate.h [skipped, already hipified] +#10 35.01 /pytorch/third_party/nvfuser/csrc/ir_iostream.h -> /pytorch/third_party/nvfuser/csrc/ir_iostream.h [skipped, already hipified] +#10 35.02 /pytorch/third_party/nvfuser/csrc/ir_internal_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_internal_nodes.h [skipped, already hipified] +#10 35.02 /pytorch/third_party/nvfuser/csrc/grouped_reduction.cpp -> /pytorch/third_party/nvfuser/csrc/grouped_reduction.cpp [skipped, already hipified] +#10 35.02 /pytorch/third_party/nvfuser/csrc/ir_nodes.cpp -> /pytorch/third_party/nvfuser/csrc/ir_nodes.cpp [skipped, already hipified] +#10 35.02 /pytorch/third_party/nvfuser/csrc/partial_split_map.h -> /pytorch/third_party/nvfuser/csrc/partial_split_map.h [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/lower_validation.cpp -> /pytorch/third_party/nvfuser/csrc/lower_validation.cpp [ok] +#10 35.03 /pytorch/third_party/nvfuser/csrc/mutator.cpp -> /pytorch/third_party/nvfuser/csrc/mutator.cpp [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.cpp -> /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.cpp [ok] +#10 35.03 /pytorch/third_party/nvfuser/csrc/ir_container.cpp -> /pytorch/third_party/nvfuser/csrc/ir_container.cpp [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/lower_divisible_split.h -> /pytorch/third_party/nvfuser/csrc/lower_divisible_split.h [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/lower_sync_information.h -> /pytorch/third_party/nvfuser/csrc/lower_sync_information.h [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/dispatch.cpp -> /pytorch/third_party/nvfuser/csrc/dispatch.cpp [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/lower_unroll.h -> /pytorch/third_party/nvfuser/csrc/lower_unroll.h [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/lower_index_hoist.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index_hoist.cpp [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.cpp [skipped, already hipified] +#10 35.03 /pytorch/third_party/nvfuser/csrc/ir_base_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_base_nodes.h [skipped, already hipified] +#10 35.04 /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.h -> /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.h [skipped, already hipified] +#10 35.04 /pytorch/third_party/nvfuser/csrc/partial_split_map.cpp -> /pytorch/third_party/nvfuser/csrc/partial_split_map.cpp [skipped, already hipified] +#10 35.04 /pytorch/third_party/nvfuser/csrc/lower_expr_sort.h -> /pytorch/third_party/nvfuser/csrc/lower_expr_sort.h [skipped, already hipified] +#10 35.04 /pytorch/third_party/nvfuser/csrc/lower_alias_memory.cpp -> /pytorch/third_party/nvfuser/csrc/lower_alias_memory.cpp [skipped, already hipified] +#10 35.04 /pytorch/third_party/nvfuser/csrc/expr_evaluator.h -> /pytorch/third_party/nvfuser/csrc/expr_evaluator.h [skipped, already hipified] +#10 35.04 /pytorch/third_party/nvfuser/csrc/lower_predicate.cpp -> /pytorch/third_party/nvfuser/csrc/lower_predicate.cpp [skipped, already hipified] +#10 35.05 /pytorch/third_party/nvfuser/csrc/index_compute.cpp -> /pytorch/third_party/nvfuser/csrc/index_compute.cpp [skipped, already hipified] +#10 35.05 /pytorch/third_party/nvfuser/csrc/predicate_compute.h -> /pytorch/third_party/nvfuser/csrc/predicate_compute.h [skipped, already hipified] +#10 35.05 /pytorch/third_party/nvfuser/csrc/compute_at_map.h -> /pytorch/third_party/nvfuser/csrc/compute_at_map.h [skipped, already hipified] +#10 35.05 /pytorch/third_party/nvfuser/csrc/executor_utils.cpp -> /pytorch/third_party/nvfuser/csrc/executor_utils.cpp [ok] +#10 35.05 /pytorch/third_party/nvfuser/csrc/predicate_compute.cpp -> /pytorch/third_party/nvfuser/csrc/predicate_compute.cpp [skipped, already hipified] +#10 35.05 /pytorch/third_party/nvfuser/csrc/register_interface.h -> /pytorch/third_party/nvfuser/csrc/register_interface.h [skipped, already hipified] +#10 35.06 /pytorch/third_party/nvfuser/csrc/lower_index.cpp -> /pytorch/third_party/nvfuser/csrc/lower_index.cpp [skipped, already hipified] +#10 35.06 /pytorch/third_party/nvfuser/csrc/type_promotion.h -> /pytorch/third_party/nvfuser/csrc/type_promotion.h [skipped, already hipified] +#10 35.06 /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.h -> /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.h [skipped, already hipified] +#10 35.06 /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.h -> /pytorch/third_party/nvfuser/csrc/kernel_expr_evaluator.h [skipped, already hipified] +#10 35.06 /pytorch/third_party/nvfuser/csrc/type.cpp -> /pytorch/third_party/nvfuser/csrc/type.cpp [ok] +#10 35.06 /pytorch/third_party/nvfuser/csrc/arith.cpp -> /pytorch/third_party/nvfuser/csrc/arith.cpp [skipped, already hipified] +#10 35.06 /pytorch/third_party/nvfuser/csrc/ir_graphviz.h -> /pytorch/third_party/nvfuser/csrc/ir_graphviz.h [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/ir_iostream.cpp -> /pytorch/third_party/nvfuser/csrc/ir_iostream.cpp [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/ir_utils.cpp -> /pytorch/third_party/nvfuser/csrc/ir_utils.cpp [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/lower_loops.cpp -> /pytorch/third_party/nvfuser/csrc/lower_loops.cpp [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/transform_rfactor.cpp -> /pytorch/third_party/nvfuser/csrc/transform_rfactor.cpp [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/kernel_cache.h -> /pytorch/third_party/nvfuser/csrc/kernel_cache.h [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/disjoint_set.h -> /pytorch/third_party/nvfuser/csrc/disjoint_set.h [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.cpp -> /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.cpp [skipped, already hipified] +#10 35.07 /pytorch/third_party/nvfuser/csrc/utils.cpp -> /pytorch/third_party/nvfuser/csrc/utils.cpp [skipped, already hipified] +#10 35.08 /pytorch/third_party/nvfuser/csrc/parser.cpp -> /pytorch/third_party/nvfuser/csrc/parser.cpp [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/lower_replace_size.cpp -> /pytorch/third_party/nvfuser/csrc/lower_replace_size.cpp [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.h -> /pytorch/third_party/nvfuser/csrc/parallel_dimension_map.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/transform_view.h -> /pytorch/third_party/nvfuser/csrc/transform_view.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/type_inference.h -> /pytorch/third_party/nvfuser/csrc/type_inference.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/type.h -> /pytorch/third_party/nvfuser/csrc/type.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/transform_iter.h -> /pytorch/third_party/nvfuser/csrc/transform_iter.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/lower_magic_zero.h -> /pytorch/third_party/nvfuser/csrc/lower_magic_zero.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/expr_evaluator.cpp -> /pytorch/third_party/nvfuser/csrc/expr_evaluator.cpp [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/compute_at_map.cpp -> /pytorch/third_party/nvfuser/csrc/compute_at_map.cpp [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/codegen.h -> /pytorch/third_party/nvfuser/csrc/codegen.h [skipped, already hipified] +#10 35.09 /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.h -> /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.h [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/fusion_segmenter.cpp -> /pytorch/third_party/nvfuser/csrc/fusion_segmenter.cpp [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/compute_at.cpp -> /pytorch/third_party/nvfuser/csrc/compute_at.cpp [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.cpp -> /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.cpp [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.cpp -> /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.cpp [ok] +#10 35.10 /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.cpp -> /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.cpp [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.h -> /pytorch/third_party/nvfuser/csrc/lower_trivial_reductions.h [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/parser.h -> /pytorch/third_party/nvfuser/csrc/parser.h [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/vectorization_info.h -> /pytorch/third_party/nvfuser/csrc/vectorization_info.h [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/dynamic_type.h -> /pytorch/third_party/nvfuser/csrc/dynamic_type.h [skipped, already hipified] +#10 35.10 /pytorch/third_party/nvfuser/csrc/lower_unroll.cpp -> /pytorch/third_party/nvfuser/csrc/lower_unroll.cpp [skipped, already hipified] +#10 35.11 /pytorch/third_party/nvfuser/csrc/kernel.h -> /pytorch/third_party/nvfuser/csrc/kernel.h [skipped, already hipified] +#10 35.11 /pytorch/third_party/nvfuser/csrc/lower_utils.cpp -> /pytorch/third_party/nvfuser/csrc/lower_utils.cpp [ok] +#10 35.11 /pytorch/third_party/nvfuser/csrc/instrumentation.cpp -> /pytorch/third_party/nvfuser/csrc/instrumentation.cpp [skipped, already hipified] +#10 35.11 /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.cpp -> /pytorch/third_party/nvfuser/csrc/lower_predicate_elimination.cpp [ok] +#10 35.11 /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.cpp -> /pytorch/third_party/nvfuser/csrc/lower_warp_reduce.cpp [ok] +#10 35.11 /pytorch/third_party/nvfuser/csrc/kernel_cache.cpp -> /pytorch/third_party/nvfuser/csrc/kernel_cache.cpp [ok] +#10 35.11 /pytorch/third_party/nvfuser/csrc/executor_launch_params.h -> /pytorch/third_party/nvfuser/csrc/executor_launch_params.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/evaluator_common.h -> /pytorch/third_party/nvfuser/csrc/evaluator_common.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/ir_cloner.cpp -> /pytorch/third_party/nvfuser/csrc/ir_cloner.cpp [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/lower_double_buffer.cpp -> /pytorch/third_party/nvfuser/csrc/lower_double_buffer.cpp [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/ir_utils.h -> /pytorch/third_party/nvfuser/csrc/ir_utils.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/ir_builder.h -> /pytorch/third_party/nvfuser/csrc/ir_builder.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/lower_instrument.cpp -> /pytorch/third_party/nvfuser/csrc/lower_instrument.cpp [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/transform_view.cpp -> /pytorch/third_party/nvfuser/csrc/transform_view.cpp [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/lower_loops.h -> /pytorch/third_party/nvfuser/csrc/lower_loops.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.cpp -> /pytorch/third_party/nvfuser/csrc/lower_fused_reduction.cpp [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/kernel.cpp -> /pytorch/third_party/nvfuser/csrc/kernel.cpp [ok] +#10 35.12 /pytorch/third_party/nvfuser/csrc/lower_index_compute.h -> /pytorch/third_party/nvfuser/csrc/lower_index_compute.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/compute_at.h -> /pytorch/third_party/nvfuser/csrc/compute_at.h [skipped, already hipified] +#10 35.12 /pytorch/third_party/nvfuser/csrc/transform_replay.h -> /pytorch/third_party/nvfuser/csrc/transform_replay.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.h -> /pytorch/third_party/nvfuser/csrc/parallel_type_bitmap.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/instrumentation.h -> /pytorch/third_party/nvfuser/csrc/instrumentation.h [ok] +#10 35.13 /pytorch/third_party/nvfuser/csrc/mutator.h -> /pytorch/third_party/nvfuser/csrc/mutator.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/fusion_segmenter.h -> /pytorch/third_party/nvfuser/csrc/fusion_segmenter.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/lower_instrument.h -> /pytorch/third_party/nvfuser/csrc/lower_instrument.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/root_domain_map.h -> /pytorch/third_party/nvfuser/csrc/root_domain_map.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.h -> /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.h [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/lower_expr_sort.cpp -> /pytorch/third_party/nvfuser/csrc/lower_expr_sort.cpp [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/contiguity.cpp -> /pytorch/third_party/nvfuser/csrc/contiguity.cpp [skipped, already hipified] +#10 35.13 /pytorch/third_party/nvfuser/csrc/lower_replace_size.h -> /pytorch/third_party/nvfuser/csrc/lower_replace_size.h [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/executor.cpp -> /pytorch/third_party/nvfuser/csrc/executor.cpp [ok] +#10 35.14 /pytorch/third_party/nvfuser/csrc/ir_cloner.h -> /pytorch/third_party/nvfuser/csrc/ir_cloner.h [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/tensor_view.cpp -> /pytorch/third_party/nvfuser/csrc/tensor_view.cpp [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/mma_type.h -> /pytorch/third_party/nvfuser/csrc/mma_type.h [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/ir_printer.h -> /pytorch/third_party/nvfuser/csrc/ir_printer.h [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/evaluator_common.cpp -> /pytorch/third_party/nvfuser/csrc/evaluator_common.cpp [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.cpp -> /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.cpp [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/ir_all_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_all_nodes.h [skipped, already hipified] +#10 35.14 /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.cpp -> /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.cpp [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/lower_utils.h -> /pytorch/third_party/nvfuser/csrc/lower_utils.h [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.h -> /pytorch/third_party/nvfuser/csrc/lower_insert_syncs.h [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/non_divisible_split.cpp -> /pytorch/third_party/nvfuser/csrc/non_divisible_split.cpp [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/mma_type.cpp -> /pytorch/third_party/nvfuser/csrc/mma_type.cpp [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/contiguity.h -> /pytorch/third_party/nvfuser/csrc/contiguity.h [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/executor_launch_params.cpp -> /pytorch/third_party/nvfuser/csrc/executor_launch_params.cpp [ok] +#10 35.15 /pytorch/third_party/nvfuser/csrc/dispatch.h -> /pytorch/third_party/nvfuser/csrc/dispatch.h [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/lower_sync_information.cpp -> /pytorch/third_party/nvfuser/csrc/lower_sync_information.cpp [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/lower_divisible_split.cpp -> /pytorch/third_party/nvfuser/csrc/lower_divisible_split.cpp [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/arith.h -> /pytorch/third_party/nvfuser/csrc/arith.h [skipped, already hipified] +#10 35.15 /pytorch/third_party/nvfuser/csrc/executor.h -> /pytorch/third_party/nvfuser/csrc/executor.h [ok] +#10 35.15 /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.h -> /pytorch/third_party/nvfuser/csrc/maxinfo_propagator.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/transform_iter.cpp -> /pytorch/third_party/nvfuser/csrc/transform_iter.cpp [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/kernel_ir.h -> /pytorch/third_party/nvfuser/csrc/kernel_ir.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.h -> /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/ir_base_nodes.cpp -> /pytorch/third_party/nvfuser/csrc/ir_base_nodes.cpp [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_index.h -> /pytorch/third_party/nvfuser/csrc/lower_index.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/grouped_reduction.h -> /pytorch/third_party/nvfuser/csrc/grouped_reduction.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/partition.h -> /pytorch/third_party/nvfuser/csrc/partition.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_alias_memory.h -> /pytorch/third_party/nvfuser/csrc/lower_alias_memory.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.h -> /pytorch/third_party/nvfuser/csrc/kernel_ir_dispatch.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.h -> /pytorch/third_party/nvfuser/csrc/lower_trivial_broadcast.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_index_hoist.h -> /pytorch/third_party/nvfuser/csrc/lower_index_hoist.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/transform_rfactor.h -> /pytorch/third_party/nvfuser/csrc/transform_rfactor.h [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.h -> /pytorch/third_party/nvfuser/csrc/executor_kernel_arg.h [ok] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.cpp -> /pytorch/third_party/nvfuser/csrc/lower_bank_conflict.cpp [skipped, already hipified] +#10 35.16 /pytorch/third_party/nvfuser/csrc/executor_utils.h -> /pytorch/third_party/nvfuser/csrc/executor_utils.h [ok] +#10 35.16 /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.h -> /pytorch/third_party/nvfuser/csrc/lower_thread_predicate.h [skipped, already hipified] +#10 35.17 /pytorch/third_party/nvfuser/csrc/graph_fuser.cpp -> /pytorch/third_party/nvfuser/csrc/graph_fuser.cpp [skipped, already hipified] +#10 35.17 /pytorch/third_party/nvfuser/csrc/ir_builder.cpp -> /pytorch/third_party/nvfuser/csrc/ir_builder.cpp [skipped, already hipified] +#10 35.17 /pytorch/third_party/nvfuser/csrc/index_compute.h -> /pytorch/third_party/nvfuser/csrc/index_compute.h [skipped, already hipified] +#10 35.17 /pytorch/third_party/nvfuser/csrc/ir_interface_nodes.h -> /pytorch/third_party/nvfuser/csrc/ir_interface_nodes.h [skipped, already hipified] +#10 35.17 /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.h -> /pytorch/third_party/nvfuser/csrc/lower_fusion_simplifier.h [skipped, already hipified] +#10 35.18 /pytorch/third_party/nvfuser/csrc/transform_replay.cpp -> /pytorch/third_party/nvfuser/csrc/transform_replay.cpp [skipped, already hipified] +#10 35.18 /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.cpp -> /pytorch/third_party/nvfuser/csrc/lower_misaligned_vectorization.cpp [skipped, already hipified] +#10 35.18 /pytorch/third_party/nvfuser/csrc/lower_allocation.cpp -> /pytorch/third_party/nvfuser/csrc/lower_allocation.cpp [skipped, already hipified] +#10 35.18 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.h [skipped, already hipified] +#10 35.18 /pytorch/third_party/nvfuser/csrc/scheduler/utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/utils.h [skipped, already hipified] +#10 35.18 /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.cpp [skipped, already hipified] +#10 35.19 /pytorch/third_party/nvfuser/csrc/scheduler/registry.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/registry.cpp [ok] +#10 35.19 /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.cpp [skipped, already hipified] +#10 35.19 /pytorch/third_party/nvfuser/csrc/scheduler/transpose.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose.cpp [ok] +#10 35.19 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise.cpp [ok] +#10 35.19 /pytorch/third_party/nvfuser/csrc/scheduler/matmul.h -> /pytorch/third_party/nvfuser/csrc/scheduler/matmul.h [skipped, already hipified] +#10 35.20 /pytorch/third_party/nvfuser/csrc/scheduler/reduction.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction.cpp [ok] +#10 35.20 /pytorch/third_party/nvfuser/csrc/scheduler/utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/utils.cpp [skipped, already hipified] +#10 35.20 /pytorch/third_party/nvfuser/csrc/scheduler/debug_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/debug_utils.h [skipped, already hipified] +#10 35.20 /pytorch/third_party/nvfuser/csrc/scheduler/normalization.h -> /pytorch/third_party/nvfuser/csrc/scheduler/normalization.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/normalization.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/normalization.cpp [ok] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_heuristic.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/registry.h -> /pytorch/third_party/nvfuser/csrc/scheduler/registry.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/transpose_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose_heuristic.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_heuristic.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/heuristic.h -> /pytorch/third_party/nvfuser/csrc/scheduler/heuristic.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/reduction.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/all_schedulers.h -> /pytorch/third_party/nvfuser/csrc/scheduler/all_schedulers.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.h -> /pytorch/third_party/nvfuser/csrc/scheduler/vectorize_helper.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.cpp [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.cpp [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/compile_time_info.h -> /pytorch/third_party/nvfuser/csrc/scheduler/compile_time_info.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/pointwise_utils.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/matmul.cpp -> /pytorch/third_party/nvfuser/csrc/scheduler/matmul.cpp [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/transpose.h -> /pytorch/third_party/nvfuser/csrc/scheduler/transpose.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/mma_utils.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.h -> /pytorch/third_party/nvfuser/csrc/scheduler/reduction_utils.h [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.cpp [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings_extension.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings_extension.cpp [skipped, already hipified] +#10 35.21 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.cpp [skipped, already hipified] +#10 35.22 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_record.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_record.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_definition.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_cache.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/fusion_interface.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.h -> /pytorch/third_party/nvfuser/csrc/python_frontend/python_bindings.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_cache.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_cache.cpp [ok] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_definition.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_definition.cpp [ok] +#10 35.23 /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_record.cpp -> /pytorch/third_party/nvfuser/csrc/python_frontend/test/test_nvfuser_fusion_record.cpp [ok] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/composite.h -> /pytorch/third_party/nvfuser/csrc/ops/composite.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/normalization.h -> /pytorch/third_party/nvfuser/csrc/ops/normalization.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/normalization.cpp -> /pytorch/third_party/nvfuser/csrc/ops/normalization.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/composite.cpp -> /pytorch/third_party/nvfuser/csrc/ops/composite.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/all_ops.h -> /pytorch/third_party/nvfuser/csrc/ops/all_ops.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/alias.h -> /pytorch/third_party/nvfuser/csrc/ops/alias.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/ops/alias.cpp -> /pytorch/third_party/nvfuser/csrc/ops/alias.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/csrc/docs/documentation.h -> /pytorch/third_party/nvfuser/csrc/docs/documentation.h [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/examples/sinh_extension/main.cpp -> /pytorch/third_party/nvfuser/examples/sinh_extension/main.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/examples/sinh_libtorch/main.cpp -> /pytorch/third_party/nvfuser/examples/sinh_libtorch/main.cpp [skipped, already hipified] +#10 35.23 /pytorch/third_party/nvfuser/runtime/fp16_support.cu -> /pytorch/third_party/nvfuser/runtime/fp16_support.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/welford.cu -> /pytorch/third_party/nvfuser/runtime/welford.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/swizzle.cu -> /pytorch/third_party/nvfuser/runtime/swizzle.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/tensorcore.cu -> /pytorch/third_party/nvfuser/runtime/tensorcore.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/grid_sync.cu -> /pytorch/third_party/nvfuser/runtime/grid_sync.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/array_rocm.cu -> /pytorch/third_party/nvfuser/runtime/array_rocm.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/tensor.cu -> /pytorch/third_party/nvfuser/runtime/tensor.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/random_numbers.cu -> /pytorch/third_party/nvfuser/runtime/random_numbers.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/tuple.cu -> /pytorch/third_party/nvfuser/runtime/tuple.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/block_sync_default.cu -> /pytorch/third_party/nvfuser/runtime/block_sync_default.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/array.cu -> /pytorch/third_party/nvfuser/runtime/array.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/warp_rocm.cu -> /pytorch/third_party/nvfuser/runtime/warp_rocm.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/type_traits.cu -> /pytorch/third_party/nvfuser/runtime/type_traits.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/bf16_support.cu -> /pytorch/third_party/nvfuser/runtime/bf16_support.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/memory.cu -> /pytorch/third_party/nvfuser/runtime/memory.cu [skipped, already hipified] +#10 35.24 /pytorch/third_party/nvfuser/runtime/warp.cu -> /pytorch/third_party/nvfuser/runtime/warp.cu [skipped, already hipified] +#10 35.25 /pytorch/third_party/nvfuser/runtime/fused_reduction.cu -> /pytorch/third_party/nvfuser/runtime/fused_reduction.cu [skipped, already hipified] +#10 35.25 /pytorch/third_party/nvfuser/runtime/grid_broadcast.cu -> /pytorch/third_party/nvfuser/runtime/grid_broadcast.cu [skipped, already hipified] +#10 35.25 /pytorch/third_party/nvfuser/runtime/fused_welford_helper.cu -> /pytorch/third_party/nvfuser/runtime/fused_welford_helper.cu [skipped, already hipified] +#10 35.25 /pytorch/third_party/nvfuser/runtime/fused_welford_impl.cu -> /pytorch/third_party/nvfuser/runtime/fused_welford_impl.cu [skipped, already hipified] +#10 35.25 /pytorch/third_party/nvfuser/runtime/index_utils.cu -> /pytorch/third_party/nvfuser/runtime/index_utils.cu [skipped, already hipified] +#10 35.25 /pytorch/third_party/nvfuser/runtime/bf16_support_rocm.cu -> /pytorch/third_party/nvfuser/runtime/bf16_support_rocm.cu [skipped, already hipified] +#10 35.26 /pytorch/third_party/nvfuser/test/test_gpu2.cpp -> /pytorch/third_party/nvfuser/test/test_gpu2.cpp [ok] +#10 35.26 /pytorch/third_party/nvfuser/test/test_gpu_tensor_factories.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_tensor_factories.cpp [ok] +#10 35.27 /pytorch/third_party/nvfuser/test/test_gpu3.cpp -> /pytorch/third_party/nvfuser/test/test_gpu3.cpp [ok] +#10 35.28 /pytorch/third_party/nvfuser/test/test_utils.h -> /pytorch/third_party/nvfuser/test/test_utils.h [ok] +#10 35.28 /pytorch/third_party/nvfuser/test/test_gpu_transpose.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_transpose.cpp [ok] +#10 35.29 /pytorch/third_party/nvfuser/test/test_gpu_shift.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_shift.cpp [ok] +#10 35.29 /pytorch/third_party/nvfuser/test/test_gpu_tensorcore.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_tensorcore.cpp [ok] +#10 35.30 /pytorch/third_party/nvfuser/test/test_gpu_validator.h -> /pytorch/third_party/nvfuser/test/test_gpu_validator.h [ok] +#10 35.30 /pytorch/third_party/nvfuser/test/test_gpu_fused_reduction.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_fused_reduction.cpp [ok] +#10 35.30 /pytorch/third_party/nvfuser/test/test_gpu_utils.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_utils.cpp [ok] +#10 35.31 /pytorch/third_party/nvfuser/test/test_gpu_view.cpp -> /pytorch/third_party/nvfuser/test/test_gpu_view.cpp [ok] +#10 35.31 /pytorch/third_party/nvfuser/test/test_gpu_rng.cu -> /pytorch/third_party/nvfuser/test/test_gpu_rng.cu [ok] +#10 35.33 /pytorch/third_party/nvfuser/test/test_gpu1.cpp -> /pytorch/third_party/nvfuser/test/test_gpu1.cpp [ok] +#10 35.33 Successfully preprocessed all matching files. +#10 35.34 Running setup.py bdist_wheel... +#10 35.50 Building wheel torch-2.0.0a0+gite9ebda2 +#10 35.56 -- Building version 2.0.0a0+gite9ebda2 +#10 35.57 cmake -GNinja -DBUILD_PYTHON=True -DBUILD_TEST=True -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/pytorch/torch -DCMAKE_POLICY_VERSION_MINIMUM=3.18 -DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages -DNUMPY_INCLUDE_DIR=/usr/local/lib/python3.10/dist-packages/numpy/core/include -DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.10 -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 -DTORCH_BUILD_VERSION=2.0.0a0+gite9ebda2 -DUSE_NINJA=1 -DUSE_NUMPY=True /pytorch +#10 35.64 -- The CXX compiler identification is GNU 11.3.0 +#10 35.68 -- The C compiler identification is GNU 11.3.0 +#10 35.69 -- Detecting CXX compiler ABI info +#10 35.73 -- Detecting CXX compiler ABI info - done +#10 35.74 -- Check for working CXX compiler: /usr/bin/c++ - skipped +#10 35.74 -- Detecting CXX compile features +#10 35.74 -- Detecting CXX compile features - done +#10 35.74 -- Detecting C compiler ABI info +#10 35.78 -- Detecting C compiler ABI info - done +#10 35.79 -- Check for working C compiler: /usr/bin/cc - skipped +#10 35.79 -- Detecting C compile features +#10 35.79 -- Detecting C compile features - done +#10 35.79 -- /usr/bin/c++ /pytorch/torch/abi-check.cpp -o /pytorch/build/abi-check +#10 36.01 -- Determined _GLIBCXX_USE_CXX11_ABI=1 +#10 36.01 -- Not forcing any particular BLAS to be found +#10 36.01 -- Could not find ccache. Consider installing ccache to speed up compilation. +#10 36.01 -- Performing Test COMPILER_WORKS +#10 36.05 -- Performing Test COMPILER_WORKS - Success +#10 36.06 -- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING +#10 36.08 -- Performing Test CAFFE2_NEED_TO_TURN_OFF_DEPRECATION_WARNING - Failed +#10 36.08 -- Turning off deprecation warning due to glog. +#10 36.08 -- Performing Test C_HAS_AVX_1 +#10 36.23 -- Performing Test C_HAS_AVX_1 - Failed +#10 36.23 -- Performing Test C_HAS_AVX_2 +#10 36.41 -- Performing Test C_HAS_AVX_2 - Success +#10 36.41 -- Performing Test C_HAS_AVX2_1 +#10 36.57 -- Performing Test C_HAS_AVX2_1 - Failed +#10 36.57 -- Performing Test C_HAS_AVX2_2 +#10 36.75 -- Performing Test C_HAS_AVX2_2 - Success +#10 36.75 -- Performing Test C_HAS_AVX512_1 +#10 36.90 -- Performing Test C_HAS_AVX512_1 - Failed +#10 36.91 -- Performing Test C_HAS_AVX512_2 +#10 37.05 -- Performing Test C_HAS_AVX512_2 - Failed +#10 37.05 -- Performing Test C_HAS_AVX512_3 +#10 37.20 -- Performing Test C_HAS_AVX512_3 - Failed +#10 37.20 -- Performing Test CXX_HAS_AVX_1 +#10 37.36 -- Performing Test CXX_HAS_AVX_1 - Failed +#10 37.36 -- Performing Test CXX_HAS_AVX_2 +#10 37.54 -- Performing Test CXX_HAS_AVX_2 - Success +#10 37.54 -- Performing Test CXX_HAS_AVX2_1 +#10 37.70 -- Performing Test CXX_HAS_AVX2_1 - Failed +#10 37.70 -- Performing Test CXX_HAS_AVX2_2 +#10 37.87 -- Performing Test CXX_HAS_AVX2_2 - Success +#10 37.87 -- Performing Test CXX_HAS_AVX512_1 +#10 38.03 -- Performing Test CXX_HAS_AVX512_1 - Failed +#10 38.03 -- Performing Test CXX_HAS_AVX512_2 +#10 38.17 -- Performing Test CXX_HAS_AVX512_2 - Failed +#10 38.17 -- Performing Test CXX_HAS_AVX512_3 +#10 38.33 -- Performing Test CXX_HAS_AVX512_3 - Failed +#10 38.33 -- Current compiler supports avx2 extension. Will build perfkernels. +#10 38.33 -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS +#10 38.56 -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success +#10 38.56 -- Current compiler supports avx512f extension. Will build fbgemm. +#10 38.56 -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY +#10 38.61 -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success +#10 38.61 -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY +#10 38.65 -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success +#10 38.66 -- Performing Test COMPILER_SUPPORTS_RDYNAMIC +#10 38.70 -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success +#10 38.71 CUDA_TOOLKIT_ROOT_DIR not found or specified +#10 38.72 -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) +#10 38.73 CMake Warning at cmake/public/cuda.cmake:31 (message): +#10 38.73 Caffe2: CUDA cannot be found. Depending on whether you are building Caffe2 +#10 38.73 or a Caffe2 dependent library, the next warning / error will give you more +#10 38.73 info. +#10 38.73 Call Stack (most recent call first): +#10 38.73 cmake/Dependencies.cmake:43 (include) +#10 38.73 CMakeLists.txt:717 (include) +#10 38.73 +#10 38.73 +#10 38.73 CMake Warning at cmake/Dependencies.cmake:66 (message): +#10 38.73 Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. +#10 38.73 Call Stack (most recent call first): +#10 38.73 CMakeLists.txt:717 (include) +#10 38.73 +#10 38.73 +#10 38.73 -- Building using own protobuf under third_party per request. +#10 38.73 -- Use custom protobuf build. +#10 38.73 -- +#10 38.73 -- 3.13.0.0 +#10 38.73 -- Looking for pthread.h +#10 38.77 -- Looking for pthread.h - found +#10 38.77 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +#10 38.82 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +#10 38.82 -- Found Threads: TRUE +#10 38.82 -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS +#10 38.90 -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success +#10 38.91 -- Caffe2 protobuf include directory: $$ +#10 38.91 -- Trying to find preferred BLAS backend of choice: MKL +#10 38.91 -- MKL_THREADING = OMP +#10 38.91 -- Looking for sys/types.h +#10 38.96 -- Looking for sys/types.h - found +#10 38.96 -- Looking for stdint.h +#10 39.00 -- Looking for stdint.h - found +#10 39.00 -- Looking for stddef.h +#10 39.04 -- Looking for stddef.h - found +#10 39.04 -- Check size of void* +#10 39.08 -- Check size of void* - done +#10 39.10 -- MKL_THREADING = OMP +#10 39.12 CMake Warning at cmake/Dependencies.cmake:226 (message): +#10 39.12 MKL could not be found. Defaulting to Eigen +#10 39.12 Call Stack (most recent call first): +#10 39.12 CMakeLists.txt:717 (include) +#10 39.12 +#10 39.12 +#10 39.12 CMake Warning at cmake/Dependencies.cmake:263 (message): +#10 39.12 Preferred BLAS (MKL) cannot be found, now searching for a general BLAS +#10 39.12 library +#10 39.12 Call Stack (most recent call first): +#10 39.12 CMakeLists.txt:717 (include) +#10 39.12 +#10 39.12 +#10 39.12 -- MKL_THREADING = OMP +#10 39.12 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 39.12 -- Library mkl_intel_lp64: not found +#10 39.12 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 39.12 -- Library mkl_intel_lp64: not found +#10 39.12 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 39.12 -- Library mkl_intel: not found +#10 39.12 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 39.12 -- Library mkl_intel: not found +#10 39.13 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 39.13 -- Library mkl_gf_lp64: not found +#10 39.13 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 39.13 -- Library mkl_gf_lp64: not found +#10 39.13 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - gomp - pthread - m - dl] +#10 39.13 -- Library mkl_gf: not found +#10 39.13 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - gomp - pthread - m - dl] +#10 39.13 -- Library mkl_gf: not found +#10 39.13 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_intel_lp64: not found +#10 39.13 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_intel_lp64: not found +#10 39.13 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_intel: not found +#10 39.13 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_intel: not found +#10 39.13 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_gf_lp64: not found +#10 39.13 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_gf_lp64: not found +#10 39.13 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_gf: not found +#10 39.13 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - iomp5 - pthread - m - dl] +#10 39.13 -- Library mkl_gf: not found +#10 39.13 -- Checking for [mkl_intel_lp64 - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 39.13 -- Library mkl_intel_lp64: not found +#10 39.13 -- Checking for [mkl_intel_lp64 - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 39.13 -- Library mkl_intel_lp64: not found +#10 39.13 -- Checking for [mkl_intel - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 39.13 -- Library mkl_intel: not found +#10 39.13 -- Checking for [mkl_intel - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 39.13 -- Library mkl_intel: not found +#10 39.13 -- Checking for [mkl_gf_lp64 - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 39.13 -- Library mkl_gf_lp64: not found +#10 39.13 -- Checking for [mkl_gf_lp64 - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 39.13 -- Library mkl_gf_lp64: not found +#10 39.13 -- Checking for [mkl_gf - mkl_gnu_thread - mkl_core - pthread - m - dl] +#10 39.14 -- Library mkl_gf: not found +#10 39.14 -- Checking for [mkl_gf - mkl_intel_thread - mkl_core - pthread - m - dl] +#10 39.14 -- Library mkl_gf: not found +#10 39.14 -- Checking for [mkl_intel_lp64 - mkl_sequential - mkl_core - m - dl] +#10 39.14 -- Library mkl_intel_lp64: not found +#10 39.14 -- Checking for [mkl_intel - mkl_sequential - mkl_core - m - dl] +#10 39.14 -- Library mkl_intel: not found +#10 39.14 -- Checking for [mkl_gf_lp64 - mkl_sequential - mkl_core - m - dl] +#10 39.14 -- Library mkl_gf_lp64: not found +#10 39.14 -- Checking for [mkl_gf - mkl_sequential - mkl_core - m - dl] +#10 39.14 -- Library mkl_gf: not found +#10 39.14 -- Checking for [mkl_intel_lp64 - mkl_core - gomp - pthread - m - dl] +#10 39.14 -- Library mkl_intel_lp64: not found +#10 39.14 -- Checking for [mkl_intel - mkl_core - gomp - pthread - m - dl] +#10 39.14 -- Library mkl_intel: not found +#10 39.14 -- Checking for [mkl_gf_lp64 - mkl_core - gomp - pthread - m - dl] +#10 39.14 -- Library mkl_gf_lp64: not found +#10 39.14 -- Checking for [mkl_gf - mkl_core - gomp - pthread - m - dl] +#10 39.14 -- Library mkl_gf: not found +#10 39.14 -- Checking for [mkl_intel_lp64 - mkl_core - iomp5 - pthread - m - dl] +#10 39.14 -- Library mkl_intel_lp64: not found +#10 39.14 -- Checking for [mkl_intel - mkl_core - iomp5 - pthread - m - dl] +#10 39.14 -- Library mkl_intel: not found +#10 39.14 -- Checking for [mkl_gf_lp64 - mkl_core - iomp5 - pthread - m - dl] +#10 39.14 -- Library mkl_gf_lp64: not found +#10 39.14 -- Checking for [mkl_gf - mkl_core - iomp5 - pthread - m - dl] +#10 39.14 -- Library mkl_gf: not found +#10 39.14 -- Checking for [mkl_intel_lp64 - mkl_core - pthread - m - dl] +#10 39.14 -- Library mkl_intel_lp64: not found +#10 39.14 -- Checking for [mkl_intel - mkl_core - pthread - m - dl] +#10 39.14 -- Library mkl_intel: not found +#10 39.14 -- Checking for [mkl_gf_lp64 - mkl_core - pthread - m - dl] +#10 39.14 -- Library mkl_gf_lp64: not found +#10 39.14 -- Checking for [mkl_gf - mkl_core - pthread - m - dl] +#10 39.14 -- Library mkl_gf: not found +#10 39.14 -- Checking for [mkl - guide - pthread - m] +#10 39.14 -- Library mkl: not found +#10 39.14 -- MKL library not found +#10 39.14 -- Checking for [blis] +#10 39.14 -- Library blis: BLAS_blis_LIBRARY-NOTFOUND +#10 39.14 -- Checking for [Accelerate] +#10 39.15 -- Library Accelerate: BLAS_Accelerate_LIBRARY-NOTFOUND +#10 39.15 -- Checking for [vecLib] +#10 39.15 -- Library vecLib: BLAS_vecLib_LIBRARY-NOTFOUND +#10 39.15 -- Checking for [flexiblas] +#10 39.15 -- Library flexiblas: BLAS_flexiblas_LIBRARY-NOTFOUND +#10 39.15 -- Checking for [openblas] +#10 39.15 -- Library openblas: /usr/lib/x86_64-linux-gnu/libopenblas.so +#10 39.15 -- Looking for sgemm_ +#10 39.21 -- Looking for sgemm_ - found +#10 39.21 -- Performing Test BLAS_F2C_DOUBLE_WORKS +#10 39.29 -- Performing Test BLAS_F2C_DOUBLE_WORKS - Failed +#10 39.29 -- Performing Test BLAS_F2C_FLOAT_WORKS +#10 39.36 -- Performing Test BLAS_F2C_FLOAT_WORKS - Success +#10 39.36 -- Performing Test BLAS_USE_CBLAS_DOT +#10 39.43 -- Performing Test BLAS_USE_CBLAS_DOT - Success +#10 39.43 -- Looking for sbgemm_ +#10 39.48 -- Looking for sbgemm_ - not found +#10 39.48 -- Found a library with BLAS API (open). Full path: (/usr/lib/x86_64-linux-gnu/libopenblas.so) +#10 39.48 -- Using pocketfft in directory: /pytorch/third_party/pocketfft/ +#10 39.51 -- The ASM compiler identification is GNU +#10 39.51 -- Found assembler: /usr/bin/cc +#10 39.52 -- Brace yourself, we are building NNPACK +#10 39.52 -- Performing Test NNPACK_ARCH_IS_X86_32 +#10 39.54 -- Performing Test NNPACK_ARCH_IS_X86_32 - Failed +#10 39.56 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 39.56 -- NNPACK backend is x86-64 +#10 39.85 -- Found Python: /usr/bin/python3.10 (found version "3.10.12") found components: Interpreter +#10 39.86 -- Failed to find LLVM FileCheck +#10 39.86 -- Found Git: /usr/bin/git (found version "2.34.1") +#10 39.88 -- git version: v1.6.1 normalized to 1.6.1 +#10 39.88 -- Version: 1.6.1 +#10 39.88 -- Looking for shm_open in rt +#10 39.92 -- Looking for shm_open in rt - found +#10 39.92 -- Performing Test HAVE_CXX_FLAG_STD_CXX11 +#10 39.97 -- Performing Test HAVE_CXX_FLAG_STD_CXX11 - Success +#10 39.97 -- Performing Test HAVE_CXX_FLAG_WALL +#10 40.02 -- Performing Test HAVE_CXX_FLAG_WALL - Success +#10 40.02 -- Performing Test HAVE_CXX_FLAG_WEXTRA +#10 40.07 -- Performing Test HAVE_CXX_FLAG_WEXTRA - Success +#10 40.07 -- Performing Test HAVE_CXX_FLAG_WSHADOW +#10 40.13 -- Performing Test HAVE_CXX_FLAG_WSHADOW - Success +#10 40.13 -- Performing Test HAVE_CXX_FLAG_WERROR +#10 40.18 -- Performing Test HAVE_CXX_FLAG_WERROR - Success +#10 40.18 -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE +#10 40.23 -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE - Success +#10 40.23 -- Performing Test HAVE_CXX_FLAG_PEDANTIC +#10 40.28 -- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success +#10 40.28 -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS +#10 40.33 -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success +#10 40.33 -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 +#10 40.36 -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Failed +#10 40.37 -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING +#10 40.42 -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success +#10 40.42 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS +#10 40.47 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success +#10 40.47 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED +#10 40.52 -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED - Success +#10 40.52 -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING +#10 40.57 -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success +#10 40.57 -- Performing Test HAVE_CXX_FLAG_WD654 +#10 40.59 -- Performing Test HAVE_CXX_FLAG_WD654 - Failed +#10 40.59 -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY +#10 40.62 -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Failed +#10 40.62 -- Performing Test HAVE_CXX_FLAG_COVERAGE +#10 40.67 -- Performing Test HAVE_CXX_FLAG_COVERAGE - Success +#10 40.67 -- Performing Test HAVE_STD_REGEX +#10 40.67 -- Performing Test HAVE_STD_REGEX +#10 42.25 -- Performing Test HAVE_STD_REGEX -- success +#10 42.25 -- Performing Test HAVE_GNU_POSIX_REGEX +#10 42.25 -- Performing Test HAVE_GNU_POSIX_REGEX +#10 42.27 -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile +#10 42.27 -- Performing Test HAVE_POSIX_REGEX +#10 42.27 -- Performing Test HAVE_POSIX_REGEX +#10 42.43 -- Performing Test HAVE_POSIX_REGEX -- success +#10 42.43 -- Performing Test HAVE_STEADY_CLOCK +#10 42.43 -- Performing Test HAVE_STEADY_CLOCK +#10 42.54 -- Performing Test HAVE_STEADY_CLOCK -- success +#10 42.56 -- Performing Test COMPILER_SUPPORTS_AVX512 +#10 42.61 -- Performing Test COMPILER_SUPPORTS_AVX512 - Success +#10 42.77 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 42.77 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 42.77 does not match the name of the calling package (OpenMP). This can lead to +#10 42.77 problems in calling code that expects `find_package` result variables +#10 42.77 (e.g., `_FOUND`) to follow a certain pattern. +#10 42.77 Call Stack (most recent call first): +#10 42.77 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 42.77 third_party/fbgemm/CMakeLists.txt:85 (find_package) +#10 42.77 This warning is for project developers. Use -Wno-dev to suppress it. +#10 42.77 +#10 42.77 -- Found OpenMP_C: -fopenmp (found version "4.5") +#10 42.83 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 42.83 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 42.83 does not match the name of the calling package (OpenMP). This can lead to +#10 42.83 problems in calling code that expects `find_package` result variables +#10 42.83 (e.g., `_FOUND`) to follow a certain pattern. +#10 42.83 Call Stack (most recent call first): +#10 42.83 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 42.83 third_party/fbgemm/CMakeLists.txt:85 (find_package) +#10 42.83 This warning is for project developers. Use -Wno-dev to suppress it. +#10 42.83 +#10 42.83 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#10 42.83 -- Found OpenMP: TRUE (found version "4.5") +#10 42.83 CMake Warning at third_party/fbgemm/CMakeLists.txt:87 (message): +#10 42.83 OpenMP found! OpenMP_C_INCLUDE_DIRS = +#10 42.83 +#10 42.83 +#10 42.90 CMake Warning at third_party/fbgemm/CMakeLists.txt:186 (message): +#10 42.90 ========== +#10 42.90 +#10 42.90 +#10 42.90 CMake Warning at third_party/fbgemm/CMakeLists.txt:187 (message): +#10 42.90 CMAKE_BUILD_TYPE = Release +#10 42.90 +#10 42.90 +#10 42.90 CMake Warning at third_party/fbgemm/CMakeLists.txt:188 (message): +#10 42.90 CMAKE_CXX_FLAGS_DEBUG is -g +#10 42.90 +#10 42.90 +#10 42.90 CMake Warning at third_party/fbgemm/CMakeLists.txt:189 (message): +#10 42.90 CMAKE_CXX_FLAGS_RELEASE is -O3 -DNDEBUG +#10 42.90 +#10 42.90 +#10 42.90 CMake Warning at third_party/fbgemm/CMakeLists.txt:190 (message): +#10 42.90 ========== +#10 42.90 +#10 42.90 +#10 42.90 -- Performing Test __CxxFlag__fno_threadsafe_statics +#10 42.95 -- Performing Test __CxxFlag__fno_threadsafe_statics - Success +#10 42.96 -- Performing Test __CxxFlag__fno_semantic_interposition +#10 43.01 -- Performing Test __CxxFlag__fno_semantic_interposition - Success +#10 43.01 -- Performing Test __CxxFlag__fmerge_all_constants +#10 43.06 -- Performing Test __CxxFlag__fmerge_all_constants - Success +#10 43.06 -- Performing Test __CxxFlag__fno_enforce_eh_specs +#10 43.11 -- Performing Test __CxxFlag__fno_enforce_eh_specs - Success +#10 43.12 ** AsmJit Summary ** +#10 43.12 ASMJIT_DIR=/pytorch/third_party/fbgemm/third_party/asmjit +#10 43.12 ASMJIT_TEST=FALSE +#10 43.12 ASMJIT_TARGET_TYPE=STATIC +#10 43.12 ASMJIT_DEPS=pthread;rt +#10 43.12 ASMJIT_LIBS=asmjit;pthread;rt +#10 43.12 ASMJIT_CFLAGS=-DASMJIT_STATIC +#10 43.12 ASMJIT_PRIVATE_CFLAGS=-Wall;-Wextra;-Wconversion;-fno-math-errno;-fno-threadsafe-statics;-fno-semantic-interposition;-DASMJIT_STATIC +#10 43.12 ASMJIT_PRIVATE_CFLAGS_DBG= +#10 43.12 ASMJIT_PRIVATE_CFLAGS_REL=-O2;-fmerge-all-constants;-fno-enforce-eh-specs +#10 43.12 -- Found Numa: /usr/include +#10 43.12 -- Found Numa (include: /usr/include, library: /usr/lib/x86_64-linux-gnu/libnuma.so) +#10 43.13 -- Using third party subdirectory Eigen. +#10 43.14 -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.12", minimum required is "3.0") +#10 43.14 -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 (found suitable version "3.10.12", minimum required is "3.0") +#10 43.14 -- Using third_party/pybind11. +#10 43.14 -- pybind11 include dirs: /pytorch/cmake/../third_party/pybind11/include +#10 43.21 -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) +#10 43.26 -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) +#10 43.26 -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) +#10 43.26 CMake Warning at cmake/Dependencies.cmake:1179 (message): +#10 43.26 Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF +#10 43.26 Call Stack (most recent call first): +#10 43.26 CMakeLists.txt:717 (include) +#10 43.26 +#10 43.26 +#10 43.27 -- Found OpenMP_C: -fopenmp +#10 43.27 -- Found OpenMP_CXX: -fopenmp +#10 43.27 -- Found OpenMP: TRUE +#10 43.27 -- Adding OpenMP CXX_FLAGS: -fopenmp +#10 43.27 -- Will link against OpenMP libraries: /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so;/usr/lib/x86_64-linux-gnu/libpthread.a +#10 43.27 -- Disabling kernel asserts for ROCm +#10 43.27 Building PyTorch for GPU arch: gfx803 +#10 43.46 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#10 43.46 HIP VERSION: 5.4.22803-474e8620 +#10 43.51 -- Caffe2: Header version is: 5.4.2 +#10 43.51 +#10 43.51 ***** ROCm version from rocm_version.h **** +#10 43.51 +#10 43.51 ROCM_VERSION_DEV: 5.4.2 +#10 43.51 ROCM_VERSION_DEV_MAJOR: 5 +#10 43.51 ROCM_VERSION_DEV_MINOR: 4 +#10 43.51 ROCM_VERSION_DEV_PATCH: 2 +#10 43.51 ROCM_VERSION_DEV_INT: 50402 +#10 43.51 HIP_VERSION_MAJOR: 5 +#10 43.51 HIP_VERSION_MINOR: 4 +#10 43.51 TORCH_HIP_VERSION: 504 +#10 43.51 +#10 43.51 ***** Library versions from dpkg ***** +#10 43.51 +#10 43.52 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#10 43.52 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#10 43.53 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#10 43.53 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#10 43.54 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#10 43.56 +#10 43.56 ***** Library versions from cmake find_package ***** +#10 43.56 +#10 43.57 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.57 hip VERSION: 5.4.22505 +#10 43.57 hsa-runtime64 VERSION: 1.7.50402 +#10 43.57 amd_comgr VERSION: 2.4.0 +#10 43.57 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.57 rocrand VERSION: 2.10.9 +#10 43.58 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.58 hiprand VERSION: 2.10.9 +#10 43.58 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.59 rocblas VERSION: 2.46.0 +#10 43.59 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.59 miopen VERSION: 2.19.0 +#10 43.60 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.60 hipfft VERSION: 1.0.10 +#10 43.60 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.60 hipsparse VERSION: 2.3.3 +#10 43.61 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.61 rccl VERSION: 2.13.4 +#10 43.62 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.62 rocprim VERSION: 2.10.9 +#10 43.62 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.63 hipcub VERSION: 2.10.12 +#10 43.63 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.63 rocthrust VERSION: 2.10.9 +#10 43.63 HIP library name: amdhip64 +#10 43.63 INFOCompiling with HIP for AMD. +#10 43.63 INFOForcing USE_SYSTEM_NCCL to ON since it's required by using RCCL +#10 43.63 TORCH_HIP_VERSION=504 is added as a compiler defines +#10 43.64 -- hip::amdhip64 is SHARED_LIBRARY +#10 43.64 -- RCCL Found! +#10 43.66 -- Performing Test UV_LINT_W4 +#10 43.68 -- Performing Test UV_LINT_W4 - Failed +#10 43.68 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER_MSVC +#10 43.71 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER_MSVC - Failed +#10 43.71 -- Performing Test UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC +#10 43.74 -- Performing Test UV_LINT_NO_CONDITIONAL_CONSTANT_MSVC - Failed +#10 43.74 -- Performing Test UV_LINT_NO_NONSTANDARD_MSVC +#10 43.76 -- Performing Test UV_LINT_NO_NONSTANDARD_MSVC - Failed +#10 43.76 -- Performing Test UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC +#10 43.79 -- Performing Test UV_LINT_NO_NONSTANDARD_EMPTY_TU_MSVC - Failed +#10 43.79 -- Performing Test UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC +#10 43.82 -- Performing Test UV_LINT_NO_NONSTANDARD_FILE_SCOPE_MSVC - Failed +#10 43.82 -- Performing Test UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC +#10 43.85 -- Performing Test UV_LINT_NO_NONSTANDARD_NONSTATIC_DLIMPORT_MSVC - Failed +#10 43.85 -- Performing Test UV_LINT_NO_HIDES_LOCAL +#10 43.87 -- Performing Test UV_LINT_NO_HIDES_LOCAL - Failed +#10 43.87 -- Performing Test UV_LINT_NO_HIDES_PARAM +#10 43.90 -- Performing Test UV_LINT_NO_HIDES_PARAM - Failed +#10 43.90 -- Performing Test UV_LINT_NO_HIDES_GLOBAL +#10 43.93 -- Performing Test UV_LINT_NO_HIDES_GLOBAL - Failed +#10 43.93 -- Performing Test UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC +#10 43.96 -- Performing Test UV_LINT_NO_CONDITIONAL_ASSIGNMENT_MSVC - Failed +#10 43.96 -- Performing Test UV_LINT_NO_UNSAFE_MSVC +#10 43.99 -- Performing Test UV_LINT_NO_UNSAFE_MSVC - Failed +#10 43.99 -- Performing Test UV_LINT_WALL +#10 44.03 -- Performing Test UV_LINT_WALL - Success +#10 44.03 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER +#10 44.07 -- Performing Test UV_LINT_NO_UNUSED_PARAMETER - Success +#10 44.07 -- Performing Test UV_LINT_STRICT_PROTOTYPES +#10 44.12 -- Performing Test UV_LINT_STRICT_PROTOTYPES - Success +#10 44.12 -- Performing Test UV_LINT_EXTRA +#10 44.16 -- Performing Test UV_LINT_EXTRA - Success +#10 44.16 -- Performing Test UV_LINT_UTF8_MSVC +#10 44.19 -- Performing Test UV_LINT_UTF8_MSVC - Failed +#10 44.19 -- Performing Test UV_F_STRICT_ALIASING +#10 44.23 -- Performing Test UV_F_STRICT_ALIASING - Success +#10 44.24 -- summary of build options: +#10 44.24 Install prefix: /pytorch/torch +#10 44.24 Target system: Linux +#10 44.24 Compiler: +#10 44.24 C compiler: /usr/bin/cc +#10 44.24 CFLAGS: +#10 44.24 +#10 44.24 -- Found uv: 1.38.1 (found version "1.38.1") +#10 44.24 CMake Warning at cmake/Dependencies.cmake:1404 (message): +#10 44.24 TensorPipe doesn't yet support ROCm +#10 44.24 Call Stack (most recent call first): +#10 44.24 CMakeLists.txt:717 (include) +#10 44.24 +#10 44.24 +#10 44.24 CMake Warning (dev) at third_party/gloo/CMakeLists.txt:21 (option): +#10 44.24 Policy CMP0077 is not set: option() honors normal variables. Run "cmake +#10 44.24 --help-policy CMP0077" for policy details. Use the cmake_policy command to +#10 44.24 set the policy and suppress this warning. +#10 44.24 +#10 44.24 For compatibility with older versions of CMake, option is clearing the +#10 44.24 normal variable 'BUILD_BENCHMARK'. +#10 44.24 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.24 +#10 44.24 -- Gloo build as SHARED library +#10 44.24 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#10 44.24 HIP library name: amdhip64 +#10 44.45 Successfully preprocessed all matching files. +#10 44.46 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.46 The package name passed to `find_package_handle_standard_args` (RCCL) does +#10 44.46 not match the name of the calling package (rccl). This can lead to +#10 44.46 problems in calling code that expects `find_package` result variables +#10 44.46 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.46 Call Stack (most recent call first): +#10 44.46 third_party/gloo/cmake/Modules/Findrccl.cmake:43 (find_package_handle_standard_args) +#10 44.46 third_party/gloo/cmake/Dependencies.cmake:181 (find_package) +#10 44.46 third_party/gloo/CMakeLists.txt:111 (include) +#10 44.46 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.46 +#10 44.46 -- Found RCCL: /opt/rocm-5.4.2/include +#10 44.46 -- Determining RCCL version from the header file: /opt/rocm-5.4.2/include/rccl.h +#10 44.46 -- Found RCCL (include: /opt/rocm-5.4.2/include, library: /opt/rocm/lib/librccl.so) +#10 44.48 CMake Warning at cmake/Dependencies.cmake:1500 (message): +#10 44.48 Metal is only used in ios builds. +#10 44.48 Call Stack (most recent call first): +#10 44.48 CMakeLists.txt:717 (include) +#10 44.48 +#10 44.48 +#10 44.50 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 44.50 Generated: /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 44.50 Generated: /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 44.50 Generated: /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 44.74 -- +#10 44.74 -- ******** Summary ******** +#10 44.74 -- CMake version : 3.20.2 +#10 44.74 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 44.74 -- System : Linux +#10 44.74 -- C++ compiler : /usr/bin/c++ +#10 44.74 -- C++ compiler version : 11.3.0 +#10 44.74 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor +#10 44.74 -- Build type : Release +#10 44.74 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;__STDC_FORMAT_MACROS +#10 44.74 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 44.74 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 44.74 -- CMAKE_MODULE_PATH : /opt/rocm/hip/cmake;/pytorch/cmake/Modules;/pytorch/cmake/public/../Modules_CUDA_fix +#10 44.74 -- +#10 44.74 -- ONNX version : 1.13.1rc2 +#10 44.74 -- ONNX NAMESPACE : onnx_torch +#10 44.74 -- ONNX_USE_LITE_PROTO : OFF +#10 44.74 -- USE_PROTOBUF_SHARED_LIBS : OFF +#10 44.74 -- Protobuf_USE_STATIC_LIBS : ON +#10 44.74 -- ONNX_DISABLE_EXCEPTIONS : OFF +#10 44.74 -- ONNX_WERROR : OFF +#10 44.74 -- ONNX_BUILD_TESTS : OFF +#10 44.74 -- ONNX_BUILD_BENCHMARKS : OFF +#10 44.74 -- +#10 44.74 -- Protobuf compiler : +#10 44.74 -- Protobuf includes : +#10 44.74 -- Protobuf libraries : +#10 44.74 -- BUILD_ONNX_PYTHON : OFF +#10 44.74 -- +#10 44.74 -- ******** Summary ******** +#10 44.74 -- CMake version : 3.20.2 +#10 44.74 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 44.74 -- System : Linux +#10 44.74 -- C++ compiler : /usr/bin/c++ +#10 44.74 -- C++ compiler version : 11.3.0 +#10 44.74 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor +#10 44.74 -- Build type : Release +#10 44.74 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 +#10 44.74 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 44.74 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 44.74 -- CMAKE_MODULE_PATH : /opt/rocm/hip/cmake;/pytorch/cmake/Modules;/pytorch/cmake/public/../Modules_CUDA_fix +#10 44.74 -- +#10 44.74 -- ONNX version : 1.4.1 +#10 44.74 -- ONNX NAMESPACE : onnx_torch +#10 44.74 -- ONNX_BUILD_TESTS : OFF +#10 44.74 -- ONNX_BUILD_BENCHMARKS : OFF +#10 44.74 -- ONNX_USE_LITE_PROTO : OFF +#10 44.74 -- ONNXIFI_DUMMY_BACKEND : +#10 44.74 -- +#10 44.74 -- Protobuf compiler : +#10 44.74 -- Protobuf includes : +#10 44.74 -- Protobuf libraries : +#10 44.74 -- BUILD_ONNX_PYTHON : OFF +#10 44.74 -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor +#10 44.74 -- Adding -DNDEBUG to compile flags +#10 44.74 -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 +#10 44.77 -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False +#10 44.77 CMake Warning at cmake/Dependencies.cmake:1689 (message): +#10 44.77 Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. +#10 44.77 Call Stack (most recent call first): +#10 44.77 CMakeLists.txt:717 (include) +#10 44.77 +#10 44.77 +#10 44.77 -- Could not find hardware support for NEON on this machine. +#10 44.77 -- No OMAP3 processor on this machine. +#10 44.77 -- No OMAP4 processor on this machine. +#10 44.77 -- Looking for cheev_ +#10 44.83 -- Looking for cheev_ - found +#10 44.83 -- Looking for cgesdd_ +#10 44.90 -- Looking for cgesdd_ - found +#10 44.90 -- Found a library with LAPACK API (open). +#10 44.90 disabling CUDA because NOT USE_CUDA is set +#10 44.90 -- Will build oneDNN Graph +#10 44.90 -- MKLDNN_CPU_RUNTIME = OMP +#10 44.90 -- cmake version: 3.20.2 +#10 44.90 CMake Deprecation Warning at third_party/ideep/mkl-dnn/CMakeLists.txt:36 (cmake_policy): +#10 44.90 The OLD behavior for policy CMP0025 will be removed from a future version +#10 44.90 of CMake. +#10 44.90 +#10 44.90 The cmake-policies(7) manual explains that the OLD behaviors of all +#10 44.90 policies are deprecated and that a policy should be set to OLD only under +#10 44.90 specific short-term circumstances. Projects should be ported to the NEW +#10 44.90 behavior and not rely on setting a policy to OLD. +#10 44.90 +#10 44.90 +#10 44.90 -- DNNL_TARGET_ARCH: X64 +#10 44.90 -- DNNL_LIBRARY_NAME: dnnl +#10 44.91 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.91 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 44.91 does not match the name of the calling package (OpenMP). This can lead to +#10 44.91 problems in calling code that expects `find_package` result variables +#10 44.91 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.91 Call Stack (most recent call first): +#10 44.91 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 44.91 third_party/ideep/mkl-dnn/third_party/oneDNN/cmake/OpenMP.cmake:69 (find_package) +#10 44.91 third_party/ideep/mkl-dnn/third_party/oneDNN/CMakeLists.txt:117 (include) +#10 44.91 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.91 +#10 44.91 -- Found OpenMP_C: -fopenmp +#10 44.91 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 44.91 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 44.91 does not match the name of the calling package (OpenMP). This can lead to +#10 44.91 problems in calling code that expects `find_package` result variables +#10 44.91 (e.g., `_FOUND`) to follow a certain pattern. +#10 44.91 Call Stack (most recent call first): +#10 44.91 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 44.91 third_party/ideep/mkl-dnn/third_party/oneDNN/cmake/OpenMP.cmake:69 (find_package) +#10 44.91 third_party/ideep/mkl-dnn/third_party/oneDNN/CMakeLists.txt:117 (include) +#10 44.91 This warning is for project developers. Use -Wno-dev to suppress it. +#10 44.91 +#10 44.91 -- Found OpenMP_CXX: -fopenmp +#10 44.91 -- Could NOT find Doxyrest (missing: DOXYREST_EXECUTABLE) +#10 44.93 -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.12", minimum required is "2.7") +#10 44.93 -- Could NOT find Sphinx (missing: SPHINX_EXECUTABLE) +#10 44.93 -- Enabled workload: TRAINING +#10 44.93 -- Enabled primitives: ALL +#10 44.93 -- Enabled primitive CPU ISA: ALL +#10 44.93 -- Enabled primitive GPU ISA: ALL +#10 44.94 -- Primitive cache is enabled +#10 44.96 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.h +#10 45.01 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.h - found +#10 45.01 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph_types.h +#10 45.05 -- Looking for /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph_types.h - found +#10 45.05 -- Looking for C++ include /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.hpp +#10 45.39 -- Looking for C++ include /pytorch/third_party/ideep/mkl-dnn/include/oneapi/dnnl/dnnl_graph.hpp - found +#10 45.39 -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE) +#10 45.39 -- Cannot find Doxygen package +#10 45.40 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 45.40 The package name passed to `find_package_handle_standard_args` (OpenMP_C) +#10 45.40 does not match the name of the calling package (OpenMP). This can lead to +#10 45.40 problems in calling code that expects `find_package` result variables +#10 45.40 (e.g., `_FOUND`) to follow a certain pattern. +#10 45.40 Call Stack (most recent call first): +#10 45.40 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 45.40 third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:62 (find_package) +#10 45.40 third_party/ideep/mkl-dnn/CMakeLists.txt:179 (include) +#10 45.40 This warning is for project developers. Use -Wno-dev to suppress it. +#10 45.40 +#10 45.40 CMake Warning (dev) at /usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.20/Modules/FindPackageHandleStandardArgs.cmake:438 (message): +#10 45.40 The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) +#10 45.40 does not match the name of the calling package (OpenMP). This can lead to +#10 45.40 problems in calling code that expects `find_package` result variables +#10 45.40 (e.g., `_FOUND`) to follow a certain pattern. +#10 45.40 Call Stack (most recent call first): +#10 45.40 cmake/Modules/FindOpenMP.cmake:584 (find_package_handle_standard_args) +#10 45.40 third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:62 (find_package) +#10 45.40 third_party/ideep/mkl-dnn/CMakeLists.txt:179 (include) +#10 45.40 This warning is for project developers. Use -Wno-dev to suppress it. +#10 45.40 +#10 45.40 -- DNNL_GRAPH_BUILD_FOR_CI is set to be OFF +#10 45.40 -- Compiling oneDNN Graph with CPU runtime OMP support +#10 45.40 -- Compiling oneDNN Graph with GPU runtime NONE support +#10 45.41 -- Graph compiler backend is disabled. +#10 45.41 -- Set version definitions to /pytorch/third_party/ideep/mkl-dnn/src/utils/verbose.cpp +#10 45.41 -- Compiled partition cache is enabled +#10 45.41 -- Found MKL-DNN: TRUE +#10 45.42 -- Looking for clock_gettime in rt +#10 45.46 -- Looking for clock_gettime in rt - found +#10 45.46 -- Looking for mmap +#10 45.50 -- Looking for mmap - found +#10 45.50 -- Looking for shm_open +#10 45.55 -- Looking for shm_open - found +#10 45.55 -- Looking for shm_unlink +#10 45.59 -- Looking for shm_unlink - found +#10 45.59 -- Looking for malloc_usable_size +#10 45.63 -- Looking for malloc_usable_size - found +#10 45.63 -- Performing Test C_HAS_THREAD +#10 45.67 -- Performing Test C_HAS_THREAD - Success +#10 45.68 -- Module support is disabled. +#10 45.68 -- Version: 9.1.0 +#10 45.68 -- Build type: Release +#10 45.68 -- CXX_STANDARD: 17 +#10 45.68 -- Performing Test has_std_17_flag +#10 45.73 -- Performing Test has_std_17_flag - Success +#10 45.73 -- Performing Test has_std_1z_flag +#10 45.79 -- Performing Test has_std_1z_flag - Success +#10 45.79 -- Required features: cxx_variadic_templates +#10 45.79 -- Using Kineto with Roctracer support +#10 45.79 -- Configuring Kineto dependency: +#10 45.79 -- KINETO_SOURCE_DIR = /pytorch/third_party/kineto/libkineto +#10 45.79 -- KINETO_BUILD_TESTS = OFF +#10 45.79 -- KINETO_LIBRARY_TYPE = static +#10 45.80 -- Found PythonInterp: /usr/bin/python3 (found version "3.10.12") +#10 45.80 INFO CUDA_SOURCE_DIR = +#10 45.80 INFO ROCM_SOURCE_DIR = /opt/rocm +#10 45.81 INFO Building with roctracer +#10 45.84 -- Kineto: FMT_SOURCE_DIR = /pytorch/third_party/fmt +#10 45.84 -- Kineto: FMT_INCLUDE_DIR = /pytorch/third_party/fmt/include +#10 45.84 INFO CUPTI_INCLUDE_DIR = /extras/CUPTI/include +#10 45.84 INFO ROCTRACER_INCLUDE_DIR = /opt/rocm/include/roctracer +#10 45.84 INFO DYNOLOG_INCLUDE_DIR = /pytorch/third_party/kineto/libkineto/third_party/dynolog/ +#10 45.84 INFO IPCFABRIC_INCLUDE_DIR = /pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ +#10 45.84 -- Configured Kineto +#10 45.84 -- GCC 11.3.0: Adding gcc and gcc_s libs to link line +#10 45.84 -- Performing Test HAS_WERROR_RETURN_TYPE +#10 45.89 -- Performing Test HAS_WERROR_RETURN_TYPE - Success +#10 45.90 -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR +#10 45.95 -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success +#10 45.95 -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT +#10 45.98 -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Failed +#10 45.98 -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT +#10 46.03 -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success +#10 46.03 -- Performing Test HAS_WERROR_BOOL_OPERATION +#10 46.08 -- Performing Test HAS_WERROR_BOOL_OPERATION - Success +#10 46.09 -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE +#10 46.11 -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Failed +#10 46.11 -- Performing Test HAS_WNARROWING +#10 46.17 -- Performing Test HAS_WNARROWING - Success +#10 46.17 -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS +#10 46.22 -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success +#10 46.22 -- Performing Test HAS_WNO_TYPE_LIMITS +#10 46.28 -- Performing Test HAS_WNO_TYPE_LIMITS - Success +#10 46.28 -- Performing Test HAS_WNO_ARRAY_BOUNDS +#10 46.33 -- Performing Test HAS_WNO_ARRAY_BOUNDS - Success +#10 46.33 -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS +#10 46.39 -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success +#10 46.39 -- Performing Test HAS_WUNUSED_LOCAL_TYPEDEFS +#10 46.45 -- Performing Test HAS_WUNUSED_LOCAL_TYPEDEFS - Success +#10 46.45 -- Performing Test HAS_WNO_UNUSED_PARAMETER +#10 46.50 -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success +#10 46.50 -- Performing Test HAS_WNO_UNUSED_FUNCTION +#10 46.56 -- Performing Test HAS_WNO_UNUSED_FUNCTION - Success +#10 46.56 -- Performing Test HAS_WNO_UNUSED_RESULT +#10 46.61 -- Performing Test HAS_WNO_UNUSED_RESULT - Success +#10 46.61 -- Performing Test HAS_WNO_STRICT_OVERFLOW +#10 46.66 -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success +#10 46.66 -- Performing Test HAS_WNO_STRICT_ALIASING +#10 46.72 -- Performing Test HAS_WNO_STRICT_ALIASING - Success +#10 46.72 -- Performing Test HAS_WNO_ERROR_DEPRECATED_DECLARATIONS +#10 46.77 -- Performing Test HAS_WNO_ERROR_DEPRECATED_DECLARATIONS - Success +#10 46.77 -- Performing Test HAS_WVLA_EXTENSION +#10 46.79 -- Performing Test HAS_WVLA_EXTENSION - Failed +#10 46.79 -- Performing Test HAS_WNO_ERROR_PEDANTIC +#10 46.85 -- Performing Test HAS_WNO_ERROR_PEDANTIC - Success +#10 46.85 -- Performing Test HAS_WNO_ERROR_REDUNDANT_DECLS +#10 46.90 -- Performing Test HAS_WNO_ERROR_REDUNDANT_DECLS - Success +#10 46.90 -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST +#10 46.95 -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success +#10 46.95 -- Performing Test HAS_FCOLOR_DIAGNOSTICS +#10 46.98 -- Performing Test HAS_FCOLOR_DIAGNOSTICS - Failed +#10 46.98 -- Performing Test HAS_FDIAGNOSTICS_COLOR_ALWAYS +#10 47.03 -- Performing Test HAS_FDIAGNOSTICS_COLOR_ALWAYS - Success +#10 47.03 -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE +#10 47.08 -- Performing Test HAS_WNO_UNUSED_BUT_SET_VARIABLE - Success +#10 47.08 -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED +#10 47.14 -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Success +#10 47.14 -- Performing Test HAS_FNO_MATH_ERRNO +#10 47.19 -- Performing Test HAS_FNO_MATH_ERRNO - Success +#10 47.19 -- Performing Test HAS_FNO_TRAPPING_MATH +#10 47.24 -- Performing Test HAS_FNO_TRAPPING_MATH - Success +#10 47.24 -- Performing Test HAS_WERROR_FORMAT +#10 47.30 -- Performing Test HAS_WERROR_FORMAT - Success +#10 47.30 -- Performing Test HAS_WERROR_CAST_FUNCTION_TYPE +#10 47.35 -- Performing Test HAS_WERROR_CAST_FUNCTION_TYPE - Success +#10 47.35 -- Performing Test HAS_WNO_STRINGOP_OVERFLOW +#10 47.40 -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Success +#10 47.41 -- Looking for backtrace +#10 47.45 -- Looking for backtrace - found +#10 47.45 -- backtrace facility detected in default set of libraries +#10 47.45 -- Found Backtrace: /usr/include +#10 47.45 -- NUMA paths: +#10 47.45 -- /usr/include +#10 47.45 -- /usr/lib/x86_64-linux-gnu/libnuma.so +#10 49.73 -- headers outputs: +#10 54.62 -- sources outputs: +#10 55.60 -- declarations_yaml outputs: +#10 55.60 -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT +#10 55.65 -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Success +#10 55.69 -- Using ATen parallel backend: OMP +#10 55.69 Building PyTorch for GPU arch: gfx803 +#10 55.69 HIP VERSION: 5.4.22803-474e8620 +#10 55.75 -- Caffe2: Header version is: 5.4.2 +#10 55.75 +#10 55.75 ***** ROCm version from rocm_version.h **** +#10 55.75 +#10 55.75 ROCM_VERSION_DEV: 5.4.2 +#10 55.75 ROCM_VERSION_DEV_MAJOR: 5 +#10 55.75 ROCM_VERSION_DEV_MINOR: 4 +#10 55.75 ROCM_VERSION_DEV_PATCH: 2 +#10 55.75 ROCM_VERSION_DEV_INT: 50402 +#10 55.75 HIP_VERSION_MAJOR: 5 +#10 55.75 HIP_VERSION_MINOR: 4 +#10 55.75 TORCH_HIP_VERSION: 504 +#10 55.75 +#10 55.75 ***** Library versions from dpkg ***** +#10 55.75 +#10 55.76 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#10 55.76 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#10 55.77 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#10 55.78 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#10 55.78 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#10 55.81 +#10 55.81 ***** Library versions from cmake find_package ***** +#10 55.81 +#10 55.81 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.81 hip VERSION: 5.4.22505 +#10 55.81 hsa-runtime64 VERSION: 1.7.50402 +#10 55.81 amd_comgr VERSION: 2.4.0 +#10 55.82 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.82 rocrand VERSION: 2.10.9 +#10 55.82 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.83 hiprand VERSION: 2.10.9 +#10 55.83 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.83 rocblas VERSION: 2.46.0 +#10 55.84 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.84 miopen VERSION: 2.19.0 +#10 55.84 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.84 hipfft VERSION: 1.0.10 +#10 55.85 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.85 hipsparse VERSION: 2.3.3 +#10 55.86 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.86 rccl VERSION: 2.13.4 +#10 55.86 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.86 rocprim VERSION: 2.10.9 +#10 55.87 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.87 hipcub VERSION: 2.10.12 +#10 55.88 -- hip::amdhip64 is SHARED_LIBRARY +#10 55.88 rocthrust VERSION: 2.10.9 +#10 55.88 HIP library name: amdhip64 +#10 55.88 ROCm is enabled. +#10 55.93 CMake Deprecation Warning at third_party/sleef/CMakeLists.txt:91 (cmake_policy): +#10 55.93 The OLD behavior for policy CMP0066 will be removed from a future version +#10 55.93 of CMake. +#10 55.93 +#10 55.93 The cmake-policies(7) manual explains that the OLD behaviors of all +#10 55.93 policies are deprecated and that a policy should be set to OLD only under +#10 55.93 specific short-term circumstances. Projects should be ported to the NEW +#10 55.93 behavior and not rely on setting a policy to OLD. +#10 55.93 +#10 55.93 +#10 55.94 -- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) +#10 55.95 -- Check size of long double +#10 56.00 -- Check size of long double - done +#10 56.00 -- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE +#10 56.04 -- Performing Test COMPILER_SUPPORTS_LONG_DOUBLE - Success +#10 56.04 -- Performing Test COMPILER_SUPPORTS_FLOAT128 +#10 56.08 -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Success +#10 56.08 -- Performing Test COMPILER_SUPPORTS_SSE2 +#10 56.28 -- Performing Test COMPILER_SUPPORTS_SSE2 - Success +#10 56.28 -- Performing Test COMPILER_SUPPORTS_SSE4 +#10 56.47 -- Performing Test COMPILER_SUPPORTS_SSE4 - Success +#10 56.47 -- Performing Test COMPILER_SUPPORTS_AVX +#10 56.65 -- Performing Test COMPILER_SUPPORTS_AVX - Success +#10 56.65 -- Performing Test COMPILER_SUPPORTS_FMA4 +#10 56.84 -- Performing Test COMPILER_SUPPORTS_FMA4 - Success +#10 56.84 -- Performing Test COMPILER_SUPPORTS_AVX2 +#10 57.02 -- Performing Test COMPILER_SUPPORTS_AVX2 - Success +#10 57.02 -- Performing Test COMPILER_SUPPORTS_AVX512F +#10 57.19 -- Performing Test COMPILER_SUPPORTS_AVX512F - Success +#10 57.19 -- Found OpenMP_C: -fopenmp (found version "4.5") +#10 57.19 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#10 57.19 -- Found OpenMP: TRUE (found version "4.5") +#10 57.19 -- Performing Test COMPILER_SUPPORTS_OPENMP +#10 57.24 -- Performing Test COMPILER_SUPPORTS_OPENMP - Success +#10 57.24 -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES +#10 57.29 -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Success +#10 57.29 -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH +#10 57.34 -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success +#10 57.34 -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM +#10 57.39 -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Success +#10 57.40 -- Configuring build for SLEEF-v3.6.0 +#10 57.40 Target system: Linux-6.1.0-34-amd64 +#10 57.40 Target processor: x86_64 +#10 57.40 Host system: Linux-6.1.0-34-amd64 +#10 57.40 Host processor: x86_64 +#10 57.40 Detected C compiler: GNU @ /usr/bin/cc +#10 57.40 CMake: 3.20.2 +#10 57.40 Make program: /usr/bin/ninja +#10 57.40 -- Using option `-Wall -Wno-unused -Wno-attributes -Wno-unused-result -Wno-psabi -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef +#10 57.40 -- Building shared libs : OFF +#10 57.40 -- Building static test bins: OFF +#10 57.40 -- MPFR : LIB_MPFR-NOTFOUND +#10 57.40 -- GMP : LIBGMP-NOTFOUND +#10 57.40 -- RT : /usr/lib/x86_64-linux-gnu/librt.a +#10 57.40 -- FFTW3 : LIBFFTW3-NOTFOUND +#10 57.40 -- OPENSSL : +#10 57.40 -- SDE : SDE_COMMAND-NOTFOUND +#10 57.40 -- RUNNING_ON_TRAVIS : +#10 57.40 -- COMPILER_SUPPORTS_OPENMP : 1 +#10 57.41 AT_INSTALL_INCLUDE_DIR include/ATen/core +#10 57.41 core header install: /pytorch/build/aten/src/ATen/core/TensorBody.h +#10 57.41 core header install: /pytorch/build/aten/src/ATen/core/aten_interned_strings.h +#10 57.41 core header install: /pytorch/build/aten/src/ATen/core/enum_tag.h +#10 57.81 -- Generating sources for unboxing kernels /usr/bin/python3;-m;torchgen.gen_executorch;--source-path=/pytorch/test/edge/../../test/edge;--install-dir=/pytorch/build/out;--tags-path=/pytorch/test/edge/../../aten/src/ATen/native/tags.yaml;--aten-yaml-path=/pytorch/test/edge/../../aten/src/ATen/native/native_functions.yaml;--use-aten-lib;--op-selection-yaml-path=/pytorch/test/edge/../../test/edge/selected_operators.yaml;--custom-ops-yaml-path=/pytorch/test/edge/../../test/edge/custom_ops.yaml +#10 57.84 -- Performing Test HAS_WNO_UNUSED_VARIABLE +#10 57.90 -- Performing Test HAS_WNO_UNUSED_VARIABLE - Success +#10 57.90 -- Performing Test HAS_WNO_MISSING_BRACES +#10 57.96 -- Performing Test HAS_WNO_MISSING_BRACES - Success +#10 57.96 -- Performing Test HAS_WNO_UNUSED_BUT_SET_PARAMETER +#10 58.02 -- Performing Test HAS_WNO_UNUSED_BUT_SET_PARAMETER - Success +#10 58.02 -- _GLIBCXX_USE_CXX11_ABI=1 is already defined as a cmake variable +#10 58.03 CMake Warning (dev) at torch/CMakeLists.txt:387: +#10 58.03 Syntax Warning in cmake code at column 107 +#10 58.03 +#10 58.03 Argument not separated from preceding token by whitespace. +#10 58.03 This warning is for project developers. Use -Wno-dev to suppress it. +#10 58.03 +#10 58.03 CMake Warning (dev) at torch/CMakeLists.txt:387: +#10 58.03 Syntax Warning in cmake code at column 115 +#10 58.03 +#10 58.03 Argument not separated from preceding token by whitespace. +#10 58.03 This warning is for project developers. Use -Wno-dev to suppress it. +#10 58.03 +#10 58.12 -- Using lib/python3.10/dist-packages as python relative installation path +#10 58.15 CMake Warning at CMakeLists.txt:1078 (message): +#10 58.15 Generated cmake files are only fully tested if one builds with system glog, +#10 58.15 gflags, and protobuf. Other settings may generate files that are not well +#10 58.15 tested. +#10 58.15 +#10 58.15 +#10 58.95 -- +#10 58.95 -- ******** Summary ******** +#10 58.95 -- General: +#10 58.95 -- CMake version : 3.20.2 +#10 58.95 -- CMake command : /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake +#10 58.95 -- System : Linux +#10 58.95 -- C++ compiler : /usr/bin/c++ +#10 58.95 -- C++ compiler id : GNU +#10 58.95 -- C++ compiler version : 11.3.0 +#10 58.95 -- Using ccache if found : ON +#10 58.95 -- Found ccache : CCACHE_PROGRAM-NOTFOUND +#10 58.95 -- CXX flags : -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DUSE_FBGEMM -DUSE_QNNPACK -DUSE_PYTORCH_QNNPACK -DUSE_XNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wunused-local-typedefs -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=redundant-decls -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -fno-trapping-math -Werror=format -Werror=cast-function-type -Wno-stringop-overflow +#10 58.95 -- Build type : Release +#10 58.95 -- Compile definitions : ROCM_VERSION=50402;TORCH_HIP_VERSION=504;ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;HAVE_MALLOC_USABLE_SIZE=1;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS +#10 58.95 -- CMAKE_PREFIX_PATH : /usr/local/lib/python3.10/dist-packages +#10 58.95 -- CMAKE_INSTALL_PREFIX : /pytorch/torch +#10 58.95 -- USE_GOLD_LINKER : OFF +#10 58.95 -- +#10 58.95 -- TORCH_VERSION : 2.0.0 +#10 58.95 -- CAFFE2_VERSION : 2.0.0 +#10 58.95 -- BUILD_CAFFE2 : OFF +#10 58.95 -- BUILD_CAFFE2_OPS : OFF +#10 58.95 -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF +#10 58.95 -- BUILD_TENSOREXPR_BENCHMARK: OFF +#10 58.95 -- BUILD_NVFUSER_BENCHMARK: OFF +#10 58.95 -- BUILD_BINARY : OFF +#10 58.95 -- BUILD_CUSTOM_PROTOBUF : ON +#10 58.95 -- Link local protobuf : ON +#10 58.95 -- BUILD_DOCS : OFF +#10 58.95 -- BUILD_PYTHON : True +#10 58.95 -- Python version : 3.10.12 +#10 58.95 -- Python executable : /usr/bin/python3 +#10 58.95 -- Pythonlibs version : 3.10.12 +#10 58.95 -- Python library : /usr/lib/x86_64-linux-gnu/libpython3.10.so.1.0 +#10 58.95 -- Python includes : /usr/include/python3.10 +#10 58.95 -- Python site-packages: lib/python3.10/dist-packages +#10 58.95 -- BUILD_SHARED_LIBS : ON +#10 58.95 -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF +#10 58.95 -- BUILD_TEST : True +#10 58.95 -- BUILD_JNI : OFF +#10 58.95 -- BUILD_MOBILE_AUTOGRAD : OFF +#10 58.95 -- BUILD_LITE_INTERPRETER: OFF +#10 58.95 -- INTERN_BUILD_MOBILE : +#10 58.95 -- TRACING_BASED : OFF +#10 58.95 -- USE_BLAS : 1 +#10 58.95 -- BLAS : open +#10 58.95 -- BLAS_HAS_SBGEMM : +#10 58.95 -- USE_LAPACK : 1 +#10 58.95 -- LAPACK : open +#10 58.95 -- USE_ASAN : OFF +#10 58.95 -- USE_TSAN : OFF +#10 58.95 -- USE_CPP_CODE_COVERAGE : OFF +#10 58.95 -- USE_CUDA : OFF +#10 58.95 -- USE_ROCM : ON +#10 58.95 -- ROCM_VERSION : +#10 58.95 -- BUILD_NVFUSER : ON +#10 58.95 -- USE_EIGEN_FOR_BLAS : ON +#10 58.95 -- USE_FBGEMM : ON +#10 58.95 -- USE_FAKELOWP : OFF +#10 58.95 -- USE_KINETO : ON +#10 58.95 -- USE_FFMPEG : OFF +#10 58.95 -- USE_GFLAGS : OFF +#10 58.95 -- USE_GLOG : OFF +#10 58.95 -- USE_LEVELDB : OFF +#10 58.95 -- USE_LITE_PROTO : OFF +#10 58.95 -- USE_LMDB : OFF +#10 58.95 -- USE_METAL : OFF +#10 58.95 -- USE_PYTORCH_METAL : OFF +#10 58.95 -- USE_PYTORCH_METAL_EXPORT : OFF +#10 58.95 -- USE_MPS : OFF +#10 58.95 -- USE_FFTW : OFF +#10 58.95 -- USE_MKL : OFF +#10 58.95 -- USE_MKLDNN : ON +#10 58.95 -- USE_MKLDNN_ACL : OFF +#10 58.95 -- USE_MKLDNN_CBLAS : OFF +#10 58.95 -- USE_UCC : OFF +#10 58.95 -- USE_ITT : ON +#10 58.95 -- USE_NCCL : ON +#10 58.95 -- USE_SYSTEM_NCCL : ON +#10 58.95 -- USE_NCCL_WITH_UCC : OFF +#10 58.95 -- USE_NNPACK : ON +#10 58.95 -- USE_NUMPY : ON +#10 58.95 -- USE_OBSERVERS : ON +#10 58.95 -- USE_OPENCL : OFF +#10 58.95 -- USE_OPENCV : OFF +#10 58.95 -- USE_OPENMP : ON +#10 58.95 -- USE_TBB : OFF +#10 58.95 -- USE_VULKAN : OFF +#10 58.95 -- USE_PROF : OFF +#10 58.95 -- USE_QNNPACK : ON +#10 58.95 -- USE_PYTORCH_QNNPACK : ON +#10 58.95 -- USE_XNNPACK : ON +#10 58.95 -- USE_REDIS : OFF +#10 58.95 -- USE_ROCKSDB : OFF +#10 58.95 -- USE_ZMQ : OFF +#10 58.95 -- USE_DISTRIBUTED : ON +#10 58.95 -- USE_MPI : OFF +#10 58.95 -- USE_GLOO : ON +#10 58.95 -- USE_GLOO_WITH_OPENSSL : OFF +#10 58.95 -- USE_TENSORPIPE : ON +#10 58.95 -- Public Dependencies : +#10 58.95 -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;qnnpack;pytorch_qnnpack;nnpack;XNNPACK;fbgemm;/usr/lib/x86_64-linux-gnu/libnuma.so;ittnotify;fp16;caffe2::openmp;tensorpipe;gloo;foxi_loader;rt;fmt::fmt-header-only;kineto;gcc_s;gcc;dl +#10 58.95 -- USE_COREML_DELEGATE : OFF +#10 58.95 -- BUILD_LAZY_TS_BACKEND : ON +#10 58.95 -- TORCH_DISABLE_GPU_ASSERTS : ON +#10 58.96 -- Configuring done +#10 60.29 -- Generating done +#10 60.38 CMake Warning: +#10 60.38 Manually-specified variables were not used by the project: +#10 60.38 +#10 60.38 CMAKE_POLICY_VERSION_MINIMUM +#10 60.38 USE_NINJA +#10 60.38 +#10 60.38 +#10 60.38 -- Build files have been written to: /pytorch/build +#10 60.46 cmake --build . --target install --config Release -- -j 14 +#10 63.87 [1/4] Generating ATen declarations_yaml +#10 66.07 [2/4] Generating ATen headers +#10 66.64 [3/4] Generating ATen sources +#10 66.77 [1/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o +#10 67.24 [2/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o +#10 67.56 [3/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o +#10 67.60 [4/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o +#10 67.68 [5/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o +#10 67.71 [6/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o +#10 67.73 [7/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o +#10 67.82 [8/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o +#10 67.83 [9/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o +#10 68.01 [10/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o +#10 68.27 [11/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o +#10 68.27 In file included from /usr/include/string.h:535, +#10 68.27 from ../third_party/protobuf/src/google/protobuf/stubs/port.h:39, +#10 68.27 from ../third_party/protobuf/src/google/protobuf/stubs/macros.h:34, +#10 68.27 from ../third_party/protobuf/src/google/protobuf/stubs/common.h:46, +#10 68.27 from ../third_party/protobuf/src/google/protobuf/message_lite.h:45, +#10 68.27 from ../third_party/protobuf/src/google/protobuf/message_lite.cc:36: +#10 68.27 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 68.27 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 68.27 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 68.27 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30, +#10 68.27 inlined from ‘bool google::protobuf::MessageLite::SerializeToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:403:42: +#10 68.27 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 68.27 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 68.27 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 68.27 30 | __glibc_objsize0 (__dest)); +#10 68.27 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 68.27 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 68.27 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 68.27 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 68.27 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30: +#10 68.27 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 68.27 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 68.27 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 68.27 30 | __glibc_objsize0 (__dest)); +#10 68.27 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 68.41 [12/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o +#10 68.41 [13/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o +#10 68.48 [14/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o +#10 68.52 [15/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o +#10 68.54 [16/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o +#10 68.60 [17/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o +#10 68.64 [18/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o +#10 68.73 [19/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o +#10 68.92 [20/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o +#10 69.24 [21/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o +#10 69.26 [22/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o +#10 69.32 [23/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o +#10 69.54 [24/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o +#10 69.58 [25/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o +#10 69.64 [26/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o +#10 69.98 [27/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o +#10 70.00 [28/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o +#10 70.01 [29/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o +#10 70.02 [30/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o +#10 70.39 [31/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o +#10 70.43 [32/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o +#10 70.44 [33/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o +#10 70.62 [34/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o +#10 70.75 [35/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o +#10 70.81 [36/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o +#10 70.87 [37/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o +#10 71.06 [38/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o +#10 71.13 [39/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o +#10 71.17 [40/6823] Linking CXX static library lib/libprotobuf-lite.a +#10 71.17 [41/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o +#10 71.19 [42/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o +#10 71.42 [43/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o +#10 71.44 [44/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o +#10 71.54 [45/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o +#10 71.54 In file included from /usr/include/string.h:535, +#10 71.54 from ../third_party/protobuf/src/google/protobuf/stubs/port.h:39, +#10 71.54 from ../third_party/protobuf/src/google/protobuf/stubs/macros.h:34, +#10 71.54 from ../third_party/protobuf/src/google/protobuf/stubs/common.h:46, +#10 71.54 from ../third_party/protobuf/src/google/protobuf/message_lite.h:45, +#10 71.54 from ../third_party/protobuf/src/google/protobuf/message_lite.cc:36: +#10 71.54 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 71.54 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 71.54 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 71.54 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30, +#10 71.54 inlined from ‘bool google::protobuf::MessageLite::SerializeToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:403:42: +#10 71.54 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 71.54 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 71.54 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 71.54 30 | __glibc_objsize0 (__dest)); +#10 71.54 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 71.54 In function ‘void* memcpy(void*, const void*, size_t)’, +#10 71.54 inlined from ‘google::protobuf::uint8* google::protobuf::io::EpsCopyOutputStream::WriteRaw(const void*, int, google::protobuf::uint8*)’ at ../third_party/protobuf/src/google/protobuf/io/coded_stream.h:699:16, +#10 71.54 inlined from ‘virtual google::protobuf::uint8* google::protobuf::internal::ImplicitWeakMessage::_InternalSerialize(google::protobuf::uint8*, google::protobuf::io::EpsCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/implicit_weak_message.h:85:28, +#10 71.54 inlined from ‘bool google::protobuf::MessageLite::SerializePartialToZeroCopyStream(google::protobuf::io::ZeroCopyOutputStream*) const’ at ../third_party/protobuf/src/google/protobuf/message_lite.cc:419:30: +#10 71.54 /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ specified size between 18446744071562067968 and 18446744073709551615 exceeds maximum object size 9223372036854775807 [-Wstringop-overflow=] +#10 71.54 29 | return __builtin___memcpy_chk (__dest, __src, __len, +#10 71.54 | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#10 71.54 30 | __glibc_objsize0 (__dest)); +#10 71.54 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 71.59 [46/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o +#10 71.61 [47/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o +#10 71.63 [48/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o +#10 71.80 [49/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o +#10 72.05 [50/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o +#10 72.19 [51/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o +#10 72.33 [52/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o +#10 72.91 [53/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o +#10 72.95 [54/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o +#10 73.33 [55/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o +#10 73.37 [56/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o +#10 73.56 [57/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o +#10 73.58 [58/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o +#10 73.60 [59/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o +#10 73.62 [60/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o +#10 73.63 [61/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o +#10 73.73 [62/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o +#10 74.33 [63/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o +#10 74.72 [64/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o +#10 74.78 [65/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o +#10 75.20 [66/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o +#10 75.35 [67/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o +#10 75.40 [68/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o +#10 75.91 [69/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o +#10 76.08 [70/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o +#10 76.28 [71/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o +#10 76.32 [72/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o +#10 76.33 [73/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o +#10 76.61 [74/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o +#10 77.13 [75/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o +#10 77.14 [76/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o +#10 77.27 [77/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o +#10 77.56 [78/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o +#10 77.64 [79/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o +#10 77.73 [80/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o +#10 77.74 [81/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o +#10 78.12 [82/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o +#10 78.47 [83/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o +#10 78.50 [84/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o +#10 78.52 [85/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o +#10 78.73 [86/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o +#10 78.98 [87/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o +#10 79.12 [88/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o +#10 79.35 [89/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o +#10 79.37 [90/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o +#10 79.39 [91/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o +#10 79.75 [92/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o +#10 80.09 [93/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o +#10 80.12 [94/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o +#10 80.63 [95/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o +#10 80.75 [96/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o +#10 80.85 [97/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o +#10 80.92 [98/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o +#10 81.18 [99/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o +#10 81.26 [100/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o +#10 81.57 [101/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o +#10 81.82 [102/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o +#10 82.06 [103/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o +#10 82.17 [104/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o +#10 82.60 [105/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o +#10 83.33 [106/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o +#10 83.68 [107/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o +#10 83.87 [108/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o +#10 83.90 [109/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o +#10 84.12 [110/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o +#10 84.30 [111/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o +#10 84.61 [112/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o +#10 85.18 [113/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o +#10 85.42 [114/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o +#10 86.14 [115/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o +#10 86.17 [116/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o +#10 86.20 [117/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o +#10 86.34 [118/6823] Linking CXX static library lib/libprotobuf.a +#10 86.37 [119/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o +#10 86.52 [120/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o +#10 86.54 [121/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o +#10 86.55 [122/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/add.c.o +#10 86.59 [123/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/average-pooling.c.o +#10 86.78 [124/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o +#10 86.90 [125/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o +#10 87.17 [126/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o +#10 87.46 [127/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o +#10 87.77 [128/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o +#10 87.96 [129/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o +#10 88.16 [130/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o +#10 88.62 [131/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o +#10 88.85 [132/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o +#10 88.96 [133/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o +#10 88.98 [134/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o +#10 89.01 [135/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o +#10 89.03 [136/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o +#10 89.08 [137/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o +#10 89.08 [138/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o +#10 89.10 [139/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o +#10 89.93 [140/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o +#10 89.97 [141/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o +#10 90.23 [142/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o +#10 90.57 [143/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o +#10 90.89 [144/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o +#10 91.11 [145/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o +#10 91.29 [146/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o +#10 91.40 [147/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o +#10 91.41 [148/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o +#10 91.44 [149/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o +#10 91.55 [150/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o +#10 91.78 [151/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o +#10 91.83 [152/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o +#10 91.94 [153/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o +#10 92.79 [154/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o +#10 92.89 [155/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o +#10 93.26 [156/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o +#10 93.30 [157/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o +#10 93.33 [158/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o +#10 93.41 [159/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o +#10 93.56 [160/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o +#10 93.94 [161/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o +#10 94.17 [162/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o +#10 94.61 [163/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o +#10 94.77 [164/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o +#10 94.87 [165/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o +#10 94.94 [166/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o +#10 95.06 [167/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o +#10 95.17 [168/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o +#10 95.39 [169/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o +#10 95.40 [170/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o +#10 95.48 [171/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o +#10 95.90 [172/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o +#10 96.14 [173/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o +#10 96.41 [174/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o +#10 96.72 [175/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o +#10 96.89 [176/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o +#10 97.41 [177/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o +#10 97.63 [178/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o +#10 97.70 [179/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o +#10 97.77 [180/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o +#10 97.84 [181/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o +#10 97.98 [182/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o +#10 98.00 [183/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o +#10 98.02 [184/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o +#10 98.04 [185/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o +#10 98.13 [186/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o +#10 98.14 [187/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/pthreads.c.o +#10 98.24 [188/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o +#10 98.29 [189/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/init.c.o +#10 98.31 [190/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o +#10 98.31 [191/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/info.c.o +#10 98.32 [192/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o +#10 98.38 [193/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/vendor.c.o +#10 98.39 [194/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/topology.c.o +#10 98.42 [195/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/uarch.c.o +#10 98.53 [196/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/name.c.o +#10 98.57 [197/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/init.c.o +#10 98.58 [198/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o +#10 98.59 [199/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/descriptor.c.o +#10 98.62 [200/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/cache/deterministic.c.o +#10 98.62 [201/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/isa.c.o +#10 98.68 [202/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/multiline.c.o +#10 98.73 [203/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/cpuinfo.c.o +#10 98.75 [204/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/smallfile.c.o +#10 98.77 [205/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/cpulist.c.o +#10 98.79 [206/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/x86/linux/init.c.o +#10 98.82 [207/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/fastpath.c.o +#10 98.85 [208/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o +#10 98.85 [209/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/linux/processors.c.o +#10 98.86 [210/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o +#10 98.87 [211/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/info.c.o +#10 98.89 [212/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/vendor.c.o +#10 98.89 [213/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o +#10 98.90 [214/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o +#10 98.93 [215/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o +#10 98.93 [216/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/init.c.o +#10 98.94 [217/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/uarch.c.o +#10 99.00 [218/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/topology.c.o +#10 99.02 [219/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/cpuinfo.c.o +#10 99.02 [220/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/init.c.o +#10 99.03 [221/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/isa.c.o +#10 99.03 [222/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/name.c.o +#10 99.05 [223/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o +#10 99.05 [224/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/deterministic.c.o +#10 99.05 [225/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/cache/descriptor.c.o +#10 99.09 [226/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/multiline.c.o +#10 99.11 [227/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/smallfile.c.o +#10 99.13 [228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o +#10 99.14 [229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o +#10 99.14 [230/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/processors.c.o +#10 99.14 [231/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/init.c.o +#10 99.15 [232/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/linux/cpulist.c.o +#10 99.18 [233/6823] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/x86/linux/init.c.o +#10 99.19 [234/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/channel-shuffle.c.o +#10 99.20 [235/6823] Building C object confu-deps/cpuinfo/deps/clog/CMakeFiles/clog.dir/src/clog.c.o +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_fatal’: +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c:117:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 99.20 117 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 99.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_error’: +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c:195:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 99.20 195 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 99.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_warning’: +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c:273:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 99.20 273 | write(STDERR_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 99.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_info’: +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c:351:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 99.20 351 | write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 99.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c: In function ‘clog_vlog_debug’: +#10 99.20 ../third_party/cpuinfo/deps/clog/src/clog.c:429:25: warning: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Wunused-result] +#10 99.20 429 | write(STDOUT_FILENO, out_buffer, prefix_chars + format_chars + CLOG_SUFFIX_LENGTH); +#10 99.20 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 99.20 [236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o +#10 99.20 [237/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/clamp.c.o +#10 99.24 [238/6823] Linking C static library lib/libclog.a +#10 99.26 [239/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/fully-connected.c.o +#10 99.28 [240/6823] Linking C static library lib/libcpuinfo_internals.a +#10 99.28 [241/6823] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o +#10 99.29 [242/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/global-average-pooling.c.o +#10 99.29 [243/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sigmoid.c.o +#10 99.30 [244/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/max-pooling.c.o +#10 99.30 [245/6823] Linking C static library lib/libpthreadpool.a +#10 99.32 [246/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/deconvolution.c.o +#10 99.32 [247/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/leaky-relu.c.o +#10 99.32 [248/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/softargmax.c.o +#10 99.32 [249/6823] Linking C static library lib/libcpuinfo.a +#10 99.34 [250/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/operator-delete.c.o +#10 99.35 [251/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8lut32norm/scalar.c.o +#10 99.36 [252/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8lut/scalar.c.o +#10 99.45 [253/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/up8x9-sse2.c.o +#10 99.48 [254/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/sgemm/6x8-psimd.c.o +#10 99.49 [255/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/convolution.c.o +#10 99.50 [256/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/indirection.c.o +#10 99.50 [257/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/up8xm-sse2.c.o +#10 99.56 [258/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8avgpool/mp8x9p8q-sse2.c.o +#10 99.58 [259/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/up8xm-sse2.c.o +#10 99.61 [260/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/operator-run.c.o +#10 99.61 [261/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/mp8x7p7q-sse2.c.o +#10 99.62 [262/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gavgpool/up8x7-sse2.c.o +#10 99.72 [263/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8maxpool/16x9p8q-sse2.c.o +#10 99.74 [264/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8clamp/sse2.c.o +#10 99.75 [265/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8rmax/sse2.c.o +#10 99.78 [266/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/u8maxpool/sub16-sse2.c.o +#10 99.82 [267/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x3-sse2.c.o +#10 99.86 [268/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x2-sse2.c.o +#10 99.87 [269/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/x4-sse2.c.o +#10 99.90 [270/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o +#10 99.92 [271/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o +#10 99.92 [272/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dwconv/up8x9-sse2.c.o +#10 99.93 [273/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8conv/4x4c2-sse2.c.o +#10 99.95 [274/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/x8zip/xm-sse2.c.o +#10 99.98 [275/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8vadd/sse2.c.o +#10 100.00 [276/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o +#10 100.0 [277/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o +#10 100.0 [278/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o +#10 100.0 [279/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o +#10 100.1 [280/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o +#10 100.1 [281/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o +#10 100.1 [282/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o +#10 100.1 [283/6823] Building C object confu-deps/QNNPACK/CMakeFiles/qnnpack.dir/src/q8dwconv/mp8x25-sse2.c.o +#10 100.1 [284/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o +#10 100.1 [285/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o +#10 100.2 [286/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o +#10 100.2 [287/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o +#10 100.2 [288/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o +#10 100.2 [289/6823] Linking C static library lib/libqnnpack.a +#10 100.2 [290/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o +#10 100.2 [291/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o +#10 100.2 [292/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o +#10 100.2 [293/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o +#10 100.2 [294/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o +#10 100.2 [295/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o +#10 100.2 [296/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o +#10 100.3 [297/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o +#10 100.3 [298/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o +#10 100.3 [299/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o +#10 100.3 [300/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o +#10 100.3 [301/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o +#10 100.3 [302/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o +#10 100.4 [303/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o +#10 100.4 [304/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o +#10 100.4 [305/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o +#10 100.4 [306/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-sse2.c.o +#10 100.4 [307/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-sse2.c.o +#10 100.5 [308/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-sse2.c.o +#10 100.5 [309/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o +#10 100.5 [310/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o +#10 100.6 [311/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o +#10 100.6 [312/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o +#10 100.6 [313/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-sse2.c.o +#10 100.7 [314/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-sse2.c.o +#10 100.7 [315/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-sse2.c.o +#10 100.7 [316/6823] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o +#10 100.8 [317/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/sse2.c.o +#10 100.8 [318/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-sse2-per-channel.c.o +#10 100.8 [319/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-sse2.c.o +#10 100.9 [320/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-sse2.c.o +#10 100.9 [321/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x4c2-sse2.c.o +#10 100.9 [322/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/sse2.c.o +#10 101.0 [323/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-sse2.c.o +#10 101.0 [324/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/2x4c8-sse2.c.o +#10 101.0 [325/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-sse2-per-channel.c.o +#10 101.0 [326/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-sse2.c.o +#10 101.0 [327/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-sse2.c.o +#10 101.0 [328/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-sse2.c.o +#10 101.0 [329/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o +#10 101.1 [330/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x4c2-dq-sse2.c.o +#10 101.1 [331/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o +#10 101.1 [332/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-sse2.c.o +#10 101.1 [333/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o +#10 101.1 [334/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-sse2.c.o +#10 101.1 [335/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o +#10 101.1 [336/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-sse2.c.o +#10 101.1 [337/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-sse2.c.o +#10 101.1 [338/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o +#10 101.1 [339/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o +#10 101.1 [340/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o +#10 101.1 [341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o +#10 101.1 [342/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o +#10 101.1 [343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o +#10 101.1 [344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o +#10 101.2 [345/6823] Linking C static library lib/libnnpack_reference_layers.a +#10 101.2 [346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o +#10 101.2 [347/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x4c2-sse2.c.o +#10 101.2 [348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o +#10 101.2 [349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 101.2 [350/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/sse2.c.o +#10 101.2 [351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o +#10 101.2 [352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 101.3 [353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o +#10 101.3 [354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o +#10 101.3 [355/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/assembler.cc.o +#10 101.3 [356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/hardware-config.c.o +#10 101.3 [357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples1-scalar.c.o +#10 101.3 [358/6823] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4c1x4-dq-packedA-sse2.c.o +#10 101.3 [359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x1.c.o +#10 101.3 [360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x2.c.o +#10 101.4 [361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x1.c.o +#10 101.4 [362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x1.c.o +#10 101.4 [363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/cs16-bfly4-samples4-scalar.c.o +#10 101.4 [364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x2.c.o +#10 101.4 [365/6823] Linking CXX static library lib/libpytorch_qnnpack.a +#10 101.4 [366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x2.c.o +#10 101.4 [367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-fftr/gen/cs16-fftr-scalar-x4.c.o +#10 101.4 [368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x3.c.o +#10 101.4 [369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-vsquareabs/gen/cs16-vsquareabs-scalar-x4.c.o +#10 101.4 [370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x1.c.o +#10 101.5 [371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x2.c.o +#10 101.5 [372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x3.c.o +#10 101.5 [373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-x4.c.o +#10 101.5 [374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o +#10 101.5 [375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o +#10 101.5 [376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o +#10 101.5 [377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/cs16-bfly4/gen/cs16-bfly4-scalar-x4.c.o +#10 101.5 [378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o +#10 101.5 [379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o +#10 101.6 [380/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch32-assembler.cc.o +#10 101.6 [381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.o +#10 101.6 [382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o +#10 101.6 [383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o +#10 101.6 [384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o +#10 101.6 [385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.o +#10 101.6 [386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.o +#10 101.7 [387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o +#10 101.7 [388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o +#10 101.7 [389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o +#10 101.7 [390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o +#10 101.7 [391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o +#10 101.7 [392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o +#10 101.7 [393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o +#10 101.7 [394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o +#10 101.8 [395/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/jit.dir/src/jit/aarch64-assembler.cc.o +#10 101.8 [396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o +#10 101.8 [397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o +#10 101.8 [398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.o +#10 101.8 [399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.o +#10 101.8 [400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o +#10 101.8 [401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o +#10 101.8 [402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o +#10 101.9 [403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.o +#10 101.9 [404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.o +#10 101.9 [405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o +#10 101.9 [406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o +#10 101.9 [407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.o +#10 101.9 [408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o +#10 101.9 [409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o +#10 101.9 [410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.o +#10 102.0 [411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o +#10 102.0 [412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.o +#10 102.0 [413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.o +#10 102.0 [414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o +#10 102.0 [415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.o +#10 102.0 [416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.o +#10 102.0 [417/6823] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o +#10 102.0 [418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o +#10 102.0 [419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o +#10 102.1 [420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o +#10 102.1 [421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o +#10 102.1 [422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o +#10 102.1 [423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o +#10 102.1 [424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o +#10 102.1 [425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o +#10 102.1 [426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.o +#10 102.1 [427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o +#10 102.1 [428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o +#10 102.1 [429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o +#10 102.1 [430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o +#10 102.2 [431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.o +#10 102.2 [432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o +#10 102.2 [433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o +#10 102.2 [434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o +#10 102.2 [435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o +#10 102.2 [436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o +#10 102.2 [437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o +#10 102.2 [438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o +#10 102.2 [439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o +#10 102.2 [440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o +#10 102.2 [441/6823] Linking CXX static library lib/libprotoc.a +#10 102.2 [442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o +#10 102.3 [443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o +#10 102.3 [444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o +#10 102.3 [445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o +#10 102.3 [446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o +#10 102.3 [447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o +#10 102.3 [448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o +#10 102.3 [449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o +#10 102.3 [450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o +#10 102.4 [451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o +#10 102.4 [452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o +#10 102.4 [453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o +#10 102.4 [454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x1.c.o +#10 102.4 [455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x2.c.o +#10 102.4 [456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x3.c.o +#10 102.4 [457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x1.c.o +#10 102.5 [458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x2.c.o +#10 102.5 [459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o +#10 102.5 [460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o +#10 102.5 [461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-x4.c.o +#10 102.5 [462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-scalar-c1.c.o +#10 102.5 [463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-scalar-c1.c.o +#10 102.5 [464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-scalar-x1.c.o +#10 102.5 [465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x3.c.o +#10 102.5 [466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o +#10 102.5 [467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-x4.c.o +#10 102.5 [468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o +#10 102.6 [469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o +#10 102.6 [470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 102.6 [471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 102.6 [472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o +#10 102.6 [473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 102.6 [474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 102.6 [475/6823] Linking CXX executable bin/protoc-3.13.0.0 +#10 102.6 [476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 102.6 [477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o +#10 102.6 [478/6823] Creating executable symlink bin/protoc +#10 102.6 [479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 102.6 [480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o +#10 102.6 [481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o +#10 102.6 [482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o +#10 102.6 [483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o +#10 102.7 [484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o +#10 102.7 [485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o +#10 102.7 [486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o +#10 102.7 [487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o +#10 102.7 [488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-2x4-minmax-scalar.c.o +#10 102.7 [489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x4-minmax-scalar.c.o +#10 102.7 [490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o +#10 102.7 [491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o +#10 102.7 [492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o +#10 102.7 [493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x4-minmax-scalar.c.o +#10 102.7 [494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o +#10 102.7 [495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o +#10 102.7 [496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o +#10 102.7 [497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o +#10 102.8 [498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o +#10 102.8 [499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o +#10 102.8 [500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o +#10 102.8 [501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o +#10 102.8 [502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o +#10 102.8 [503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o +#10 102.8 [504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o +#10 102.8 [505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o +#10 102.8 [506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o +#10 102.8 [507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o +#10 102.8 [508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o +#10 102.8 [509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o +#10 102.8 [510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/packing.c.o +#10 102.8 [511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o +#10 102.9 [512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o +#10 102.9 [513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o +#10 102.9 [514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x1.c.o +#10 102.9 [515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o +#10 102.9 [516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x1.c.o +#10 102.9 [517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o +#10 102.9 [518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-scalar-2x4.c.o +#10 102.9 [519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x2.c.o +#10 102.9 [520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x4.c.o +#10 102.9 [521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x1.c.o +#10 102.9 [522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x2.c.o +#10 102.9 [523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-x3.c.o +#10 102.9 [524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x3.c.o +#10 102.9 [525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x1.c.o +#10 102.9 [526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x1.c.o +#10 102.9 [527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-x4.c.o +#10 102.9 [528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x2.c.o +#10 102.9 [529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x3.c.o +#10 102.9 [530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x3.c.o +#10 103.0 [531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x2.c.o +#10 103.0 [532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x1.c.o +#10 103.0 [533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-x4.c.o +#10 103.0 [534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x4.c.o +#10 103.0 [535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-x3.c.o +#10 103.0 [536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x2.c.o +#10 103.0 [537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-x4.c.o +#10 103.0 [538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x1.c.o +#10 103.0 [539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x2.c.o +#10 103.0 [540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x4.c.o +#10 103.0 [541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x1.c.o +#10 103.0 [542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x2-acc2.c.o +#10 103.0 [543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-x3.c.o +#10 103.0 [544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x2.c.o +#10 103.0 [545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4-acc4.c.o +#10 103.0 [546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4-acc2.c.o +#10 103.1 [547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-x4.c.o +#10 103.1 [548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x1.c.o +#10 103.1 [549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x2-acc2.c.o +#10 103.1 [550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x2.c.o +#10 103.1 [551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4-acc2.c.o +#10 103.1 [552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4-acc4.c.o +#10 103.1 [553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-scalar.c.o +#10 103.1 [554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-x4.c.o +#10 103.1 [555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o +#10 103.1 [556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o +#10 103.1 [557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o +#10 103.1 [558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o +#10 103.1 [559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o +#10 103.2 [560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x1.c.o +#10 103.2 [561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o +#10 103.2 [562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o +#10 103.2 [563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o +#10 103.2 [564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x2.c.o +#10 103.2 [565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x4.c.o +#10 103.2 [566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o +#10 103.2 [567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x2.c.o +#10 103.2 [568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x4.c.o +#10 103.2 [569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-scalar-x8.c.o +#10 103.2 [570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x1.c.o +#10 103.2 [571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-relu-scalar-x8.c.o +#10 103.2 [572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x1.c.o +#10 103.3 [573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x2.c.o +#10 103.3 [574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x4.c.o +#10 103.3 [575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-x8.c.o +#10 103.3 [576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x2.c.o +#10 103.3 [577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x1.c.o +#10 103.3 [578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x1.c.o +#10 103.3 [579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x4.c.o +#10 103.3 [580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-scalar-x8.c.o +#10 103.3 [581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x4.c.o +#10 103.3 [582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x2.c.o +#10 103.3 [583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-relu-scalar-x8.c.o +#10 103.3 [584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x1.c.o +#10 103.3 [585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x2.c.o +#10 103.3 [586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o +#10 103.3 [587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x4.c.o +#10 103.3 [588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-x8.c.o +#10 103.3 [589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x1.c.o +#10 103.4 [590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x4.c.o +#10 103.4 [591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x2.c.o +#10 103.4 [592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x1.c.o +#10 103.4 [593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-scalar-x8.c.o +#10 103.4 [594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x2.c.o +#10 103.4 [595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x2.c.o +#10 103.4 [596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x8.c.o +#10 103.4 [597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x1.c.o +#10 103.4 [598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x2.c.o +#10 103.4 [599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-relu-scalar-x4.c.o +#10 103.4 [600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x4.c.o +#10 103.4 [601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x1.c.o +#10 103.4 [602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x4.c.o +#10 103.4 [603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-x8.c.o +#10 103.4 [604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-scalar-x8.c.o +#10 103.4 [605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x1.c.o +#10 103.4 [606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x2.c.o +#10 103.5 [607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x8.c.o +#10 103.5 [608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x1.c.o +#10 103.5 [609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-relu-scalar-x4.c.o +#10 103.5 [610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x8.c.o +#10 103.5 [611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x2.c.o +#10 103.5 [612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x1.c.o +#10 103.5 [613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-x4.c.o +#10 103.5 [614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x2.c.o +#10 103.5 [615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x2.c.o +#10 103.5 [616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x8.c.o +#10 103.5 [617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x1.c.o +#10 103.5 [618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x1.c.o +#10 103.5 [619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x8.c.o +#10 103.5 [620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x4.c.o +#10 103.6 [621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-x4.c.o +#10 103.6 [622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x2.c.o +#10 103.6 [623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-x8.c.o +#10 103.6 [624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-x4.c.o +#10 103.6 [625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x1.c.o +#10 103.6 [626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x4.c.o +#10 103.6 [627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x2.c.o +#10 103.6 [628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x2.c.o +#10 103.6 [629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-x8.c.o +#10 103.6 [630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x1.c.o +#10 103.6 [631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x1.c.o +#10 103.6 [632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x2.c.o +#10 103.6 [633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x4.c.o +#10 103.6 [634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-scalar-x8.c.o +#10 103.6 [635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x1.c.o +#10 103.7 [636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x4.c.o +#10 103.7 [637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x1.c.o +#10 103.7 [638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 103.7 [639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-relu-scalar-x8.c.o +#10 103.7 [640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x2.c.o +#10 103.7 [641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x4.c.o +#10 103.7 [642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-x8.c.o +#10 103.7 [643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x2.c.o +#10 103.7 [644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x4.c.o +#10 103.7 [645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-scalar-x8.c.o +#10 103.7 [646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x1.c.o +#10 103.7 [647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x1.c.o +#10 103.7 [648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x2.c.o +#10 103.7 [649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x2.c.o +#10 103.7 [650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x8.c.o +#10 103.7 [651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x4.c.o +#10 103.8 [652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-relu-scalar-x4.c.o +#10 103.8 [653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x1.c.o +#10 103.8 [654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x2.c.o +#10 103.8 [655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x4.c.o +#10 103.8 [656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x1.c.o +#10 103.8 [657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x2.c.o +#10 103.8 [658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x4.c.o +#10 103.8 [659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-relu-scalar-x8.c.o +#10 103.8 [660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-x8.c.o +#10 103.8 [661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-scalar-x8.c.o +#10 103.8 [662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x1.c.o +#10 103.8 [663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x4.c.o +#10 103.8 [664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x2.c.o +#10 103.8 [665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x1.c.o +#10 103.8 [666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x2.c.o +#10 103.8 [667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-x8.c.o +#10 103.8 [668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x4.c.o +#10 103.8 [669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-scalar-x8.c.o +#10 103.8 [670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x2.c.o +#10 103.9 [671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x1.c.o +#10 103.9 [672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x2.c.o +#10 103.9 [673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x4.c.o +#10 103.9 [674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x1.c.o +#10 103.9 [675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x4.c.o +#10 103.9 [676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x1.c.o +#10 103.9 [677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-x8.c.o +#10 103.9 [678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-relu-scalar-x8.c.o +#10 103.9 [679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x2.c.o +#10 103.9 [680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x4.c.o +#10 103.9 [681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x2.c.o +#10 103.9 [682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x1.c.o +#10 103.9 [683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-x8.c.o +#10 103.9 [684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x4.c.o +#10 103.9 [685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x1.c.o +#10 103.9 [686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x2.c.o +#10 103.9 [687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x2.c.o +#10 104.0 [688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x1.c.o +#10 104.0 [689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-x8.c.o +#10 104.0 [690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x1.c.o +#10 104.0 [691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x4.c.o +#10 104.0 [692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-scalar-x8.c.o +#10 104.0 [693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x4.c.o +#10 104.0 [694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-relu-scalar-x8.c.o +#10 104.0 [695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x2.c.o +#10 104.0 [696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x4.c.o +#10 104.0 [697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-x8.c.o +#10 104.0 [698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x1.c.o +#10 104.0 [699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x2.c.o +#10 104.0 [700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x4.c.o +#10 104.0 [701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-scalar-x8.c.o +#10 104.0 [702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x1.c.o +#10 104.1 [703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x2.c.o +#10 104.1 [704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x4.c.o +#10 104.1 [705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x1.c.o +#10 104.1 [706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-relu-scalar-x8.c.o +#10 104.1 [707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x2.c.o +#10 104.1 [708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x4.c.o +#10 104.1 [709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-x8.c.o +#10 104.1 [710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x1.c.o +#10 104.1 [711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x2.c.o +#10 104.1 [712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-x4.c.o +#10 104.1 [713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x1.c.o +#10 104.1 [714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x1.c.o +#10 104.1 [715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x2.c.o +#10 104.1 [716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x2.c.o +#10 104.1 [717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x3.c.o +#10 104.2 [718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x2.c.o +#10 104.2 [719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x6.c.o +#10 104.2 [720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x3.c.o +#10 104.2 [721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x1.c.o +#10 104.2 [722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x4.c.o +#10 104.2 [723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x4.c.o +#10 104.2 [724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x1.c.o +#10 104.2 [725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x5.c.o +#10 104.2 [726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x4.c.o +#10 104.2 [727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-x2.c.o +#10 104.2 [728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-x5.c.o +#10 104.2 [729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-x4.c.o +#10 104.2 [730/6823] Generating src/x86_64-fma/2d-fourier-8x8.py.o +#10 104.2 [731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-x6.c.o +#10 104.2 [732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o +#10 104.2 [733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o +#10 104.2 [734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x2.c.o +#10 104.2 [735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x1.c.o +#10 104.2 [736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x4.c.o +#10 104.2 [737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o +#10 104.2 [738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-x8.c.o +#10 104.2 [739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x1.c.o +#10 104.3 [740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x2.c.o +#10 104.3 [741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x1.c.o +#10 104.3 [742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x2.c.o +#10 104.3 [743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-x4.c.o +#10 104.3 [744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x1.c.o +#10 104.3 [745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-x4.c.o +#10 104.3 [746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x2.c.o +#10 104.3 [747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x1.c.o +#10 104.3 [748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x2.c.o +#10 104.3 [749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-x4.c.o +#10 104.3 [750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x2.c.o +#10 104.3 [751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-x4.c.o +#10 104.3 [752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x1.c.o +#10 104.3 [753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x1.c.o +#10 104.3 [754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x2.c.o +#10 104.3 [755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x1.c.o +#10 104.3 [756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-x4.c.o +#10 104.3 [757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x2.c.o +#10 104.3 [758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x1.c.o +#10 104.4 [759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-x4.c.o +#10 104.4 [760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-x4.c.o +#10 104.4 [761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x1.c.o +#10 104.4 [762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x4.c.o +#10 104.4 [763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x1.c.o +#10 104.4 [764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x2.c.o +#10 104.4 [765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x2.c.o +#10 104.4 [766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-x2.c.o +#10 104.4 [767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x1.c.o +#10 104.4 [768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x2.c.o +#10 104.4 [769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x1.c.o +#10 104.4 [770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x2.c.o +#10 104.4 [771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-scalar-x4.c.o +#10 104.4 [772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x3.c.o +#10 104.4 [773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-scalar-x4.c.o +#10 104.4 [774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/i16-vlshift/gen/i16-vlshift-scalar-x4.c.o +#10 104.4 [775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-scalar-x4.c.o +#10 104.4 [776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut4-p4.c.o +#10 104.4 [777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut16-p3.c.o +#10 104.4 [778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut8-p3.c.o +#10 104.4 [779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-p6.c.o +#10 104.4 [780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-lut64-p2.c.o +#10 104.4 [781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-scalar-bitcast.c.o +#10 104.4 [782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut8-p4.c.o +#10 104.4 [783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-scalar-fabsf.c.o +#10 104.5 [784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-p5.c.o +#10 104.5 [785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-addsub.c.o +#10 104.5 [786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-lut2048-p1.c.o +#10 104.5 [787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-scalar-rr2-p5.c.o +#10 104.5 [788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-scalar-rr2-lut16-p4.c.o +#10 104.5 [789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-nearbyint.c.o +#10 104.5 [790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-cvt.c.o +#10 104.5 [791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-ceil.c.o +#10 104.5 [792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-scalar-floor.c.o +#10 104.5 [793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-addsub.c.o +#10 104.5 [794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-scalar-cvt.c.o +#10 104.5 [795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-addsub.c.o +#10 104.5 [796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-scalar-rint.c.o +#10 104.5 [797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-addsub.c.o +#10 104.5 [798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-trunc.c.o +#10 104.5 [799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-bitmanip.c.o +#10 104.5 [800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-scalar-cvt.c.o +#10 104.5 [801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-clz-newton.c.o +#10 104.5 [802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-lut2048-p1-div.c.o +#10 104.5 [803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-lut64-p2-div.c.o +#10 104.5 [804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-clz-binsearch.c.o +#10 104.5 [805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti32-sqrt-lrint.c.o +#10 104.5 [806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti64-sqrtf-lrintf.c.o +#10 104.5 [807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvti64-sqrt-lrint.c.o +#10 104.5 [808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-scalar-rr2-p5-div.c.o +#10 104.6 [809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-hashemian.c.o +#10 104.6 [810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvtu32-sqrtf-lrintf.c.o +#10 104.6 [811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-tflm.c.o +#10 104.6 [812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u32-scalar-cvtu32-sqrt-lrint.c.o +#10 104.6 [813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/tanh-f32-scalar-rr1-p6-div.c.o +#10 104.6 [814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/tanh-f32-scalar-rr2-p6-div.c.o +#10 104.6 [815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu32-sqrt-cvtsatu32f64.c.o +#10 104.6 [816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu32-sqrt-llrint.c.o +#10 104.6 [817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-u64-scalar-cvtu64-sqrt-llrint.c.o +#10 104.6 [818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o +#10 104.6 [819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o +#10 104.6 [820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o +#10 104.7 [821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 104.7 [822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 104.7 [823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 104.7 [824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 104.7 [825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 104.7 [826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 104.7 [827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 104.7 [828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 104.7 [829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse41-2x4.c.o +#10 104.7 [830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse41-2x8.c.o +#10 104.8 [831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x24.c.o +#10 104.8 [832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x8.c.o +#10 104.8 [833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 104.8 [834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x16.c.o +#10 104.8 [835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x32.c.o +#10 104.8 [836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 104.8 [837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 104.8 [838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 104.8 [839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 104.8 [840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 104.8 [841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 104.9 [842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 104.9 [843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 104.9 [844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 104.9 [845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 104.9 [846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 104.9 [847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 104.9 [848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 104.9 [849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 104.9 [850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 105.0 [851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 105.0 [852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 105.0 [853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 105.0 [854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 105.0 [855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 105.0 [856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 105.0 [857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 105.0 [858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 105.1 [859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 105.1 [860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 105.1 [861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 105.1 [862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 105.1 [863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 105.1 [864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 105.1 [865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 105.1 [866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 105.1 [867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 105.1 [868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 105.1 [869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 105.1 [870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 105.1 [871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 105.1 [872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 105.2 [873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 105.2 [874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 105.2 [875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 105.2 [876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 105.2 [877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 105.2 [878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 105.2 [879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 105.2 [880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 105.2 [881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 105.3 [882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 105.3 [883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 105.3 [884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 105.3 [885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 105.3 [886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 105.3 [887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-sse-x8.c.o +#10 105.3 [888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 105.3 [889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 105.3 [890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-sse-x8.c.o +#10 105.3 [891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 105.3 [892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-sse-x4.c.o +#10 105.3 [893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 105.4 [894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 105.4 [895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o +#10 105.4 [896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 105.4 [897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 105.4 [898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 105.4 [899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 105.4 [900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o +#10 105.4 [901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 105.5 [902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 105.5 [903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 105.5 [904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o +#10 105.5 [905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 105.5 [906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 105.5 [907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x3.c.o +#10 105.5 [908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x1.c.o +#10 105.5 [909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 105.5 [910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x2.c.o +#10 105.5 [911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-x4.c.o +#10 105.6 [912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 105.6 [913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 105.6 [914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 105.6 [915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 105.6 [916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o +#10 105.6 [917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 105.6 [918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o +#10 105.6 [919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 105.7 [920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o +#10 105.7 [921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 105.7 [922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 105.7 [923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 105.7 [924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 105.7 [925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 105.7 [926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 105.7 [927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 105.7 [928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o +#10 105.7 [929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o +#10 105.7 [930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 105.7 [931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 105.7 [932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 105.8 [933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 105.8 [934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o +#10 105.8 [935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 105.8 [936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 105.8 [937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 105.8 [938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 105.8 [939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 105.8 [940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-rndnu-scalar.c.o +#10 105.8 [941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 105.8 [942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 105.8 [943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 105.8 [944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 105.8 [945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4-minmax-rndnu-scalar.c.o +#10 105.8 [946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-rndnu-scalar.c.o +#10 105.9 [947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 105.9 [948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 105.9 [949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 105.9 [950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 105.9 [951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4-minmax-rndnu-scalar.c.o +#10 105.9 [952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 105.9 [953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 105.9 [954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-rndnu-scalar.c.o +#10 105.9 [955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 105.9 [956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 106.0 [957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 106.0 [958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-rndnu-scalar.c.o +#10 106.0 [959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 106.0 [960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 106.0 [961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-rndnu-scalar.c.o +#10 106.0 [962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 106.0 [963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 106.0 [964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 106.0 [965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 106.1 [966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 106.1 [967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 106.1 [968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 106.1 [969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-rndnu-scalar.c.o +#10 106.1 [970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 106.1 [971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 106.1 [972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4-minmax-rndnu-scalar.c.o +#10 106.1 [973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 106.1 [974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 106.1 [975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4-minmax-rndnu-scalar.c.o +#10 106.1 [976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-rndnu-scalar.c.o +#10 106.1 [977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 106.2 [978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 106.2 [979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 106.2 [980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 106.2 [981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-rndnu-scalar.c.o +#10 106.2 [982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 106.2 [983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 106.2 [984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 106.2 [985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 106.2 [986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 106.2 [987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x2-minmax-rndnu-scalar.c.o +#10 106.3 [988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-rndnu-scalar.c.o +#10 106.3 [989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 106.3 [990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-rndnu-scalar.c.o +#10 106.3 [991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 106.3 [992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 106.3 [993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 106.3 [994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-fmagic.c.o +#10 106.3 [995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 106.3 [996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 106.3 [997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-scalar-lrintf.c.o +#10 106.3 [998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-signed64.c.o +#10 106.4 [999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 106.4 [1000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-rndnu-scalar.c.o +#10 106.4 [1001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-scalar.c.o +#10 106.4 [1002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned32.c.o +#10 106.4 [1003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-scalar-unsigned64.c.o +#10 106.4 [1004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-scalar.c.o +#10 106.4 [1005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x1.c.o +#10 106.4 [1006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x2.c.o +#10 106.4 [1007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x1.c.o +#10 106.4 [1008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 106.4 [1009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 106.4 [1010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x2.c.o +#10 106.4 [1011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-x4.c.o +#10 106.4 [1012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x1.c.o +#10 106.4 [1013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x2.c.o +#10 106.4 [1014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x1.c.o +#10 106.4 [1015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-x4.c.o +#10 106.4 [1016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x1.c.o +#10 106.4 [1017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-x4.c.o +#10 106.4 [1018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x2.c.o +#10 106.4 [1019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-x4.c.o +#10 106.4 [1020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x1.c.o +#10 106.4 [1021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x2.c.o +#10 106.4 [1022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x2.c.o +#10 106.4 [1023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x2.c.o +#10 106.5 [1024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-x4.c.o +#10 106.5 [1025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-x4.c.o +#10 106.5 [1026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x1.c.o +#10 106.5 [1027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o +#10 106.5 [1028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-x4.c.o +#10 106.5 [1029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o +#10 106.5 [1030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o +#10 106.5 [1031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o +#10 106.5 [1032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o +#10 106.5 [1033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o +#10 106.5 [1034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o +#10 106.6 [1035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o +#10 106.6 [1036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o +#10 106.6 [1037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o +#10 106.6 [1038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o +#10 106.6 [1039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o +#10 106.6 [1040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o +#10 106.6 [1041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o +#10 106.6 [1042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o +#10 106.7 [1043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x2.c.o +#10 106.7 [1044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o +#10 106.7 [1045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o +#10 106.7 [1046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x1.c.o +#10 106.7 [1047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x4.c.o +#10 106.7 [1048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-x3.c.o +#10 106.7 [1049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o +#10 106.7 [1050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 106.7 [1051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o +#10 106.8 [1052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o +#10 106.8 [1053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c1.c.o +#10 106.8 [1054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 106.8 [1055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c2.c.o +#10 106.8 [1056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 106.8 [1057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c1.c.o +#10 106.8 [1058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 106.8 [1059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-imagic-c4.c.o +#10 106.8 [1060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o +#10 106.9 [1061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 106.9 [1062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c2.c.o +#10 106.9 [1063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-fmagic-c4.c.o +#10 106.9 [1064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c1.c.o +#10 106.9 [1065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 106.9 [1066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o +#10 106.9 [1067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c2.c.o +#10 106.9 [1068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c2.c.o +#10 106.9 [1069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c1.c.o +#10 106.9 [1070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-lrintf-c4.c.o +#10 106.9 [1071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-scalar-imagic-c4.c.o +#10 106.9 [1072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o +#10 106.9 [1073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 106.9 [1074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 106.9 [1075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o +#10 107.0 [1076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 107.0 [1077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o +#10 107.0 [1078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o +#10 107.0 [1079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o +#10 107.0 [1080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o +#10 107.0 [1081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o +#10 107.0 [1082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o +#10 107.0 [1083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o +#10 107.0 [1084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o +#10 107.0 [1085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 107.0 [1086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 107.1 [1087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 107.1 [1088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o +#10 107.1 [1089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 107.1 [1090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 107.1 [1091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 107.1 [1092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o +#10 107.1 [1093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 107.1 [1094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o +#10 107.2 [1095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 107.2 [1096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 107.2 [1097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o +#10 107.2 [1098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 107.2 [1099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o +#10 107.2 [1100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 107.2 [1101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 107.2 [1102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o +#10 107.2 [1103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o +#10 107.2 [1104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 107.2 [1105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 107.2 [1106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o +#10 107.3 [1107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 107.3 [1108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o +#10 107.3 [1109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 107.3 [1110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 107.3 [1111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 107.3 [1112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x8.c.o +#10 107.3 [1113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 107.3 [1114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x16.c.o +#10 107.3 [1115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 107.3 [1116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 107.3 [1117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x24.c.o +#10 107.4 [1118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul16-ld64-x32.c.o +#10 107.4 [1119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 107.4 [1120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o +#10 107.4 [1121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o +#10 107.4 [1122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o +#10 107.4 [1123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o +#10 107.5 [1124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o +#10 107.5 [1125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o +#10 107.5 [1126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o +#10 107.5 [1127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o +#10 107.5 [1128/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o +#10 107.5 [1129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o +#10 107.6 [1130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o +#10 107.6 [1131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o +#10 107.6 [1132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o +#10 107.6 [1133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o +#10 107.6 [1134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o +#10 107.6 [1135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o +#10 107.6 [1136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x8.c.o +#10 107.6 [1137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x16.c.o +#10 107.6 [1138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o +#10 107.6 [1139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o +#10 107.6 [1140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o +#10 107.6 [1141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-scalar.c.o +#10 107.6 [1142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-signed64.c.o +#10 107.6 [1143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-fmagic.c.o +#10 107.7 [1144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-scalar-lrintf.c.o +#10 107.7 [1145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x24.c.o +#10 107.7 [1146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x1.c.o +#10 107.7 [1147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x2.c.o +#10 107.7 [1148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x1.c.o +#10 107.7 [1149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x1.c.o +#10 107.7 [1150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o +#10 107.7 [1151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned32.c.o +#10 107.7 [1152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-scalar-unsigned64.c.o +#10 107.7 [1153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x4.c.o +#10 107.7 [1154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o +#10 107.7 [1155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-x2.c.o +#10 107.7 [1156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-x4.c.o +#10 107.7 [1157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x2.c.o +#10 107.7 [1158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x1.c.o +#10 107.7 [1159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-x4.c.o +#10 107.7 [1160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x1.c.o +#10 107.7 [1161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x2.c.o +#10 107.7 [1162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-x4.c.o +#10 107.7 [1163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x2.c.o +#10 107.7 [1164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x1.c.o +#10 107.7 [1165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x4.c.o +#10 107.8 [1166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-x2.c.o +#10 107.8 [1167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x1.c.o +#10 107.8 [1168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o +#10 107.8 [1169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-x4.c.o +#10 107.8 [1170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x4.c.o +#10 107.8 [1171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-x2.c.o +#10 107.8 [1172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o +#10 107.8 [1173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-scalar-x4.c.o +#10 107.8 [1174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x1.c.o +#10 107.8 [1175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x2.c.o +#10 107.8 [1176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x1.c.o +#10 107.8 [1177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o +#10 107.8 [1178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x3.c.o +#10 107.8 [1179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-rmaxabs/gen/s16-rmaxabs-scalar-x4.c.o +#10 107.8 [1180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o +#10 107.8 [1181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x2.c.o +#10 107.8 [1182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x3.c.o +#10 107.8 [1183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-scalar.c.o +#10 107.8 [1184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o +#10 107.8 [1185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s16-window/gen/s16-window-scalar-x4.c.o +#10 107.8 [1186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o +#10 107.8 [1187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-scalar-x4.c.o +#10 107.8 [1188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x1.c.o +#10 107.9 [1189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o +#10 107.9 [1190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o +#10 107.9 [1191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x2.c.o +#10 107.9 [1192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-accumulate/gen/u32-filterbank-accumulate-scalar-x1.c.o +#10 107.9 [1193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-filterbank-subtract/u32-filterbank-subtract-scalar-x2.c.o +#10 107.9 [1194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x3.c.o +#10 107.9 [1195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x2.c.o +#10 107.9 [1196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o +#10 107.9 [1197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u32-vlog/gen/u32-vlog-scalar-x4.c.o +#10 107.9 [1198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u64-u32-vsqrtshift/u64-u32-vsqrtshift-scalar-cvtu32-sqrt-cvtu32f64-x1.c.o +#10 107.9 [1199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x1.c.o +#10 107.9 [1200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x4.c.o +#10 107.9 [1201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x8.c.o +#10 107.9 [1202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o +#10 107.9 [1203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-x16.c.o +#10 107.9 [1204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o +#10 107.9 [1205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o +#10 107.9 [1206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o +#10 107.9 [1207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-scalar.c.o +#10 107.9 [1208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-scalar.c.o +#10 107.9 [1209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-scalar.c.o +#10 107.9 [1210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o +#10 107.9 [1211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o +#10 107.9 [1212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-scalar.c.o +#10 107.9 [1213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o +#10 108.0 [1214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o +#10 108.0 [1215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o +#10 108.0 [1216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o +#10 108.0 [1217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o +#10 108.0 [1218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o +#10 108.0 [1219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o +#10 108.0 [1220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o +#10 108.0 [1221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o +#10 108.0 [1222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o +#10 108.0 [1223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o +#10 108.0 [1224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o +#10 108.0 [1225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o +#10 108.0 [1226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o +#10 108.0 [1227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x2-scalar.c.o +#10 108.0 [1228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o +#10 108.0 [1229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o +#10 108.0 [1230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o +#10 108.0 [1231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x3-scalar.c.o +#10 108.0 [1232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x4-scalar.c.o +#10 108.0 [1233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o +#10 108.1 [1234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o +#10 108.1 [1235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o +#10 108.1 [1236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o +#10 108.1 [1237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o +#10 108.1 [1238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o +#10 108.1 [1239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o +#10 108.1 [1240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o +#10 108.1 [1241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o +#10 108.1 [1242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o +#10 108.1 [1243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o +#10 108.1 [1244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o +#10 108.1 [1245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-scalar.c.o +#10 108.1 [1246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-scalar.c.o +#10 108.1 [1247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-scalar.c.o +#10 108.1 [1248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o +#10 108.1 [1249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o +#10 108.1 [1250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-scalar.c.o +#10 108.1 [1251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o +#10 108.1 [1252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o +#10 108.1 [1253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o +#10 108.1 [1254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-scalar.c.o +#10 108.1 [1255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o +#10 108.1 [1256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o +#10 108.2 [1257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o +#10 108.2 [1258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o +#10 108.2 [1259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o +#10 108.2 [1260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o +#10 108.2 [1261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-scalar-x16.c.o +#10 108.2 [1262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o +#10 108.2 [1263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o +#10 108.2 [1264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o +#10 108.2 [1265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o +#10 108.2 [1266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-scalar.c.o +#10 108.2 [1267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o +#10 108.2 [1268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-transpose/xx-transpose-1x1-scalar-memcpy.c.o +#10 108.3 [1269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.o +#10 108.3 [1270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc2.c.o +#10 108.3 [1271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9x-minmax-sse-c4.c.o +#10 108.3 [1272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4.c.o +#10 108.3 [1273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc3.c.o +#10 108.3 [1274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-sse-c4.c.o +#10 108.3 [1275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-1x4-acc4.c.o +#10 108.3 [1276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-3x4.c.o +#10 108.3 [1277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4-acc2.c.o +#10 108.3 [1278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-5x4.c.o +#10 108.4 [1279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-2x4.c.o +#10 108.4 [1280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-4x4.c.o +#10 108.4 [1281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc2.c.o +#10 108.4 [1282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc3.c.o +#10 108.4 [1283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4-acc4.c.o +#10 108.4 [1284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-1x4.c.o +#10 108.4 [1285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4-acc2.c.o +#10 108.5 [1286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-2x4.c.o +#10 108.5 [1287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-sse-6x4.c.o +#10 108.5 [1288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.o +#10 108.5 [1289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-3x4.c.o +#10 108.5 [1290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-sse-4x4.c.o +#10 108.6 [1291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc2.c.o +#10 108.6 [1292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4.c.o +#10 108.6 [1293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc5.c.o +#10 108.6 [1294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc3.c.o +#10 108.6 [1295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-1x4-acc4.c.o +#10 108.6 [1296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc2.c.o +#10 108.7 [1297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4-acc3.c.o +#10 108.7 [1298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-2x4.c.o +#10 108.7 [1299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc2.c.o +#10 108.7 [1300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-3x4-acc2.c.o +#10 108.7 [1301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc3.c.o +#10 108.7 [1302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc5.c.o +#10 108.8 [1303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-3x4.c.o +#10 108.8 [1304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4-acc2.c.o +#10 108.8 [1305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4-acc4.c.o +#10 108.8 [1306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-1x4.c.o +#10 108.9 [1307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-4x4.c.o +#10 108.9 [1308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-sse-acc2.c.o +#10 108.9 [1309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4.c.o +#10 108.9 [1310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc2.c.o +#10 108.9 [1311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-sse-acc2.c.o +#10 108.9 [1312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-sse.c.o +#10 108.9 [1313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse-acc2.c.o +#10 108.9 [1314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-sse.c.o +#10 108.9 [1315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-2x4-acc3.c.o +#10 108.9 [1316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-sse.c.o +#10 109.0 [1317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4.c.o +#10 109.0 [1318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-sse-5x4.c.o +#10 109.0 [1319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-sse-3x4-acc2.c.o +#10 109.0 [1320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse.c.o +#10 109.0 [1321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-sse-acc2.c.o +#10 109.0 [1322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-sse-acc2.c.o +#10 109.0 [1323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.o +#10 109.0 [1324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.o +#10 109.0 [1325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse.c.o +#10 109.1 [1326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool-cw/f32-gavgpool-cw-sse-x4.c.o +#10 109.1 [1327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-sse.c.o +#10 109.1 [1328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-7f6m6l8c4s4r-minmax-sse.c.o +#10 109.1 [1329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-7f6m6l8c4s4r-minmax-sse-acc2.c.o +#10 109.1 [1330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-sse-acc2.c.o +#10 109.1 [1331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-sse.c.o +#10 109.1 [1332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7x-minmax-sse-c4.c.o +#10 109.1 [1333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gavgpool/f32-gavgpool-7p7x-minmax-sse-c4.c.o +#10 109.1 [1334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-sse-acc2.c.o +#10 109.1 [1335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse-acc2.c.o +#10 109.2 [1336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-dup.c.o +#10 109.2 [1337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse-load1.c.o +#10 109.2 [1338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse-dup.c.o +#10 109.2 [1339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-sse.c.o +#10 109.2 [1340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2c4-minmax-sse.c.o +#10 109.2 [1341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-sse.c.o +#10 109.2 [1342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse-load1.c.o +#10 109.2 [1343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8s4-minmax-sse.c.o +#10 109.3 [1344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-load1.c.o +#10 109.3 [1345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-sse.c.o +#10 109.3 [1346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse-load1.c.o +#10 109.3 [1347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse-dup.c.o +#10 109.3 [1348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse-dup.c.o +#10 109.3 [1349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse-dup.c.o +#10 109.3 [1350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse-load1.c.o +#10 109.3 [1351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8s4-minmax-sse.c.o +#10 109.3 [1352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse-load1.c.o +#10 109.3 [1353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8s4-minmax-sse.c.o +#10 109.3 [1354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse-dup.c.o +#10 109.4 [1355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse-dup.c.o +#10 109.4 [1356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse-load1.c.o +#10 109.4 [1357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8s4-minmax-sse.c.o +#10 109.4 [1358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8s4-minmax-sse.c.o +#10 109.4 [1359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse-dup.c.o +#10 109.4 [1360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse-load1.c.o +#10 109.5 [1361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-dup.c.o +#10 109.5 [1362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse-load1.c.o +#10 109.5 [1363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse-dup.c.o +#10 109.5 [1364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse-load1.c.o +#10 109.5 [1365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8s4-minmax-sse.c.o +#10 109.5 [1366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-sse.c.o +#10 109.5 [1367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2c4-minmax-sse.c.o +#10 109.6 [1368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-dup.c.o +#10 109.6 [1369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse-load1.c.o +#10 109.6 [1370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p4.c.o +#10 109.6 [1371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8s4-minmax-sse.c.o +#10 109.6 [1372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse-dup.c.o +#10 109.6 [1373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse-load1.c.o +#10 109.6 [1374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-sse.c.o +#10 109.7 [1375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-sse-c4.c.o +#10 109.7 [1376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse-2x4.c.o +#10 109.7 [1377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-sse-c4.c.o +#10 109.7 [1378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-sse.c.o +#10 109.7 [1379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c8.c.o +#10 109.7 [1380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8s4-minmax-sse.c.o +#10 109.7 [1381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-sse-c4.c.o +#10 109.7 [1382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-sse.c.o +#10 109.7 [1383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse-2x8.c.o +#10 109.8 [1384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-sse-c4.c.o +#10 109.8 [1385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-sse-p8.c.o +#10 109.8 [1386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-sse-x4.c.o +#10 109.8 [1387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-sse-x8.c.o +#10 109.8 [1388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-sse-x4.c.o +#10 109.8 [1389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-sse-x8.c.o +#10 109.8 [1390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-sse-x4.c.o +#10 109.8 [1391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-sse-x8.c.o +#10 109.8 [1392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-sse-x4.c.o +#10 109.8 [1393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-sse-x4.c.o +#10 109.8 [1394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-sse-x8.c.o +#10 109.8 [1395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-sse-x8.c.o +#10 109.8 [1396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-sse-x8.c.o +#10 109.9 [1397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-sse-x4.c.o +#10 109.9 [1398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-sse-x4.c.o +#10 109.9 [1399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-sse-x8.c.o +#10 109.9 [1400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-sse-x8.c.o +#10 109.9 [1401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-sse-x4.c.o +#10 109.9 [1402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-sse-x4.c.o +#10 109.9 [1403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-sse-x8.c.o +#10 109.9 [1404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-sse-x4.c.o +#10 109.9 [1405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-sse-x8.c.o +#10 110.0 [1406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-sse-x4.c.o +#10 110.0 [1407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-avx.c.o +#10 110.0 [1408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-sse.c.o +#10 110.0 [1409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-avx.c.o +#10 110.0 [1410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-x8.c.o +#10 110.0 [1411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-sse-x4.c.o +#10 110.0 [1412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 110.0 [1413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 110.1 [1414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-sse.c.o +#10 110.1 [1415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-sse-x4.c.o +#10 110.1 [1416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-x8.c.o +#10 110.1 [1417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-sse-x4.c.o +#10 110.1 [1418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 110.1 [1419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-sse.c.o +#10 110.1 [1420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-sse-x8.c.o +#10 110.1 [1421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-sse-x4.c.o +#10 110.1 [1422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-sse.c.o +#10 110.1 [1423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-sse-x4.c.o +#10 110.1 [1424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 110.1 [1425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-sse-x8.c.o +#10 110.1 [1426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-sse-x8.c.o +#10 110.1 [1427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-x8.c.o +#10 110.1 [1428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-sse-2x.c.o +#10 110.1 [1429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse-x4.c.o +#10 110.1 [1430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-sse-x4.c.o +#10 110.1 [1431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-sqrt-x4.c.o +#10 110.2 [1432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-sse-2x.c.o +#10 110.2 [1433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-sse-x8.c.o +#10 110.2 [1434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-sse-sqrt-x8.c.o +#10 110.2 [1435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-sse-x8.c.o +#10 110.2 [1436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-sse-x4.c.o +#10 110.2 [1437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-sse-x4.c.o +#10 110.2 [1438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-sse-x8.c.o +#10 110.2 [1439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse-addsub.c.o +#10 110.2 [1440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-sse-x4.c.o +#10 110.2 [1441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-sse-x8.c.o +#10 110.2 [1442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse-addsub.c.o +#10 110.2 [1443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse-addsub.c.o +#10 110.2 [1444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-sse-x8.c.o +#10 110.2 [1445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse-addsub.c.o +#10 110.2 [1446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-sse-x4.c.o +#10 110.2 [1447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-hh1mac.c.o +#10 110.2 [1448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-nr2mac.c.o +#10 110.2 [1449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-sse-nr1mac.c.o +#10 110.3 [1450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x16.c.o +#10 110.3 [1451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-x4-sse.c.o +#10 110.3 [1452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/x32-transposec-4x4-sse.c.o +#10 110.3 [1453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x8.c.o +#10 110.3 [1454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-sse2-x8.c.o +#10 110.3 [1455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x24.c.o +#10 110.3 [1456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x16.c.o +#10 110.3 [1457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int16-x32.c.o +#10 110.3 [1458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-sse2-x16.c.o +#10 110.3 [1459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x8.c.o +#10 110.3 [1460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-sse2-x8.c.o +#10 110.3 [1461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x24.c.o +#10 110.3 [1462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-sse2-x16.c.o +#10 110.3 [1463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse2-int32-x32.c.o +#10 110.4 [1464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-4x-sse2-c4.c.o +#10 110.4 [1465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x8.c.o +#10 110.4 [1466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x16.c.o +#10 110.4 [1467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x32.c.o +#10 110.4 [1468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9x-sse2-c4.c.o +#10 110.4 [1469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-sse2-c4.c.o +#10 110.4 [1470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-sse2-dup.c.o +#10 110.5 [1471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse2-x24.c.o +#10 110.5 [1472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x8-minmax-sse2-dup.c.o +#10 110.5 [1473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-sse2-dup.c.o +#10 110.5 [1474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-sse2-dup.c.o +#10 110.5 [1475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-sse2-dup.c.o +#10 110.5 [1476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x8-minmax-sse2-dup.c.o +#10 110.5 [1477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-sse2-dup.c.o +#10 110.5 [1478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-sse2-dup.c.o +#10 110.5 [1479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-sse2-dup.c.o +#10 110.5 [1480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse2-2x4.c.o +#10 110.5 [1481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x16.c.o +#10 110.5 [1482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x8.c.o +#10 110.5 [1483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x8-minmax-sse2-dup.c.o +#10 110.6 [1484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-sse2-2x8.c.o +#10 110.6 [1485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x32.c.o +#10 110.6 [1486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x8.c.o +#10 110.6 [1487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-sse2-dup.c.o +#10 110.6 [1488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse2-x24.c.o +#10 110.6 [1489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-sse2-dup.c.o +#10 110.6 [1490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x16.c.o +#10 110.6 [1491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x32.c.o +#10 110.6 [1492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x4.c.o +#10 110.6 [1493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x8-acc2.c.o +#10 110.6 [1494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x8.c.o +#10 110.6 [1495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-sse2-x24.c.o +#10 110.6 [1496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12-acc3.c.o +#10 110.7 [1497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12-acc2.c.o +#10 110.7 [1498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x12.c.o +#10 110.7 [1499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16-acc4.c.o +#10 110.7 [1500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16.c.o +#10 110.7 [1501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x16-acc2.c.o +#10 110.7 [1502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20.c.o +#10 110.7 [1503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x4.c.o +#10 110.7 [1504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20-acc2.c.o +#10 110.7 [1505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x12.c.o +#10 110.7 [1506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-sse2-rr2-p5-x20-acc5.c.o +#10 110.7 [1507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x8.c.o +#10 110.8 [1508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x4.c.o +#10 110.8 [1509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x16.c.o +#10 110.8 [1510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x8.c.o +#10 110.8 [1511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x12.c.o +#10 110.8 [1512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x16.c.o +#10 110.8 [1513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse2-x4.c.o +#10 110.8 [1514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x20.c.o +#10 110.8 [1515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-lut16-p3-x24.c.o +#10 110.8 [1516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x20.c.o +#10 110.8 [1517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse2-x8.c.o +#10 110.8 [1518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse2-x8.c.o +#10 110.8 [1519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse2-rr2-p6-x24.c.o +#10 110.8 [1520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse2-x8.c.o +#10 110.8 [1521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse2-x4.c.o +#10 110.9 [1522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse2-x4.c.o +#10 110.9 [1523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse2-x4.c.o +#10 110.9 [1524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse2-x8.c.o +#10 110.9 [1525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse2-x8.c.o +#10 110.9 [1526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse2-x4.c.o +#10 110.9 [1527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x8.c.o +#10 110.9 [1528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x4.c.o +#10 110.9 [1529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x4.c.o +#10 110.9 [1530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x12.c.o +#10 110.9 [1531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x16.c.o +#10 110.9 [1532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x8.c.o +#10 111.0 [1533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x12.c.o +#10 111.0 [1534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x24.c.o +#10 111.0 [1535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-lut64-p2-div-x20.c.o +#10 111.0 [1536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x24.c.o +#10 111.0 [1537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse2-int32.c.o +#10 111.0 [1538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse2-int16.c.o +#10 111.0 [1539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x16.c.o +#10 111.0 [1540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse2-rr2-p5-div-x20.c.o +#10 111.0 [1541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-sse2.c.o +#10 111.0 [1542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-sse2-rr2-lut64-p2.c.o +#10 111.0 [1543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-sse2-rr2-lut16-p3.c.o +#10 111.0 [1544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-sse2-rr2-p6.c.o +#10 111.0 [1545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-sse2-rr2-p5.c.o +#10 111.0 [1546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse2-cvt.c.o +#10 111.0 [1547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-sse2-rr2-p5.c.o +#10 111.0 [1548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse2-cvt.c.o +#10 111.0 [1549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse2-cvt.c.o +#10 111.0 [1550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse2-cvt.c.o +#10 111.1 [1551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-div.c.o +#10 111.1 [1552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-nr1.c.o +#10 111.1 [1553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-div.c.o +#10 111.1 [1554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-lut64-p2-nr2.c.o +#10 111.1 [1555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-nr1.c.o +#10 111.1 [1556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-sse2-rr2-p5-nr2.c.o +#10 111.2 [1557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 111.2 [1558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p8c-minmax-fp32-sse2-mul16.c.o +#10 111.2 [1559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 111.2 [1560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 111.2 [1561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 111.3 [1562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.3 [1563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.3 [1564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.3 [1565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse2-mul16.c.o +#10 111.3 [1566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 111.3 [1567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 111.3 [1568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 111.3 [1569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 111.4 [1570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.4 [1571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.4 [1572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.4 [1573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.4 [1574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 111.4 [1575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.4 [1576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 111.4 [1577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 111.5 [1578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.5 [1579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.5 [1580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.5 [1581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 111.5 [1582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.5 [1583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 111.6 [1584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 111.6 [1585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.6 [1586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.6 [1587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.6 [1588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.6 [1589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.6 [1590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.6 [1591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.6 [1592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.7 [1593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 111.7 [1594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 111.7 [1595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.7 [1596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.7 [1597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 111.7 [1598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.7 [1599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.7 [1600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 111.8 [1601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse2-mul16.c.o +#10 111.8 [1602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.8 [1603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.8 [1604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 111.8 [1605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.8 [1606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 111.8 [1607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 111.8 [1608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.9 [1609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 111.9 [1610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 111.9 [1611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 111.9 [1612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 111.9 [1613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 112.0 [1614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 112.0 [1615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x8.c.o +#10 112.0 [1616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 112.0 [1617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x16.c.o +#10 112.0 [1618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x32.c.o +#10 112.0 [1619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse2-x24.c.o +#10 112.1 [1620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse2-mul16.c.o +#10 112.1 [1621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c8.c.o +#10 112.1 [1622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c8.c.o +#10 112.1 [1623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 112.1 [1624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c16.c.o +#10 112.1 [1625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse2-mul16-add16.c.o +#10 112.2 [1626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse2-c24.c.o +#10 112.2 [1627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.2 [1628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.2 [1629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.2 [1630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c16.c.o +#10 112.2 [1631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.2 [1632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-sse2.c.o +#10 112.2 [1633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse2-mul16-add16.c.o +#10 112.3 [1634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 112.3 [1635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse2-c24.c.o +#10 112.3 [1636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 112.3 [1637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-sse2.c.o +#10 112.3 [1638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 112.3 [1639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.3 [1640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-sse2.c.o +#10 112.3 [1641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.4 [1642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.4 [1643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-sse2.c.o +#10 112.4 [1644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-sse2.c.o +#10 112.4 [1645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.4 [1646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 112.4 [1647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 112.4 [1648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-sse2.c.o +#10 112.4 [1649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.4 [1650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-sse2.c.o +#10 112.5 [1651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.5 [1652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.5 [1653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.5 [1654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-sse2.c.o +#10 112.5 [1655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse2-mul16.c.o +#10 112.5 [1656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-sse2.c.o +#10 112.6 [1657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 112.6 [1658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 112.6 [1659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-sse2.c.o +#10 112.6 [1660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.6 [1661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.6 [1662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.6 [1663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.6 [1664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.6 [1665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.6 [1666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.7 [1667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 112.7 [1668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-sse2.c.o +#10 112.7 [1669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.7 [1670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.7 [1671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 112.7 [1672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 112.7 [1673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 112.7 [1674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.7 [1675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.7 [1676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.7 [1677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.8 [1678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.8 [1679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.8 [1680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-sse2.c.o +#10 112.8 [1681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-sse2.c.o +#10 112.8 [1682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 112.8 [1683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.8 [1684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-sse2.c.o +#10 112.8 [1685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x16.c.o +#10 112.8 [1686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x8.c.o +#10 112.9 [1687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 112.9 [1688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 112.9 [1689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x8.c.o +#10 112.9 [1690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 112.9 [1691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 112.9 [1692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 112.9 [1693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x32.c.o +#10 112.9 [1694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse2-mul16-ld64-x24.c.o +#10 112.9 [1695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-x16.c.o +#10 112.9 [1696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x16.c.o +#10 112.9 [1697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x24.c.o +#10 112.9 [1698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 112.9 [1699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse2-mul16-ld64-x32.c.o +#10 112.9 [1700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse2-x32.c.o +#10 112.9 [1701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-x16.c.o +#10 112.9 [1702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse2-x32.c.o +#10 113.0 [1703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 113.0 [1704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 113.0 [1705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 113.0 [1706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x16.c.o +#10 113.0 [1707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x8.c.o +#10 113.0 [1708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x32.c.o +#10 113.0 [1709/6823] Generating src/x86_64-fma/2d-fourier-16x16.py.o +#10 113.0 [1710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-sse2-c8.c.o +#10 113.1 [1711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.o +#10 113.1 [1712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.o +#10 113.1 [1713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse2-x24.c.o +#10 113.1 [1714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c8.c.o +#10 113.1 [1715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c8.c.o +#10 113.2 [1716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.o +#10 113.2 [1717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c16.c.o +#10 113.2 [1718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c16.c.o +#10 113.2 [1719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse2-c24.c.o +#10 113.2 [1720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.2 [1721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.2 [1722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.2 [1723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 113.2 [1724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse2-c24.c.o +#10 113.2 [1725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.3 [1726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.o +#10 113.3 [1727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.3 [1728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.3 [1729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.3 [1730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.3 [1731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 113.3 [1732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.3 [1733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 113.4 [1734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.4 [1735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.o +#10 113.4 [1736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.4 [1737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 113.4 [1738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.4 [1739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 113.5 [1740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.5 [1741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.5 [1742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.5 [1743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.5 [1744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.5 [1745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 113.5 [1746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.5 [1747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.o +#10 113.5 [1748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.6 [1749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.6 [1750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.o +#10 113.6 [1751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.6 [1752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.6 [1753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.6 [1754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.6 [1755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.o +#10 113.6 [1756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.6 [1757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.6 [1758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.6 [1759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.o +#10 113.7 [1760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-fp32-sse2.c.o +#10 113.7 [1761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.o +#10 113.7 [1762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.7 [1763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.o +#10 113.7 [1764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-sse2.c.o +#10 113.7 [1765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-sse2.c.o +#10 113.7 [1766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-x8.c.o +#10 113.7 [1767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.o +#10 113.7 [1768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.o +#10 113.7 [1769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse2-mul16-ld64-x16.c.o +#10 113.7 [1770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-x8.c.o +#10 113.8 [1771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse2-mul16-ld64-x16.c.o +#10 113.8 [1772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.o +#10 113.8 [1773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-x16.c.o +#10 113.8 [1774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.o +#10 113.8 [1775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse2-x32.c.o +#10 113.8 [1776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-x32.c.o +#10 113.8 [1777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 113.8 [1778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse2-x16.c.o +#10 113.8 [1779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 113.8 [1780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-x8.c.o +#10 113.8 [1781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c8.c.o +#10 113.8 [1782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse2-mul16-ld64-x16.c.o +#10 113.8 [1783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c8.c.o +#10 113.8 [1784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-rmax/u8-rmax-sse2.c.o +#10 113.9 [1785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-sse2-x64.c.o +#10 113.9 [1786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-sse2-c16.c.o +#10 113.9 [1787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse2-c16.c.o +#10 113.9 [1788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x2-sse2.c.o +#10 113.9 [1789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse2-c16.c.o +#10 113.9 [1790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse2-c16.c.o +#10 113.9 [1791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x3-sse2.c.o +#10 113.9 [1792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-vclamp/u8-vclamp-sse2-x64.c.o +#10 113.9 [1793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-x4-sse2.c.o +#10 114.0 [1794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-zip/x8-zip-xm-sse2.c.o +#10 114.1 [1795/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/x16-transposec-4x8-sse2.c.o +#10 114.3 [1796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-sse2.c.o +#10 114.3 [1797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-sse2.c.o +#10 114.3 [1798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-sse2.c.o +#10 114.3 [1799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-sse2.c.o +#10 114.3 [1800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-sse2.c.o +#10 114.3 [1801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-unpool/x32-unpool-sse2.c.o +#10 114.3 [1802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-sse2.c.o +#10 114.4 [1803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-sse2.c.o +#10 114.4 [1804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x2-sse2.c.o +#10 114.4 [1805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x3-sse2.c.o +#10 114.4 [1806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-sse2.c.o +#10 114.4 [1807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-sse2.c.o +#10 114.4 [1808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-x4-sse2.c.o +#10 114.4 [1809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-sse2.c.o +#10 114.4 [1810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zip/x32-zip-xm-sse2.c.o +#10 114.4 [1811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-sse2.c.o +#10 114.4 [1812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-fill/xx-fill-sse2-x64.c.o +#10 114.5 [1813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-sse2.c.o +#10 114.5 [1814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/xx-pad/xx-pad-sse2.c.o +#10 114.6 [1815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-sse2.c.o +#10 114.6 [1816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc4.c.o +#10 114.6 [1817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4.c.o +#10 114.6 [1818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc3.c.o +#10 114.6 [1819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-1x4-acc2.c.o +#10 114.7 [1820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4-acc2.c.o +#10 114.7 [1821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-2x4.c.o +#10 114.7 [1822/6823] Generating src/x86_64-fma/2d-winograd-8x8-3x3.py.o +#10 114.7 [1823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-sse2.c.o +#10 114.7 [1824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-3x4.c.o +#10 114.7 [1825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-sse2.c.o +#10 114.7 [1826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-sse2.c.o +#10 114.8 [1827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-sse2.c.o +#10 114.8 [1828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-5x4.c.o +#10 114.8 [1829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-ssse3-ld64.c.o +#10 114.8 [1830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-4x4.c.o +#10 114.8 [1831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-sse2.c.o +#10 114.8 [1832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-ssse3.c.o +#10 114.8 [1833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-sse2.c.o +#10 114.8 [1834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-ssse3-ld128.c.o +#10 114.8 [1835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-ssse3-ld128.c.o +#10 114.8 [1836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-ssse3-6x4.c.o +#10 114.9 [1837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-ssse3-ld64.c.o +#10 114.9 [1838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-ssse3.c.o +#10 114.9 [1839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-ssse3.c.o +#10 114.9 [1840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-ssse3-ld64.c.o +#10 114.9 [1841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-ssse3-ld128.c.o +#10 114.9 [1842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-ssse3-ld128.c.o +#10 114.9 [1843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-ssse3-ld64.c.o +#10 114.9 [1844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-ssse3.c.o +#10 114.9 [1845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-ssse3-ld128.c.o +#10 114.9 [1846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-ssse3-ld64.c.o +#10 114.9 [1847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-ssse3.c.o +#10 114.9 [1848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-ssse3-ld64.c.o +#10 114.9 [1849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-ssse3-ld128.c.o +#10 115.0 [1850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-x16.c.o +#10 115.0 [1851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-ssse3-x32.c.o +#10 115.0 [1852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-x16.c.o +#10 115.0 [1853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-ssse3.c.o +#10 115.0 [1854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-ssse3.c.o +#10 115.0 [1855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-ssse3-x32.c.o +#10 115.0 [1856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-x32.c.o +#10 115.0 [1857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-ssse3-x16.c.o +#10 115.0 [1858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-ssse3-x16.c.o +#10 115.0 [1859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-x32.c.o +#10 115.0 [1860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-ssse3-x16.c.o +#10 115.1 [1861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-ssse3-x32.c.o +#10 115.1 [1862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/x24-transposec-4x4-ssse3.c.o +#10 115.1 [1863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x8.c.o +#10 115.1 [1864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x8.c.o +#10 115.1 [1865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x16.c.o +#10 115.1 [1866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x24.c.o +#10 115.1 [1867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x24.c.o +#10 115.1 [1868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x16.c.o +#10 115.1 [1869/6823] Generating src/x86_64-fma/blas/s8gemm.py.o +#10 115.1 [1870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int32-x32.c.o +#10 115.1 [1871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x24.c.o +#10 115.1 [1872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-sse41-int16-x32.c.o +#10 115.1 [1873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x8.c.o +#10 115.2 [1874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-sse41-x32.c.o +#10 115.2 [1875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-sse41-x16.c.o +#10 115.2 [1876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x8.c.o +#10 115.2 [1877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x4.c.o +#10 115.2 [1878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x12.c.o +#10 115.2 [1879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x4.c.o +#10 115.2 [1880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x8.c.o +#10 115.2 [1881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x20.c.o +#10 115.2 [1882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x16.c.o +#10 115.2 [1883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-x4.c.o +#10 115.3 [1884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-lut16-p3-x24.c.o +#10 115.3 [1885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x16.c.o +#10 115.3 [1886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x20.c.o +#10 115.3 [1887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-sse41-x8.c.o +#10 115.3 [1888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse41-x4.c.o +#10 115.3 [1889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x12.c.o +#10 115.3 [1890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse41-x4.c.o +#10 115.3 [1891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-sse41-x8.c.o +#10 115.3 [1892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-sse41-x8.c.o +#10 115.3 [1893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-sse41-rr2-p6-x24.c.o +#10 115.3 [1894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse41-x4.c.o +#10 115.3 [1895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-sse41-x8.c.o +#10 115.3 [1896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse41-x8.c.o +#10 115.3 [1897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-sse41-x4.c.o +#10 115.4 [1898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x8.c.o +#10 115.4 [1899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x4.c.o +#10 115.4 [1900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x8.c.o +#10 115.4 [1901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x12.c.o +#10 115.4 [1902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x12.c.o +#10 115.4 [1903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x16.c.o +#10 115.4 [1904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x4.c.o +#10 115.4 [1905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x20.c.o +#10 115.4 [1906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x24.c.o +#10 115.4 [1907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-lut64-p2-div-x20.c.o +#10 115.4 [1908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundu-sse41.c.o +#10 115.4 [1909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-sse41.c.o +#10 115.4 [1910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x24.c.o +#10 115.4 [1911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse41-int32.c.o +#10 115.5 [1912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-sse41-rr2-p5-div-x16.c.o +#10 115.5 [1913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundne-sse41.c.o +#10 115.5 [1914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundz-sse41.c.o +#10 115.5 [1915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-sse41-int16.c.o +#10 115.5 [1916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/roundd-sse41.c.o +#10 115.5 [1917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p8c-minmax-fp32-sse41-mul16.c.o +#10 115.6 [1918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 115.6 [1919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 115.6 [1920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 115.6 [1921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 115.7 [1922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 115.7 [1923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse41-mul16.c.o +#10 115.8 [1924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 115.8 [1925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 115.8 [1926/6823] Generating src/x86_64-fma/blas/c8gemm.py.o +#10 115.8 [1927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 115.8 [1928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 115.9 [1929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 115.9 [1930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 115.9 [1931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 115.9 [1932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 115.9 [1933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 116.0 [1934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 116.0 [1935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-sse41-mul32.c.o +#10 116.0 [1936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 116.0 [1937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.0 [1938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.0 [1939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 116.0 [1940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.1 [1941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 116.1 [1942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.1 [1943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 116.1 [1944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.1 [1945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.2 [1946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.2 [1947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 116.2 [1948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 116.2 [1949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.2 [1950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.2 [1951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse41-mul16.c.o +#10 116.2 [1952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.2 [1953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.2 [1954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.3 [1955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.3 [1956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.3 [1957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.3 [1958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.3 [1959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 116.4 [1960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.4 [1961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.4 [1962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 116.4 [1963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.4 [1964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.4 [1965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 116.4 [1966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 116.4 [1967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 116.4 [1968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.4 [1969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.5 [1970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.5 [1971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.5 [1972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 116.5 [1973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 116.5 [1974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 116.5 [1975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 116.6 [1976/6823] Generating src/x86_64-fma/blas/s4c6gemm.py.o +#10 116.6 [1977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 116.6 [1978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 116.6 [1979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 116.6 [1980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 116.6 [1981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 116.6 [1982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-sse41-mul32.c.o +#10 116.7 [1983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 116.7 [1984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse41-mul16.c.o +#10 116.8 [1985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16-add16.c.o +#10 116.9 [1986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 116.9 [1987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 117.0 [1988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 117.0 [1989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul16-add16.c.o +#10 117.1 [1990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c8.c.o +#10 117.1 [1991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 117.1 [1992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x16.c.o +#10 117.2 [1993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-sse41-mul32.c.o +#10 117.2 [1994/6823] Generating src/x86_64-fma/blas/conv1x1.py.o +#10 117.2 [1995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c8.c.o +#10 117.2 [1996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c16.c.o +#10 117.3 [1997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x24.c.o +#10 117.3 [1998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c16.c.o +#10 117.3 [1999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7p7x-minmax-fp32-sse41-c24.c.o +#10 117.3 [2000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gavgpool/gen/qs8-gavgpool-7x-minmax-fp32-sse41-c24.c.o +#10 117.3 [2001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 117.4 [2002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse41-mul16.c.o +#10 117.4 [2003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x32.c.o +#10 117.4 [2004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 117.4 [2005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 117.4 [2006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 117.4 [2007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 117.5 [2008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 117.5 [2009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-sse41.c.o +#10 117.5 [2010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-sse41.c.o +#10 117.5 [2011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 117.5 [2012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 117.5 [2013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-sse41.c.o +#10 117.5 [2014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 117.5 [2015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 117.5 [2016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-sse41-x8.c.o +#10 117.6 [2017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-sse41.c.o +#10 117.6 [2018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 117.6 [2019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 117.6 [2020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 117.7 [2021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-sse41.c.o +#10 117.7 [2022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 117.7 [2023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-sse41.c.o +#10 117.7 [2024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-sse41.c.o +#10 117.7 [2025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 117.7 [2026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 117.7 [2027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 117.8 [2028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-sse41.c.o +#10 117.8 [2029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 117.8 [2030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-sse41.c.o +#10 117.8 [2031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-sse41-mul32.c.o +#10 117.8 [2032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 117.9 [2033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 117.9 [2034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 117.9 [2035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-sse41.c.o +#10 117.9 [2036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-sse41.c.o +#10 117.9 [2037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 117.9 [2038/6823] Generating src/x86_64-fma/blas/sgemm.py.o +#10 117.9 [2039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 117.9 [2040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 117.9 [2041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 117.9 [2042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 117.9 [2043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 118.0 [2044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 118.0 [2045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 118.0 [2046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 118.0 [2047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 118.0 [2048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 118.0 [2049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 118.1 [2050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 118.1 [2051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 118.1 [2052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 118.1 [2053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 118.1 [2054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 118.1 [2055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 118.1 [2056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 118.1 [2057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-fp32-sse41.c.o +#10 118.2 [2058/6823] Generating src/x86_64-fma/max-pooling.py.o +#10 118.2 [2059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 118.2 [2060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-sse41-sra.c.o +#10 118.2 [2061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 118.2 [2062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-gemmlowp-sse41.c.o +#10 118.2 [2063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 118.2 [2064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 118.2 [2065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 118.2 [2066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 118.2 [2067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndna-sse41.c.o +#10 118.2 [2068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-requantization/qs8-requantization-rndnu-sse41-srl.c.o +#10 118.2 [2069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x8.c.o +#10 118.3 [2070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x16.c.o +#10 118.3 [2071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x24.c.o +#10 118.3 [2072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x32.c.o +#10 118.4 [2073/6823] Generating src/x86_64-fma/relu.py.o +#10 118.4 [2074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul16-ld64-x32.c.o +#10 118.4 [2075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x16.c.o +#10 118.4 [2076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x8.c.o +#10 118.5 [2077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul16-ld64-x24.c.o +#10 118.5 [2078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x8.c.o +#10 118.6 [2079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x16.c.o +#10 118.7 [2080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x24.c.o +#10 118.7 [2081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x24.c.o +#10 118.8 [2082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-sse41-mul32-ld32-x32.c.o +#10 118.8 [2083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x8.c.o +#10 118.8 [2084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x8.c.o +#10 118.8 [2085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 118.8 [2086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 118.8 [2087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 118.8 [2088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x16.c.o +#10 118.9 [2089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x32.c.o +#10 118.9 [2090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 118.9 [2091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-sse41-x16.c.o +#10 119.0 [2092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x8.c.o +#10 119.0 [2093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-sse41-mul32-ld32-x32.c.o +#10 119.0 [2094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x16.c.o +#10 119.0 [2095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.o +#10 119.1 [2096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-sse41-x32.c.o +#10 119.1 [2097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.o +#10 119.1 [2098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.o +#10 119.3 [2099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x8.c.o +#10 119.3 [2100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c8.c.o +#10 119.3 [2101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c8.c.o +#10 119.3 [2102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c24.c.o +#10 119.3 [2103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7p7x-minmax-fp32-sse41-c16.c.o +#10 119.4 [2104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c24.c.o +#10 119.4 [2105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gavgpool/gen/qu8-gavgpool-7x-minmax-fp32-sse41-c16.c.o +#10 119.4 [2106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x24.c.o +#10 119.5 [2107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.o +#10 119.5 [2108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 119.5 [2109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 119.5 [2110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 119.5 [2111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.o +#10 119.5 [2112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.o +#10 119.6 [2113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x32.c.o +#10 119.6 [2114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 119.6 [2115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 119.6 [2116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 119.6 [2117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 119.6 [2118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.o +#10 119.6 [2119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-sse41-x16.c.o +#10 119.6 [2120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 119.7 [2121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 119.7 [2122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 119.7 [2123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 119.7 [2124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 119.7 [2125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 119.7 [2126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 119.7 [2127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 119.8 [2128/6823] Generating src/x86_64-fma/softmax.py.o +#10 119.8 [2129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 119.8 [2130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 119.8 [2131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.o +#10 119.8 [2132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 119.8 [2133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 119.8 [2134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 119.8 [2135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 119.8 [2136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.o +#10 119.9 [2137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.o +#10 119.9 [2138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 119.9 [2139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 119.9 [2140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.o +#10 119.9 [2141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.o +#10 119.9 [2142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 119.9 [2143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.o +#10 120.0 [2144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 120.0 [2145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 120.0 [2146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.o +#10 120.0 [2147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.o +#10 120.0 [2148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.o +#10 120.0 [2149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.o +#10 120.0 [2150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.o +#10 120.1 [2151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.o +#10 120.1 [2152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-gemmlowp-sse41.c.o +#10 120.1 [2153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-x16.c.o +#10 120.1 [2154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.o +#10 120.1 [2155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.o +#10 120.2 [2156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 120.2 [2157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul16-ld64-x8.c.o +#10 120.2 [2158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 120.2 [2159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.o +#10 120.2 [2160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-requantization/qu8-requantization-rndna-sse41.c.o +#10 120.2 [2161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.o +#10 120.2 [2162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.o +#10 120.2 [2163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-x8.c.o +#10 120.2 [2164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul16-ld64-x16.c.o +#10 120.3 [2165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 120.4 [2166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-x8.c.o +#10 120.4 [2167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 120.4 [2168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-sse41-mul16-ld64-x16.c.o +#10 120.5 [2169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul32-ld32-x16.c.o +#10 120.5 [2170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-sse41-c16.c.o +#10 120.5 [2171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x8.c.o +#10 120.5 [2172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c16.c.o +#10 120.6 [2173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-sse41-c8.c.o +#10 120.6 [2174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-vclamp/s8-vclamp-sse41-x64.c.o +#10 120.6 [2175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x32.c.o +#10 120.6 [2176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x32.c.o +#10 120.7 [2177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul32-ld32-x16.c.o +#10 120.7 [2178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x16.c.o +#10 120.7 [2179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-sse41-mul32-ld32-x8.c.o +#10 120.7 [2180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c16.c.o +#10 120.7 [2181/6823] Generating src/x86_64-fma/blas/sdotxf.py.o +#10 120.7 [2182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x8.c.o +#10 120.7 [2183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x24.c.o +#10 120.7 [2184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-sse41-c8.c.o +#10 120.7 [2185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x8.c.o +#10 120.7 [2186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-sse41-x16.c.o +#10 120.8 [2187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x16.c.o +#10 120.8 [2188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x8.c.o +#10 120.8 [2189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int16-x32.c.o +#10 120.8 [2190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-sse41-mul32-ld32-x8.c.o +#10 120.8 [2191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-sse41-x16.c.o +#10 120.8 [2192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x24.c.o +#10 120.9 [2193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx-int32-x32.c.o +#10 121.2 [2194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-avx-acc2.c.o +#10 121.3 [2195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-avx-acc2.c.o +#10 121.3 [2196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-avx.c.o +#10 121.3 [2197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-avx.c.o +#10 121.3 [2198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx-acc2.c.o +#10 121.3 [2199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-avx-acc2.c.o +#10 121.4 [2200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx-acc2.c.o +#10 121.4 [2201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-avx.c.o +#10 121.4 [2202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx.c.o +#10 121.5 [2203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-avx.c.o +#10 121.5 [2204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-avx-acc2.c.o +#10 121.5 [2205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-avx-acc2.c.o +#10 121.5 [2206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-avx.c.o +#10 121.6 [2207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x8.c.o +#10 121.7 [2208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x24.c.o +#10 121.7 [2209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-avx-acc2.c.o +#10 121.7 [2210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x32.c.o +#10 121.7 [2211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx.c.o +#10 121.7 [2212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx-x16.c.o +#10 121.8 [2213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx.c.o +#10 121.8 [2214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-avx.c.o +#10 121.9 [2215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx-acc2.c.o +#10 122.0 [2216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx-acc2.c.o +#10 122.0 [2217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx.c.o +#10 122.1 [2218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx-broadcast.c.o +#10 122.1 [2219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-avx.c.o +#10 122.1 [2220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx-acc2.c.o +#10 122.1 [2221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-avx-broadcast.c.o +#10 122.2 [2222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-avx-broadcast.c.o +#10 122.2 [2223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-avx-broadcast.c.o +#10 122.3 [2224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-avx-broadcast.c.o +#10 122.3 [2225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-avx-broadcast.c.o +#10 122.3 [2226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx-broadcast.c.o +#10 122.3 [2227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-avx-broadcast.c.o +#10 122.4 [2228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-avx-broadcast.c.o +#10 122.5 [2229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16-minmax-avx-broadcast.c.o +#10 122.6 [2230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-avx-broadcast.c.o +#10 122.7 [2231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x8-minmax-avx-broadcast.c.o +#10 122.8 [2232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x8-minmax-avx-broadcast.c.o +#10 122.8 [2233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-avx-broadcast.c.o +#10 122.8 [2234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-avx-broadcast.c.o +#10 122.8 [2235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x8-minmax-avx-broadcast.c.o +#10 122.8 [2236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx-broadcast.c.o +#10 122.9 [2237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-avx-broadcast.c.o +#10 122.9 [2238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-avx-broadcast.c.o +#10 122.9 [2239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-avx-broadcast.c.o +#10 122.9 [2240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-avx-broadcast.c.o +#10 123.0 [2241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-avx-broadcast.c.o +#10 123.0 [2242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-avx-broadcast.c.o +#10 123.2 [2243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx-2x16.c.o +#10 123.2 [2244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-avx-broadcast.c.o +#10 123.2 [2245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-avx-broadcast.c.o +#10 123.2 [2246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx-2x8.c.o +#10 123.2 [2247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx-broadcast.c.o +#10 123.3 [2248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x8-minmax-avx-broadcast.c.o +#10 123.3 [2249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x24.c.o +#10 123.3 [2250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x8.c.o +#10 123.3 [2251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x32.c.o +#10 123.4 [2252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x24.c.o +#10 123.4 [2253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x16.c.o +#10 123.4 [2254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x8.c.o +#10 123.5 [2255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx-x16.c.o +#10 123.5 [2256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx-x32.c.o +#10 123.5 [2257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-avx.c.o +#10 123.6 [2258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx-x8.c.o +#10 123.6 [2259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx-x16.c.o +#10 123.7 [2260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx-x8.c.o +#10 123.7 [2261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx-x8.c.o +#10 123.8 [2262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx-x16.c.o +#10 123.8 [2263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx-x8.c.o +#10 123.8 [2264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx-x16.c.o +#10 123.8 [2265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx-x8.c.o +#10 123.8 [2266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx-x16.c.o +#10 123.9 [2267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx-x16.c.o +#10 123.9 [2268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx-x16.c.o +#10 123.9 [2269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx-x8.c.o +#10 124.0 [2270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx-x8.c.o +#10 124.0 [2271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx-x16.c.o +#10 124.0 [2272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx-x16.c.o +#10 124.0 [2273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx-x8.c.o +#10 124.1 [2274/6823] Generating src/x86_64-fma/blas/shdotxf.py.o +#10 124.1 [2275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx-x8.c.o +#10 124.2 [2276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx-x8.c.o +#10 124.2 [2277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx-x16.c.o +#10 124.2 [2278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx-x8.c.o +#10 124.2 [2279/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o +#10 124.2 [2280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx-x16.c.o +#10 124.3 [2281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx-x8.c.o +#10 124.3 [2282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx-x16.c.o +#10 124.3 [2283/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o +#10 124.3 [2284/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o +#10 124.3 [2285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-x8.c.o +#10 124.3 [2286/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o +#10 124.3 [2287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-x16.c.o +#10 124.3 [2288/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o +#10 124.4 [2289/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/x86_64-fma/softmax.c.o +#10 124.4 [2290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx-x8.c.o +#10 124.4 [2291/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o +#10 124.4 [2292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx-x16.c.o +#10 124.4 [2293/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o +#10 124.4 [2294/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o +#10 124.4 [2295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx-x16.c.o +#10 124.5 [2296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx-x8.c.o +#10 124.6 [2297/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o +#10 124.6 [2298/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o +#10 124.7 [2299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx-x16.c.o +#10 124.7 [2300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x8.c.o +#10 124.8 [2301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx-x16.c.o +#10 124.8 [2302/6823] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o +#10 124.8 [2303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx-x8.c.o +#10 124.8 [2304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx-x16.c.o +#10 124.8 [2305/6823] Linking C static library lib/libnnpack.a +#10 124.8 [2306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx-x8.c.o +#10 124.8 [2307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x16.c.o +#10 124.9 [2308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x32.c.o +#10 124.9 [2309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x40.c.o +#10 125.0 [2310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x8.c.o +#10 125.0 [2311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x24.c.o +#10 125.0 [2312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut4-p4-perm-x48.c.o +#10 125.1 [2313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x24.c.o +#10 125.1 [2314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x16.c.o +#10 125.2 [2315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x32.c.o +#10 125.2 [2316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x8.c.o +#10 125.2 [2317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x16.c.o +#10 125.2 [2318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x32.c.o +#10 125.3 [2319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x48.c.o +#10 125.3 [2320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x40.c.o +#10 125.3 [2321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-lut16-p3-x40.c.o +#10 125.3 [2322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x48.c.o +#10 125.4 [2323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx-x8.c.o +#10 125.4 [2324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx-rr2-p6-x24.c.o +#10 125.4 [2325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-x8.c.o +#10 125.5 [2326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx-x16.c.o +#10 125.5 [2327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx-x8.c.o +#10 125.5 [2328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx-x16.c.o +#10 125.5 [2329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx-x16.c.o +#10 125.6 [2330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx-x8.c.o +#10 125.6 [2331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx-x16.c.o +#10 125.6 [2332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx-x8.c.o +#10 125.7 [2333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx-x16.c.o +#10 125.8 [2334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx-x8.c.o +#10 125.8 [2335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx-x16.c.o +#10 125.9 [2336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x8.c.o +#10 125.9 [2337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx-x8.c.o +#10 125.9 [2338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x24.c.o +#10 125.9 [2339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx-x16.c.o +#10 125.9 [2340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x16.c.o +#10 125.9 [2341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x32.c.o +#10 126.0 [2342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x48.c.o +#10 126.0 [2343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x56.c.o +#10 126.0 [2344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x40.c.o +#10 126.0 [2345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x64.c.o +#10 126.1 [2346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x72.c.o +#10 126.2 [2347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-div-x80.c.o +#10 126.2 [2348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x8.c.o +#10 126.3 [2349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x16.c.o +#10 126.3 [2350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x40.c.o +#10 126.4 [2351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x56.c.o +#10 126.4 [2352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x32.c.o +#10 126.4 [2353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x80.c.o +#10 126.4 [2354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x64.c.o +#10 126.4 [2355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x72.c.o +#10 126.4 [2356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt-x8.c.o +#10 126.4 [2357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx-x8.c.o +#10 126.5 [2358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x24.c.o +#10 126.5 [2359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx-sqrt-x16.c.o +#10 126.6 [2360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx-rr2-p5-nr2-x48.c.o +#10 126.7 [2361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx-x16.c.o +#10 126.7 [2362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx-x16.c.o +#10 126.7 [2363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx-x8.c.o +#10 126.7 [2364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx-x8.c.o +#10 126.8 [2365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx-x16.c.o +#10 126.8 [2366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx-rr2-p5.c.o +#10 126.8 [2367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-p6.c.o +#10 126.8 [2368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.o +#10 126.8 [2369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 126.8 [2370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-lut16-p3.c.o +#10 126.8 [2371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx-rr2-lut4-p4-perm.c.o +#10 126.8 [2372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-nr1.c.o +#10 126.8 [2373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-avx-mul16-add16.c.o +#10 126.9 [2374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-lut64-p2-div.c.o +#10 126.9 [2375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-div.c.o +#10 126.9 [2376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx-rr2-p5-nr2.c.o +#10 126.9 [2377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o +#10 127.0 [2378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 127.0 [2379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx-mul16.c.o +#10 127.1 [2380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.o +#10 127.1 [2381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 127.1 [2382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 127.1 [2383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 127.1 [2384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 127.2 [2385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.2 [2386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 127.2 [2387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o +#10 127.2 [2388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 127.3 [2389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 127.3 [2390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 127.3 [2391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 127.3 [2392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.3 [2393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.3 [2394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 127.4 [2395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.4 [2396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx-mul32.c.o +#10 127.4 [2397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 127.4 [2398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 127.4 [2399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 127.4 [2400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.4 [2401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 127.4 [2402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx-mul16.c.o +#10 127.5 [2403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 127.5 [2404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 127.5 [2405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.5 [2406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 127.5 [2407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 127.5 [2408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.5 [2409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 127.6 [2410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 127.6 [2411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.6 [2412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 127.6 [2413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.6 [2414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.6 [2415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 127.6 [2416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 127.6 [2417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 127.6 [2418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.6 [2419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 127.7 [2420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.7 [2421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 127.7 [2422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 127.7 [2423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 127.7 [2424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.7 [2425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 127.7 [2426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.8 [2427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 127.8 [2428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 127.8 [2429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 127.8 [2430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 127.8 [2431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul16-add16.c.o +#10 127.8 [2432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 127.8 [2433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 127.8 [2434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 127.8 [2435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 127.9 [2436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16-add16.c.o +#10 127.9 [2437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx-mul32.c.o +#10 127.9 [2438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 128.0 [2439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul16-add16.c.o +#10 128.0 [2440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx-mul16.c.o +#10 128.1 [2441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16-add16.c.o +#10 128.2 [2442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 128.2 [2443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 128.2 [2444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 128.2 [2445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 128.3 [2446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 128.3 [2447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-avx.c.o +#10 128.3 [2448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x16.c.o +#10 128.4 [2449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 128.4 [2450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x24.c.o +#10 128.4 [2451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 128.4 [2452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x8.c.o +#10 128.4 [2453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 128.4 [2454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-avx.c.o +#10 128.4 [2455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx-mul32.c.o +#10 128.5 [2456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx-mul16.c.o +#10 128.5 [2457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 128.5 [2458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx-x32.c.o +#10 128.5 [2459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 128.5 [2460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-avx.c.o +#10 128.5 [2461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 128.5 [2462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 128.5 [2463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 128.5 [2464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-avx.c.o +#10 128.6 [2465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 128.6 [2466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 128.6 [2467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-avx.c.o +#10 128.6 [2468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 128.6 [2469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-avx.c.o +#10 128.6 [2470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 128.6 [2471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 128.6 [2472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 128.6 [2473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 128.6 [2474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-avx.c.o +#10 128.7 [2475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-avx.c.o +#10 128.7 [2476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 128.7 [2477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 128.7 [2478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 128.7 [2479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 128.7 [2480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 128.7 [2481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-avx.c.o +#10 128.7 [2482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 128.7 [2483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 128.7 [2484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 128.8 [2485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 128.8 [2486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 128.8 [2487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 128.8 [2488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 128.8 [2489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 128.8 [2490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 128.8 [2491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 128.8 [2492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 128.8 [2493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 128.9 [2494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 128.9 [2495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx-mul32.c.o +#10 128.9 [2496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 129.0 [2497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x8.c.o +#10 129.1 [2498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x24.c.o +#10 129.1 [2499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x16.c.o +#10 129.1 [2500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul16-ld64-x32.c.o +#10 129.3 [2501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx-mul32-ld32-x32.c.o +#10 129.6 [2502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x16.c.o +#10 129.7 [2503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x8.c.o +#10 129.9 [2504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x32.c.o +#10 130.0 [2505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx-mul32-ld32-x24.c.o +#10 130.1 [2506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x8.c.o +#10 130.2 [2507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x16.c.o +#10 130.5 [2508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x8.c.o +#10 130.6 [2509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x32.c.o +#10 130.6 [2510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx-x16.c.o +#10 130.6 [2511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx-x32.c.o +#10 130.6 [2512/6823] Building CXX object c10/test/CMakeFiles/c10_irange_test.dir/util/irange_test.cpp.o +#10 130.6 [2513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 130.7 [2514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 130.8 [2515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 130.8 [2516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 130.8 [2517/6823] Building CXX object c10/test/CMakeFiles/c10_exception_test.dir/util/exception_test.cpp.o +#10 130.8 [2518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.o +#10 130.9 [2519/6823] Building CXX object c10/test/CMakeFiles/c10_flags_test.dir/util/flags_test.cpp.o +#10 130.9 [2520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.o +#10 131.1 [2521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.o +#10 131.2 [2522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.o +#10 131.3 [2523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.o +#10 131.3 [2524/6823] Building CXX object c10/test/CMakeFiles/c10_InlineDeviceGuard_test.dir/core/impl/InlineDeviceGuard_test.cpp.o +#10 131.3 [2525/6823] Building CXX object c10/test/CMakeFiles/c10_accumulate_test.dir/util/accumulate_test.cpp.o +#10 131.4 [2526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.o +#10 131.4 [2527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 131.5 [2528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x8.c.o +#10 131.5 [2529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.o +#10 131.6 [2530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 131.6 [2531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 131.6 [2532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x16.c.o +#10 131.6 [2533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 131.6 [2534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 131.6 [2535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x24.c.o +#10 131.7 [2536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 131.7 [2537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx-x32.c.o +#10 131.7 [2538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 131.7 [2539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 131.8 [2540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.o +#10 131.8 [2541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 131.8 [2542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 131.8 [2543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 131.8 [2544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 131.8 [2545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 131.8 [2546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 131.9 [2547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 131.9 [2548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 131.9 [2549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 131.9 [2550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 131.9 [2551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 132.0 [2552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 132.0 [2553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 132.0 [2554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 132.0 [2555/6823] Building CXX object c10/test/CMakeFiles/c10_logging_test.dir/util/logging_test.cpp.o +#10 132.0 [2556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.o +#10 132.0 [2557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.o +#10 132.0 [2558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.o +#10 132.0 [2559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.o +#10 132.0 [2560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.o +#10 132.1 [2561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.o +#10 132.1 [2562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.o +#10 132.1 [2563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.o +#10 132.1 [2564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.o +#10 132.2 [2565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.o +#10 132.2 [2566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.o +#10 132.2 [2567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.o +#10 132.2 [2568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.o +#10 132.2 [2569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.o +#10 132.2 [2570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.o +#10 132.2 [2571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.o +#10 132.3 [2572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.o +#10 132.3 [2573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul16-ld64-x8.c.o +#10 132.3 [2574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.o +#10 132.3 [2575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.o +#10 132.3 [2576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.o +#10 132.3 [2577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.o +#10 132.4 [2578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.o +#10 132.4 [2579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul16-ld64-x16.c.o +#10 132.4 [2580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul16-ld64-x8.c.o +#10 132.4 [2581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul16-ld64-x16.c.o +#10 132.6 [2582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-x8.c.o +#10 132.7 [2583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx-mul32-ld32-x16.c.o +#10 132.7 [2584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-x8.c.o +#10 132.7 [2585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 132.8 [2586/6823] Building CXX object c10/test/CMakeFiles/c10_string_view_test.dir/util/string_view_test.cpp.o +#10 132.8 [2587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-x8.c.o +#10 132.8 [2588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 132.8 [2589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x8.c.o +#10 132.8 [2590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx-mul32-ld32-x16.c.o +#10 132.8 [2591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x32.c.o +#10 132.8 [2592/6823] Building CXX object c10/test/CMakeFiles/c10_bfloat16_test.dir/util/bfloat16_test.cpp.o +#10 132.9 [2593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x16.c.o +#10 132.9 [2594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-avx-mul16-ld64-x16.c.o +#10 132.9 [2595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx-x16.c.o +#10 133.0 [2596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x8.c.o +#10 133.0 [2597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx-x32.c.o +#10 133.1 [2598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x32.c.o +#10 133.2 [2599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-multi-mov-avx.c.o +#10 133.2 [2600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x64.c.o +#10 133.2 [2601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x48.c.o +#10 133.2 [2602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx-x16.c.o +#10 133.2 [2603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-multi-switch-avx.c.o +#10 133.3 [2604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-multi-avx.c.o +#10 133.4 [2605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-mov-avx.c.o +#10 133.4 [2606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-mov-avx.c.o +#10 133.5 [2607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-8x8-reuse-switch-avx.c.o +#10 133.5 [2608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-switch-avx.c.o +#10 133.5 [2609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-multi-multi-avx.c.o +#10 133.6 [2610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-switch-avx.c.o +#10 133.6 [2611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-mov-avx.c.o +#10 133.7 [2612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-x8.c.o +#10 133.7 [2613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x4-reuse-multi-avx.c.o +#10 133.7 [2614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-f16c-x16.c.o +#10 133.8 [2615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9x-minmax-f16c-c8.c.o +#10 133.8 [2616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-f16c-c8.c.o +#10 133.9 [2617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c8.c.o +#10 133.9 [2618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c16.c.o +#10 134.0 [2619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c16.c.o +#10 134.0 [2620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c24.c.o +#10 134.0 [2621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c8.c.o +#10 134.0 [2622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c24.c.o +#10 134.2 [2623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7p7x-minmax-f16c-c32.c.o +#10 134.2 [2624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-f16c-2x8.c.o +#10 134.2 [2625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gavgpool/gen/f16-gavgpool-7x-minmax-f16c-c32.c.o +#10 134.2 [2626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-prelu/gen/f16-prelu-f16c-2x16.c.o +#10 134.2 [2627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-f16c-x8.c.o +#10 134.2 [2628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-f16c-c8.c.o +#10 134.3 [2629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-minmax-f16c-x16.c.o +#10 134.3 [2630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rmax/f16-rmax-f16c.c.o +#10 134.4 [2631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-f16c-x8.c.o +#10 134.4 [2632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-f16c-x16.c.o +#10 134.5 [2633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-minmax-f16c-x16.c.o +#10 134.6 [2634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-f16c-x8.c.o +#10 134.6 [2635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-f16c-x16.c.o +#10 134.6 [2636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-minmax-f16c-x8.c.o +#10 134.6 [2637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-f16c-x8.c.o +#10 134.6 [2638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-x8.c.o +#10 134.6 [2639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-f16c-x16.c.o +#10 134.6 [2640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-f16c-x8.c.o +#10 134.7 [2641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-minmax-f16c-x16.c.o +#10 134.7 [2642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-f16c-x16.c.o +#10 134.9 [2643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-f16c-x8.c.o +#10 134.9 [2644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-f16c-x16.c.o +#10 134.9 [2645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-f16c-x8.c.o +#10 135.0 [2646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-f16c-x16.c.o +#10 135.0 [2647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-f16c-x16.c.o +#10 135.0 [2648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-minmax-f16c-x8.c.o +#10 135.0 [2649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-minmax-f16c-x8.c.o +#10 135.1 [2650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-f16c-x8.c.o +#10 135.1 [2651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-minmax-f16c-x16.c.o +#10 135.1 [2652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-x8.c.o +#10 135.2 [2653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-f16c-x16.c.o +#10 135.2 [2654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-minmax-f16c-x16.c.o +#10 135.2 [2655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-x8.c.o +#10 135.3 [2656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-f16c-x16.c.o +#10 135.4 [2657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-f16c-x16.c.o +#10 135.4 [2658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-f16c-x8.c.o +#10 135.4 [2659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-f16c-x8.c.o +#10 135.5 [2660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-f16c-x16.c.o +#10 135.5 [2661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-f16c-x16.c.o +#10 135.5 [2662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-minmax-f16c-x8.c.o +#10 135.5 [2663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-minmax-f16c-x8.c.o +#10 135.6 [2664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-f16c-x16.c.o +#10 135.6 [2665/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-x8.c.o +#10 135.7 [2666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-f16c-x16.c.o +#10 135.7 [2667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-f16c-x16.c.o +#10 135.8 [2668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-f16c-x16.c.o +#10 135.8 [2669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-f16c-x8.c.o +#10 135.9 [2670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-f16c-x8.c.o +#10 135.9 [2671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-f16c-x16.c.o +#10 135.9 [2672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-f16c-x8.c.o +#10 135.9 [2673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-f16c-x16.c.o +#10 135.9 [2674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-sqrt-x16.c.o +#10 135.9 [2675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-f16c-x8.c.o +#10 136.0 [2676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-f16c-sqrt-x8.c.o +#10 136.1 [2677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-x8.c.o +#10 136.1 [2678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-f16c-x16.c.o +#10 136.2 [2679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-f16c-x8.c.o +#10 136.2 [2680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f16-f32-f16c.c.o +#10 136.3 [2681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/cvt-f32-f16-f16c.c.o +#10 136.4 [2682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-xop-mul16-add16.c.o +#10 136.4 [2683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-f16c-x16.c.o +#10 136.5 [2684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-xop-mul16-add16.c.o +#10 136.5 [2685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 136.6 [2686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 136.6 [2687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-xop-mul16-add16.c.o +#10 136.7 [2688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-xop-mul16-add16.c.o +#10 136.8 [2689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-xop-mul32.c.o +#10 136.9 [2690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 136.9 [2691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-xop-mul16-add16.c.o +#10 137.0 [2692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 137.0 [2693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 137.0 [2694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 137.1 [2695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 137.1 [2696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 137.2 [2697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 137.2 [2698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 137.2 [2699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 137.4 [2700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-xop-mul32.c.o +#10 137.5 [2701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 137.5 [2702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 137.5 [2703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 137.5 [2704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 137.6 [2705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 137.6 [2706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 137.7 [2707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 137.7 [2708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 137.8 [2709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 137.8 [2710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 137.9 [2711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 137.9 [2712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 138.0 [2713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 138.0 [2714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 138.1 [2715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 138.2 [2716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 138.2 [2717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 138.2 [2718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 138.4 [2719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 138.4 [2720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 138.4 [2721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 138.4 [2722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 138.4 [2723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 138.5 [2724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 138.5 [2725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 138.7 [2726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 138.8 [2727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 138.8 [2728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 138.9 [2729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 138.9 [2730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 138.9 [2731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 139.0 [2732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 139.0 [2733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 139.1 [2734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 139.1 [2735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 139.2 [2736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 139.3 [2737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 139.3 [2738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-xop-mul16-add16.c.o +#10 139.4 [2739/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-xop-mul32.c.o +#10 139.4 [2740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 139.5 [2741/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-xop-mul16-add16.c.o +#10 139.5 [2742/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 139.6 [2743/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-xop-mul16-add16.c.o +#10 139.7 [2744/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 139.8 [2745/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 139.8 [2746/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-xop-mul16-add16.c.o +#10 139.9 [2747/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-xw-minmax-fp32-xop.c.o +#10 139.9 [2748/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 139.9 [2749/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 140.0 [2750/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 140.1 [2751/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 140.1 [2752/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-xw-minmax-fp32-xop.c.o +#10 140.2 [2753/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 140.2 [2754/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 140.3 [2755/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-xop-mul32.c.o +#10 140.3 [2756/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x4c2s4-xw-minmax-fp32-xop.c.o +#10 140.3 [2757/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 140.4 [2758/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 140.5 [2759/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 140.5 [2760/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 140.6 [2761/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2-xw-minmax-fp32-xop.c.o +#10 140.7 [2762/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 140.7 [2763/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 140.7 [2764/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 140.7 [2765/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c2s4-xw-minmax-fp32-xop.c.o +#10 140.8 [2766/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 140.8 [2767/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x4c8-xw-minmax-fp32-xop.c.o +#10 140.9 [2768/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 141.0 [2769/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2s4-xw-minmax-fp32-xop.c.o +#10 141.0 [2770/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 141.0 [2771/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c2-xw-minmax-fp32-xop.c.o +#10 141.1 [2772/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-xw-minmax-fp32-xop.c.o +#10 141.1 [2773/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 141.2 [2774/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 141.3 [2775/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 141.4 [2776/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 141.4 [2777/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 141.4 [2778/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x4c8-xw-minmax-fp32-xop.c.o +#10 141.5 [2779/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 141.5 [2780/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 141.5 [2781/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 141.5 [2782/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x4c2s4-xw-minmax-fp32-xop.c.o +#10 141.6 [2783/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 141.6 [2784/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 141.6 [2785/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 141.6 [2786/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 141.7 [2787/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 141.8 [2788/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 141.9 [2789/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 141.9 [2790/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 141.9 [2791/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 141.9 [2792/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 142.0 [2793/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 142.1 [2794/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 142.1 [2795/6823] Building CXX object c10/test/CMakeFiles/c10_either_test.dir/util/either_test.cpp.o +#10 142.1 [2796/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 142.2 [2797/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 142.2 [2798/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 142.2 [2799/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 142.2 [2800/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 142.3 [2801/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 142.3 [2802/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x8.c.o +#10 142.4 [2803/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 142.4 [2804/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 142.4 [2805/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x16.c.o +#10 142.4 [2806/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x24.c.o +#10 142.5 [2807/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x8.c.o +#10 142.5 [2808/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-xop-mul32-ld32-x32.c.o +#10 142.6 [2809/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x16.c.o +#10 142.7 [2810/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-xop-mul32.c.o +#10 142.8 [2811/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x24.c.o +#10 142.8 [2812/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-xop-mul32-ld32-x32.c.o +#10 142.8 [2813/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 142.9 [2814/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-xop-mul32.c.o +#10 142.9 [2815/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 142.9 [2816/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 142.9 [2817/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-xop-mul32.c.o +#10 142.9 [2818/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 142.9 [2819/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 143.0 [2820/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-xop-mul32.c.o +#10 143.1 [2821/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 143.1 [2822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 143.2 [2823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 143.2 [2824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 143.3 [2825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 143.3 [2826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 143.3 [2827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 143.3 [2828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 143.4 [2829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 143.4 [2830/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 143.5 [2831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 143.6 [2832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 143.6 [2833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 143.6 [2834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 143.7 [2835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 143.7 [2836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 143.7 [2837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-xop-ld64.c.o +#10 143.8 [2838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-xop-ld64.c.o +#10 143.8 [2839/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 143.8 [2840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-xop-ld64.c.o +#10 143.8 [2841/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2s4-minmax-fp32-xop-ld128.c.o +#10 143.9 [2842/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c8-minmax-fp32-xop-ld128.c.o +#10 144.0 [2843/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4c2-minmax-fp32-xop-ld128.c.o +#10 144.1 [2844/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-xop-ld128.c.o +#10 144.1 [2845/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2-minmax-fp32-xop-ld64.c.o +#10 144.1 [2846/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-xop-ld128.c.o +#10 144.1 [2847/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c2s4-minmax-fp32-xop-ld64.c.o +#10 144.1 [2848/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-xop-ld64.c.o +#10 144.2 [2849/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4c8-minmax-fp32-xop-ld128.c.o +#10 144.2 [2850/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-xop-ld64.c.o +#10 144.3 [2851/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-xop-ld64.c.o +#10 144.3 [2852/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-xop-ld64.c.o +#10 144.3 [2853/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2-minmax-fp32-xop-ld128.c.o +#10 144.4 [2854/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c2s4-minmax-fp32-xop-ld128.c.o +#10 144.5 [2855/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-xop-ld64.c.o +#10 144.5 [2856/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4c8-minmax-fp32-xop-ld128.c.o +#10 144.5 [2857/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2-minmax-fp32-xop-ld128.c.o +#10 144.5 [2858/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-xop-ld64.c.o +#10 144.6 [2859/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-xop-mul32-ld32-x16.c.o +#10 144.6 [2860/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-xop-mul32-ld32-x16.c.o +#10 144.6 [2861/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-xop-mul32-ld32-x8.c.o +#10 144.7 [2862/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4c2s4-minmax-fp32-xop-ld128.c.o +#10 144.8 [2863/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-fma3.c.o +#10 144.8 [2864/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3-acc2.c.o +#10 144.8 [2865/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-fma3-acc2.c.o +#10 144.8 [2866/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-xop-mul32-ld32-x8.c.o +#10 144.8 [2867/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-fma3.c.o +#10 144.9 [2868/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-fma3.c.o +#10 145.0 [2869/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-fma3-acc2.c.o +#10 145.0 [2870/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-fma3-acc2.c.o +#10 145.0 [2871/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3.c.o +#10 145.1 [2872/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-fma3.c.o +#10 145.1 [2873/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-fma3-acc2.c.o +#10 145.2 [2874/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-fma3-acc2.c.o +#10 145.2 [2875/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-fma3.c.o +#10 145.2 [2876/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-fma3-acc2.c.o +#10 145.2 [2877/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3.c.o +#10 145.3 [2878/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-fma3.c.o +#10 145.3 [2879/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-fma3-acc2.c.o +#10 145.4 [2880/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-fma3.c.o +#10 145.4 [2881/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-fma3-acc2.c.o +#10 145.5 [2882/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3-acc2.c.o +#10 145.6 [2883/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-fma3.c.o +#10 145.6 [2884/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-fma3-acc2.c.o +#10 145.6 [2885/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c8.c.o +#10 145.6 [2886/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-fma3-c16.c.o +#10 145.6 [2887/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-fma3-2x.c.o +#10 145.7 [2888/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-fma3-2x.c.o +#10 145.7 [2889/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-fma3.c.o +#10 145.8 [2890/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-fma3.c.o +#10 145.8 [2891/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-fma3-acc2.c.o +#10 145.9 [2892/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l8c8s4r-minmax-fma3.c.o +#10 145.9 [2893/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-fma3-acc2.c.o +#10 146.0 [2894/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c8s4r-minmax-fma3.c.o +#10 146.0 [2895/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-fma3.c.o +#10 146.0 [2896/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-fma3.c.o +#10 146.0 [2897/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-fma3-acc2.c.o +#10 146.0 [2898/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c8s4r-minmax-fma3-acc2.c.o +#10 146.0 [2899/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-fma3-acc2.c.o +#10 146.1 [2900/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3-acc2.c.o +#10 146.2 [2901/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-fma3.c.o +#10 146.3 [2902/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-fma3-acc2.c.o +#10 146.3 [2903/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-fma3-acc2.c.o +#10 146.3 [2904/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-fma3.c.o +#10 146.3 [2905/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3.c.o +#10 146.3 [2906/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-fma3-acc2.c.o +#10 146.5 [2907/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3.c.o +#10 146.5 [2908/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-fma3-acc2.c.o +#10 146.5 [2909/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3-acc2.c.o +#10 146.5 [2910/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-fma3.c.o +#10 146.6 [2911/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-fma3.c.o +#10 146.6 [2912/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3.c.o +#10 146.6 [2913/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-fma3-acc2.c.o +#10 146.7 [2914/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-fma3-broadcast.c.o +#10 146.7 [2915/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16s4-minmax-fma3-broadcast.c.o +#10 146.7 [2916/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-fma3-broadcast.c.o +#10 146.8 [2917/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-fma3-broadcast.c.o +#10 146.8 [2918/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-fma3-broadcast.c.o +#10 146.9 [2919/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16s4-minmax-fma3-broadcast.c.o +#10 146.9 [2920/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-fma3-broadcast.c.o +#10 146.9 [2921/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-fma3-broadcast.c.o +#10 147.0 [2922/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-fma3-broadcast.c.o +#10 147.0 [2923/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16s4-minmax-fma3-broadcast.c.o +#10 147.1 [2924/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8-minmax-fma3-broadcast.c.o +#10 147.1 [2925/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16s4-minmax-fma3-broadcast.c.o +#10 147.1 [2926/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-fma3-broadcast.c.o +#10 147.1 [2927/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-fma3-broadcast.c.o +#10 147.1 [2928/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x8-minmax-fma3-broadcast.c.o +#10 147.2 [2929/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16s4-minmax-fma3-broadcast.c.o +#10 147.3 [2930/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x8-minmax-fma3-broadcast.c.o +#10 147.3 [2931/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16-minmax-fma3-broadcast.c.o +#10 147.4 [2932/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x8-minmax-fma3-broadcast.c.o +#10 147.4 [2933/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-fma3-broadcast.c.o +#10 147.4 [2934/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x8-minmax-fma3-broadcast.c.o +#10 147.5 [2935/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-3x16s4-minmax-fma3-broadcast.c.o +#10 147.5 [2936/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x8-minmax-fma3-broadcast.c.o +#10 147.5 [2937/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16s4-minmax-fma3-broadcast.c.o +#10 147.6 [2938/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x8-minmax-fma3-broadcast.c.o +#10 147.6 [2939/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16s4-minmax-fma3-broadcast.c.o +#10 147.6 [2940/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-fma3-broadcast.c.o +#10 147.7 [2941/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-8x8-minmax-fma3-broadcast.c.o +#10 147.7 [2942/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-fma3-broadcast.c.o +#10 147.8 [2943/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-fma3-broadcast.c.o +#10 147.9 [2944/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16s4-minmax-fma3-broadcast.c.o +#10 147.9 [2945/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16s4-minmax-fma3-broadcast.c.o +#10 147.9 [2946/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-fma3-broadcast.c.o +#10 147.9 [2947/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-fma3-broadcast.c.o +#10 148.0 [2948/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-fma3-broadcast.c.o +#10 148.0 [2949/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16s4-minmax-fma3-broadcast.c.o +#10 148.0 [2950/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-fma3-broadcast.c.o +#10 148.1 [2951/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-fma3-broadcast.c.o +#10 148.1 [2952/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x8-minmax-fma3-broadcast.c.o +#10 148.1 [2953/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-fma3-broadcast.c.o +#10 148.2 [2954/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8-minmax-fma3-broadcast.c.o +#10 148.2 [2955/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-fma3-x8.c.o +#10 148.2 [2956/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16s4-minmax-fma3-broadcast.c.o +#10 148.3 [2957/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x8.c.o +#10 148.3 [2958/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x16.c.o +#10 148.4 [2959/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-fma3-x16.c.o +#10 148.4 [2960/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x24.c.o +#10 148.5 [2961/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x48.c.o +#10 148.5 [2962/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x32.c.o +#10 148.5 [2963/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x64.c.o +#10 148.5 [2964/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x40.c.o +#10 148.6 [2965/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-fma3-nr1fma1adj-x56.c.o +#10 148.6 [2966/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr1fma.c.o +#10 148.6 [2967/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr2fma.c.o +#10 148.6 [2968/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-fma3-nr1fma1adj.c.o +#10 148.7 [2969/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-avx2-broadcast.c.o +#10 148.7 [2970/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-3x16-minmax-avx2-broadcast.c.o +#10 148.8 [2971/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-avx2-broadcast.c.o +#10 148.8 [2972/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-avx2-broadcast.c.o +#10 148.9 [2973/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-5x8-minmax-avx2-broadcast.c.o +#10 148.9 [2974/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-7x8-minmax-avx2-broadcast.c.o +#10 148.9 [2975/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-avx2-broadcast.c.o +#10 149.0 [2976/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-5x16-minmax-avx2-broadcast.c.o +#10 149.0 [2977/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-avx2-broadcast.c.o +#10 149.0 [2978/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-avx2-broadcast.c.o +#10 149.0 [2979/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-avx2-broadcast.c.o +#10 149.1 [2980/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-3x16-minmax-avx2-broadcast.c.o +#10 149.1 [2981/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-avx2-broadcast.c.o +#10 149.1 [2982/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-avx2-broadcast.c.o +#10 149.2 [2983/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-5x8-minmax-avx2-broadcast.c.o +#10 149.3 [2984/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-avx2-broadcast.c.o +#10 149.3 [2985/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-5x16-minmax-avx2-broadcast.c.o +#10 149.3 [2986/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-avx2-c8.c.o +#10 149.4 [2987/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32-acc2.c.o +#10 149.4 [2988/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-7x8-minmax-avx2-broadcast.c.o +#10 149.4 [2989/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32-acc4.c.o +#10 149.4 [2990/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-avx2-c8.c.o +#10 149.5 [2991/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40-acc2.c.o +#10 149.5 [2992/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x32.c.o +#10 149.5 [2993/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40-acc5.c.o +#10 149.6 [2994/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48-acc2.c.o +#10 149.6 [2995/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x40.c.o +#10 149.6 [2996/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48-acc3.c.o +#10 149.7 [2997/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x48.c.o +#10 149.8 [2998/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64-acc2.c.o +#10 149.8 [2999/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64-acc4.c.o +#10 149.8 [3000/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x72-acc3.c.o +#10 149.9 [3001/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x72.c.o +#10 149.9 [3002/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80-acc2.c.o +#10 149.9 [3003/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80-acc5.c.o +#10 149.9 [3004/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x80.c.o +#10 149.9 [3005/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x64.c.o +#10 150.0 [3006/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc3.c.o +#10 150.0 [3007/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc2.c.o +#10 150.0 [3008/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96-acc6.c.o +#10 150.1 [3009/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-avx2-rr1-p2-x96.c.o +#10 150.1 [3010/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-x8.c.o +#10 150.1 [3011/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-avx2-rr1-p3-x16.c.o +#10 150.2 [3012/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x16.c.o +#10 150.3 [3013/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x24.c.o +#10 150.3 [3014/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x40.c.o +#10 150.3 [3015/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x32.c.o +#10 150.3 [3016/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x8.c.o +#10 150.4 [3017/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x48.c.o +#10 150.4 [3018/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x56.c.o +#10 150.4 [3019/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-div-x64.c.o +#10 150.5 [3020/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x8.c.o +#10 150.5 [3021/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x16.c.o +#10 150.5 [3022/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x32.c.o +#10 150.6 [3023/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x40.c.o +#10 150.6 [3024/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x24.c.o +#10 150.7 [3025/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x56.c.o +#10 150.7 [3026/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x32.c.o +#10 150.8 [3027/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x48.c.o +#10 150.8 [3028/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-avx2-rr1-p2-rcp-x64.c.o +#10 150.8 [3029/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x48.c.o +#10 150.8 [3030/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x16.c.o +#10 150.9 [3031/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx2-x64.c.o +#10 150.9 [3032/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x32.c.o +#10 150.9 [3033/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x48.c.o +#10 151.0 [3034/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x64.c.o +#10 151.0 [3035/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64-acc2.c.o +#10 151.0 [3036/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx2-x16.c.o +#10 151.1 [3037/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64-acc4.c.o +#10 151.1 [3038/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x64.c.o +#10 151.2 [3039/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80-acc2.c.o +#10 151.3 [3040/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80-acc5.c.o +#10 151.3 [3041/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x80.c.o +#10 151.3 [3042/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x72-acc3.c.o +#10 151.3 [3043/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x72.c.o +#10 151.3 [3044/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc2.c.o +#10 151.4 [3045/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96.c.o +#10 151.4 [3046/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc6.c.o +#10 151.5 [3047/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64-acc2.c.o +#10 151.5 [3048/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64-acc4.c.o +#10 151.5 [3049/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x72-acc3.c.o +#10 151.5 [3050/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx2-p5-x96-acc3.c.o +#10 151.6 [3051/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x64.c.o +#10 151.6 [3052/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x72.c.o +#10 151.7 [3053/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80-acc2.c.o +#10 151.8 [3054/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc2.c.o +#10 151.8 [3055/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc6.c.o +#10 151.8 [3056/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96.c.o +#10 151.9 [3057/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x96-acc3.c.o +#10 151.9 [3058/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80-acc5.c.o +#10 151.9 [3059/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64.c.o +#10 151.9 [3060/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64-acc4.c.o +#10 152.0 [3061/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x64-acc2.c.o +#10 152.0 [3062/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x72-acc3.c.o +#10 152.0 [3063/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80-acc2.c.o +#10 152.0 [3064/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx2-p5-x80.c.o +#10 152.0 [3065/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x72.c.o +#10 152.1 [3066/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80-acc5.c.o +#10 152.2 [3067/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x80.c.o +#10 152.2 [3068/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc2.c.o +#10 152.2 [3069/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc6.c.o +#10 152.3 [3070/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x8.c.o +#10 152.3 [3071/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96-acc3.c.o +#10 152.3 [3072/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x24.c.o +#10 152.4 [3073/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x56.c.o +#10 152.4 [3074/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x16.c.o +#10 152.5 [3075/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x32.c.o +#10 152.5 [3076/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x40.c.o +#10 152.5 [3077/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x48.c.o +#10 152.5 [3078/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx2-rr1-p5-x96.c.o +#10 152.6 [3079/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x64.c.o +#10 152.7 [3080/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x8.c.o +#10 152.7 [3081/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x24.c.o +#10 152.7 [3082/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x72.c.o +#10 152.7 [3083/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x16.c.o +#10 152.7 [3084/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x40.c.o +#10 152.8 [3085/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x32.c.o +#10 152.8 [3086/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut4-p4-perm-x80.c.o +#10 152.8 [3087/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x48.c.o +#10 152.9 [3088/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x56.c.o +#10 153.0 [3089/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x64.c.o +#10 153.0 [3090/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x80.c.o +#10 153.0 [3091/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut8-p4-perm-x72.c.o +#10 153.1 [3092/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x16.c.o +#10 153.1 [3093/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x8.c.o +#10 153.1 [3094/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x24.c.o +#10 153.1 [3095/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x32.c.o +#10 153.2 [3096/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x40.c.o +#10 153.2 [3097/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x56.c.o +#10 153.3 [3098/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x48.c.o +#10 153.3 [3099/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x64.c.o +#10 153.3 [3100/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x72.c.o +#10 153.4 [3101/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x8.c.o +#10 153.4 [3102/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x16.c.o +#10 153.4 [3103/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x24.c.o +#10 153.4 [3104/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-lut16-p3-gather-x80.c.o +#10 153.5 [3105/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x40.c.o +#10 153.7 [3106/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x8.c.o +#10 153.7 [3107/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x64.c.o +#10 153.7 [3108/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x48.c.o +#10 153.7 [3109/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x32.c.o +#10 153.7 [3110/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x32.c.o +#10 153.7 [3111/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x72.c.o +#10 153.7 [3112/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x16.c.o +#10 153.8 [3113/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x24.c.o +#10 153.8 [3114/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x80.c.o +#10 153.8 [3115/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x40.c.o +#10 153.9 [3116/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x48.c.o +#10 153.9 [3117/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx2-rr1-p6-x56.c.o +#10 154.0 [3118/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x56.c.o +#10 154.0 [3119/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x64.c.o +#10 154.1 [3120/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x72.c.o +#10 154.1 [3121/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x80.c.o +#10 154.1 [3122/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x16.c.o +#10 154.1 [3123/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x96.c.o +#10 154.1 [3124/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x8.c.o +#10 154.2 [3125/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x32.c.o +#10 154.2 [3126/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x24.c.o +#10 154.3 [3127/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx2-p5-x88.c.o +#10 154.3 [3128/6823] Building CXX object c10/test/CMakeFiles/c10_intrusive_ptr_test.dir/util/intrusive_ptr_test.cpp.o +#10 154.4 In destructor ‘virtual {anonymous}::SomeClass0Parameters::~SomeClass0Parameters()’, +#10 154.4 inlined from ‘void c10::weak_intrusive_ptr::reset_() [with TTarget = {anonymous}::SomeClass0Parameters; NullType = c10::detail::intrusive_target_default_null_type<{anonymous}::SomeClass0Parameters>]’ at ../c10/util/intrusive_ptr.h:709:7, +#10 154.4 inlined from ‘c10::weak_intrusive_ptr::~weak_intrusive_ptr() [with TTarget = {anonymous}::SomeClass0Parameters; NullType = c10::detail::intrusive_target_default_null_type<{anonymous}::SomeClass0Parameters>]’ at ../c10/util/intrusive_ptr.h:755:11, +#10 154.4 inlined from ‘virtual void WeakIntrusivePtrTest_givenStackObject_whenReclaimed_thenCrashes_Test::TestBody()’ at ../c10/test/util/intrusive_ptr_test.cpp:3537:1: +#10 154.4 ../c10/test/util/intrusive_ptr_test.cpp:26:7: warning: ‘void operator delete(void*, std::size_t)’ called on unallocated object ‘obj’ [-Wfree-nonheap-object] +#10 154.4 26 | class SomeClass0Parameters : public intrusive_ptr_target {}; +#10 154.4 | ^~~~~~~~~~~~~~~~~~~~ +#10 154.4 ../c10/test/util/intrusive_ptr_test.cpp: In member function ‘virtual void WeakIntrusivePtrTest_givenStackObject_whenReclaimed_thenCrashes_Test::TestBody()’: +#10 154.4 ../c10/test/util/intrusive_ptr_test.cpp:3529:13: note: declared here +#10 154.4 3529 | SomeClass obj; +#10 154.4 | ^~~ +#10 154.4 [3129/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x64.c.o +#10 154.4 [3130/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x56.c.o +#10 154.4 [3131/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x48.c.o +#10 154.4 [3132/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x40.c.o +#10 154.5 [3133/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x8.c.o +#10 154.5 [3134/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x80.c.o +#10 154.5 [3135/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x88.c.o +#10 154.6 [3136/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x96.c.o +#10 154.6 [3137/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x16.c.o +#10 154.6 [3138/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x24.c.o +#10 154.6 [3139/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx2-p5-x72.c.o +#10 154.7 [3140/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x32.c.o +#10 154.7 [3141/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x48.c.o +#10 154.8 [3142/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x40.c.o +#10 154.8 [3143/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x72.c.o +#10 154.8 [3144/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x80.c.o +#10 154.9 [3145/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x8.c.o +#10 154.9 [3146/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x56.c.o +#10 154.9 [3147/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x24.c.o +#10 155.0 [3148/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x40.c.o +#10 155.0 [3149/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-div-x64.c.o +#10 155.0 [3150/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x48.c.o +#10 155.0 [3151/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x16.c.o +#10 155.2 [3152/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x16.c.o +#10 155.2 [3153/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x56.c.o +#10 155.2 [3154/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x32.c.o +#10 155.2 [3155/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x64.c.o +#10 155.3 [3156/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x80.c.o +#10 155.3 [3157/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr1fma-x72.c.o +#10 155.3 [3158/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x32.c.o +#10 155.3 [3159/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x8.c.o +#10 155.4 [3160/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x40.c.o +#10 155.4 [3161/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x48.c.o +#10 155.5 [3162/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x24.c.o +#10 155.6 [3163/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x80.c.o +#10 155.6 [3164/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x64.c.o +#10 155.6 [3165/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-lut8-p4-perm.c.o +#10 155.6 [3166/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x56.c.o +#10 155.7 [3167/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f16-avx2-rr1-p2.c.o +#10 155.8 [3168/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx2-rr1-p5-nr2fma-x72.c.o +#10 155.8 [3169/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut8-p4-perm.c.o +#10 155.8 [3170/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-lut8-p3-perm.c.o +#10 155.8 [3171/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-p6.c.o +#10 155.8 [3172/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut4-p4-perm.c.o +#10 155.9 [3173/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f16-avx2-rr1-p3.c.o +#10 156.0 [3174/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f16-avx2-rr1-p3.c.o +#10 156.0 [3175/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx2-rr2-p5.c.o +#10 156.0 [3176/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/extexp-avx2-p5.c.o +#10 156.1 [3177/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx2-rr1-lut16-p3-gather.c.o +#10 156.1 [3178/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p2-div.c.o +#10 156.1 [3179/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-avx2-rr1-p5.c.o +#10 156.1 [3180/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p3-div.c.o +#10 156.2 [3181/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expminus-f32-avx2-rr2-p5.c.o +#10 156.2 [3182/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-div.c.o +#10 156.3 [3183/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p3-rcp.c.o +#10 156.3 [3184/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr2fma1adj.c.o +#10 156.3 [3185/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f16-avx2-rr1-p2-rcp.c.o +#10 156.4 [3186/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr1fma.c.o +#10 156.4 [3187/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-lut64-p2-gather-nr2fma.c.o +#10 156.4 [3188/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr2fma.c.o +#10 156.5 [3189/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr1fma.c.o +#10 156.5 [3190/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-nr2fma.c.o +#10 156.5 [3191/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-nr1fma.c.o +#10 156.6 [3192/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-div.c.o +#10 156.6 [3193/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-div.c.o +#10 156.7 [3194/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-div.c.o +#10 156.7 [3195/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-p5-nr2fma.c.o +#10 156.8 [3196/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 156.8 [3197/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr1-p5-nr1fma.c.o +#10 156.8 [3198/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx2-rr2-lut64-p2-gather-nr2fma1adj.c.o +#10 156.8 [3199/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 156.9 [3200/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 157.0 [3201/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 157.0 [3202/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p24c-minmax-fp32-avx2-mul32.c.o +#10 157.1 [3203/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p16c-minmax-fp32-avx2-mul32.c.o +#10 157.2 [3204/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 157.2 [3205/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 157.2 [3206/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 157.2 [3207/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 157.3 [3208/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 157.4 [3209/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 157.6 [3210/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 157.6 [3211/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 157.6 [3212/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 157.7 [3213/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 157.7 [3214/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p24c-minmax-fp32-avx2-mul32.c.o +#10 157.7 [3215/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 157.7 [3216/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 157.8 [3217/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 157.8 [3218/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x8c8-xw-minmax-fp32-avx2.c.o +#10 157.9 [3219/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 157.9 [3220/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 157.9 [3221/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x8c8-xw-minmax-fp32-avx2.c.o +#10 158.0 [3222/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 158.1 [3223/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 158.1 [3224/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x8c8-xw-minmax-fp32-avx2.c.o +#10 158.1 [3225/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 158.3 [3226/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 158.4 [3227/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 158.4 [3228/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 158.4 [3229/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 158.4 [3230/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 158.4 [3231/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 158.5 [3232/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 158.5 [3233/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 158.6 [3234/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 158.6 [3235/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 158.7 [3236/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p24c-minmax-fp32-avx2-mul32.c.o +#10 158.7 [3237/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 158.8 [3238/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 158.9 [3239/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x8.c.o +#10 159.0 [3240/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 159.0 [3241/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 159.0 [3242/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 159.1 [3243/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 159.1 [3244/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x16.c.o +#10 159.2 [3245/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 159.2 [3246/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x24.c.o +#10 159.2 [3247/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-add16-vpunpck.c.o +#10 159.2 [3248/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p24c-minmax-fp32-avx2-mul32.c.o +#10 159.3 [3249/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx2-x32.c.o +#10 159.4 [3250/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpunpck.c.o +#10 159.5 [3251/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x8c8-xw-minmax-fp32-avx2.c.o +#10 159.5 [3252/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x8c8-xw-minmax-fp32-avx2.c.o +#10 159.5 [3253/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 159.5 [3254/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx2-mul16-vpmovsx.c.o +#10 159.6 [3255/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 159.6 [3256/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 159.7 [3257/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x8c8-xw-minmax-fp32-avx2.c.o +#10 159.7 [3258/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 159.7 [3259/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x24.c.o +#10 159.7 [3260/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 159.8 [3261/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x8.c.o +#10 159.8 [3262/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 159.8 [3263/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x16.c.o +#10 159.8 [3264/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x16.c.o +#10 159.9 [3265/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x32.c.o +#10 159.9 [3266/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x24.c.o +#10 159.9 [3267/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx2-mul32-ld64-x8.c.o +#10 159.9 [3268/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x16.c.o +#10 160.0 [3269/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx2-mul32-ld64-x32.c.o +#10 160.1 [3270/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x32.c.o +#10 160.1 [3271/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x16.c.o +#10 160.2 [3272/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.o +#10 160.2 [3273/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x64.c.o +#10 160.2 [3274/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-avx2-x64.c.o +#10 160.2 [3275/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-avx2-x32.c.o +#10 160.2 [3276/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x8.c.o +#10 160.3 [3277/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.o +#10 160.3 [3278/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x16.c.o +#10 160.4 [3279/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.o +#10 160.4 [3280/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.o +#10 160.4 [3281/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x32.c.o +#10 160.5 [3282/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx2-x24.c.o +#10 160.6 [3283/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8c8-minmax-fp32-avx2.c.o +#10 160.6 [3284/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.o +#10 160.6 [3285/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.o +#10 160.6 [3286/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x8c8-minmax-fp32-avx2.c.o +#10 160.7 [3287/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-x8.c.o +#10 160.7 [3288/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8c8-minmax-fp32-avx2.c.o +#10 160.7 [3289/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8c8-minmax-fp32-avx2.c.o +#10 160.7 [3290/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x8c8-minmax-fp32-avx2.c.o +#10 160.8 [3291/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx2-mul32-ld64-x16.c.o +#10 160.8 [3292/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8c8-minmax-fp32-avx2.c.o +#10 160.8 [3293/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-x8.c.o +#10 160.8 [3294/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx2-mul32-ld64-x16.c.o +#10 160.9 [3295/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x16.c.o +#10 160.9 [3296/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x64.c.o +#10 161.0 [3297/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x16.c.o +#10 161.0 [3298/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-avx2-x32.c.o +#10 161.0 [3299/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x64.c.o +#10 161.1 [3300/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x32.c.o +#10 161.1 [3301/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-avx2-x32.c.o +#10 161.1 [3302/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x96.c.o +#10 161.1 [3303/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x64.c.o +#10 161.1 [3304/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx2-x128.c.o +#10 161.3 [3305/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c16s4r-minmax-avx512f-acc2.c.o +#10 161.4 [3306/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l16c16s4r-minmax-avx512f.c.o +#10 161.4 [3307/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-switch-avx2.c.o +#10 161.5 [3308/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f-acc2.c.o +#10 161.5 [3309/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-16x16-reuse-mov-avx2.c.o +#10 161.5 [3310/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-avx512f.c.o +#10 161.5 [3311/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c16s4r-minmax-avx512f.c.o +#10 161.5 [3312/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l32c16s4r-minmax-avx512f-acc2.c.o +#10 161.5 [3313/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p32c-minmax-avx512f-acc2.c.o +#10 161.6 [3314/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l64c16s4r-minmax-avx512f.c.o +#10 161.6 [3315/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l64c16s4r-minmax-avx512f-acc2.c.o +#10 161.7 [3316/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p32c-minmax-avx512f.c.o +#10 161.7 [3317/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-mov-avx2.c.o +#10 161.7 [3318/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f.c.o +#10 161.8 [3319/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-32x32-reuse-switch-avx2.c.o +#10 161.8 [3320/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p32c-minmax-avx512f-acc2.c.o +#10 161.8 [3321/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-avx512f-acc2.c.o +#10 161.8 [3322/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f.c.o +#10 161.9 [3323/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-avx512f-acc2.c.o +#10 161.9 [3324/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p32c-minmax-avx512f-acc2.c.o +#10 162.0 [3325/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f-acc2.c.o +#10 162.0 [3326/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p32c-minmax-avx512f.c.o +#10 162.0 [3327/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-avx512f-broadcast.c.o +#10 162.0 [3328/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p32c-minmax-avx512f.c.o +#10 162.1 [3329/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-avx512f-broadcast.c.o +#10 162.1 [3330/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p32c-minmax-avx512f.c.o +#10 162.2 [3331/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-avx512f.c.o +#10 162.2 [3332/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p32c-minmax-avx512f-acc2.c.o +#10 162.2 [3333/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-avx512f-broadcast.c.o +#10 162.2 [3334/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-avx512f-broadcast.c.o +#10 162.2 [3335/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-7x16-minmax-avx512f-broadcast.c.o +#10 162.3 [3336/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-1x16-minmax-avx512f-broadcast.c.o +#10 162.3 [3337/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-4x16-minmax-avx512f-broadcast.c.o +#10 162.3 [3338/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x16-minmax-avx512f-broadcast.c.o +#10 162.4 [3339/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-5x16-minmax-avx512f-broadcast.c.o +#10 162.4 [3340/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-7x16-minmax-avx512f-broadcast.c.o +#10 162.4 [3341/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-6x16-minmax-avx512f-broadcast.c.o +#10 162.5 [3342/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-avx512f-broadcast.c.o +#10 162.5 [3343/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemminc-8x16-minmax-avx512f-broadcast.c.o +#10 162.5 [3344/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-avx512f-broadcast.c.o +#10 162.5 [3345/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-7x16-minmax-avx512f-broadcast.c.o +#10 162.6 [3346/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x16-minmax-avx512f-broadcast.c.o +#10 162.7 [3347/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-avx512f-broadcast.c.o +#10 162.7 [3348/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-avx512f-broadcast.c.o +#10 162.7 [3349/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128-acc2.c.o +#10 162.7 [3350/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128-acc4.c.o +#10 162.7 [3351/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx512f-2x32.c.o +#10 162.7 [3352/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-prelu/gen/f32-prelu-avx512f-2x16.c.o +#10 162.8 [3353/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x128.c.o +#10 162.8 [3354/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160-acc5.c.o +#10 162.8 [3355/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x144.c.o +#10 162.8 [3356/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160-acc2.c.o +#10 162.8 [3357/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x144-acc3.c.o +#10 162.9 [3358/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc2.c.o +#10 162.9 [3359/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x160.c.o +#10 163.0 [3360/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc6.c.o +#10 163.1 [3361/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192-acc3.c.o +#10 163.1 [3362/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128-acc4.c.o +#10 163.1 [3363/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x144.c.o +#10 163.1 [3364/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128.c.o +#10 163.2 [3365/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x128-acc2.c.o +#10 163.2 [3366/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160.c.o +#10 163.2 [3367/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160-acc5.c.o +#10 163.2 [3368/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x144-acc3.c.o +#10 163.2 [3369/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddexpminusmax/gen/f32-raddexpminusmax-avx512f-p5-scalef-x192.c.o +#10 163.3 [3370/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc2.c.o +#10 163.3 [3371/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc3.c.o +#10 163.4 [3372/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192-acc6.c.o +#10 163.4 [3373/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128-acc2.c.o +#10 163.5 [3374/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x160-acc2.c.o +#10 163.5 [3375/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128-acc4.c.o +#10 163.5 [3376/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x144-acc3.c.o +#10 163.5 [3377/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddextexp/gen/f32-raddextexp-avx512f-p5-scalef-x192.c.o +#10 163.5 [3378/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x128.c.o +#10 163.5 [3379/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x144.c.o +#10 163.6 [3380/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160-acc2.c.o +#10 163.7 [3381/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc2.c.o +#10 163.7 [3382/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160.c.o +#10 163.7 [3383/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x160-acc5.c.o +#10 163.7 [3384/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc3.c.o +#10 163.7 [3385/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rmax/f32-rmax-avx512f.c.o +#10 163.8 [3386/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192.c.o +#10 163.8 [3387/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-x192-acc6.c.o +#10 163.8 [3388/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx512f-x32.c.o +#10 163.9 [3389/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx512f-x16.c.o +#10 163.9 [3390/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-minmax-avx512f-x32.c.o +#10 163.9 [3391/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx512f-x16.c.o +#10 163.9 [3392/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-minmax-avx512f-x16.c.o +#10 164.0 [3393/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx512f-x16.c.o +#10 164.0 [3394/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-minmax-avx512f-x32.c.o +#10 164.0 [3395/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-minmax-avx512f-x32.c.o +#10 164.1 [3396/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx512f-x32.c.o +#10 164.1 [3397/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-x32.c.o +#10 164.1 [3398/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-avx512f-x16.c.o +#10 164.1 [3399/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-avx512f-x16.c.o +#10 164.1 [3400/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx512f-x16.c.o +#10 164.2 [3401/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx512f-x32.c.o +#10 164.2 [3402/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-avx512f-x16.c.o +#10 164.2 [3403/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-avx512f-x32.c.o +#10 164.2 [3404/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx512f-x32.c.o +#10 164.3 [3405/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx512f-x16.c.o +#10 164.3 [3406/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-minmax-avx512f-x16.c.o +#10 164.4 [3407/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-minmax-avx512f-x32.c.o +#10 164.4 [3408/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx512f-x32.c.o +#10 164.4 [3409/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-minmax-avx512f-x16.c.o +#10 164.4 [3410/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-x16.c.o +#10 164.5 [3411/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx512f-x32.c.o +#10 164.5 [3412/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-minmax-avx512f-x16.c.o +#10 164.5 [3413/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-x16.c.o +#10 164.5 [3414/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-avx512f-x32.c.o +#10 164.6 [3415/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-avx512f-x32.c.o +#10 164.6 [3416/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx512f-x16.c.o +#10 164.7 [3417/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx512f-x16.c.o +#10 164.7 [3418/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-minmax-avx512f-x32.c.o +#10 164.7 [3419/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-x16.c.o +#10 164.7 [3420/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-minmax-avx512f-x32.c.o +#10 164.7 [3421/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-avx512f-x32.c.o +#10 164.8 [3422/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x96.c.o +#10 164.8 [3423/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x16.c.o +#10 164.8 [3424/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x32.c.o +#10 164.9 [3425/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x48.c.o +#10 164.9 [3426/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x112.c.o +#10 164.9 [3427/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x80.c.o +#10 164.9 [3428/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x64.c.o +#10 165.0 [3429/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-lut16-p3-perm-x128.c.o +#10 165.0 [3430/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x16.c.o +#10 165.1 [3431/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x32.c.o +#10 165.1 [3432/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x48.c.o +#10 165.1 [3433/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x80.c.o +#10 165.1 [3434/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x64.c.o +#10 165.2 [3435/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x112.c.o +#10 165.2 [3436/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-x32.c.o +#10 165.2 [3437/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x96.c.o +#10 165.2 [3438/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-avx512f-rr1-p6-x128.c.o +#10 165.2 [3439/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-x16.c.o +#10 165.2 [3440/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-avx512f-x16.c.o +#10 165.3 [3441/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx512f-x16.c.o +#10 165.3 [3442/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-avx512f-x32.c.o +#10 165.4 [3443/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-x16.c.o +#10 165.4 [3444/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-avx512f-x32.c.o +#10 165.4 [3445/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-avx512f-x32.c.o +#10 165.5 [3446/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-x32.c.o +#10 165.5 [3447/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-x16.c.o +#10 165.5 [3448/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-avx512f-x16.c.o +#10 165.6 [3449/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-x16.c.o +#10 165.6 [3450/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x32.c.o +#10 165.6 [3451/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-avx512f-x32.c.o +#10 165.6 [3452/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-avx512f-x32.c.o +#10 165.6 [3453/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x48.c.o +#10 165.6 [3454/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x16.c.o +#10 165.7 [3455/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x80.c.o +#10 165.7 [3456/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x64.c.o +#10 165.8 [3457/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x144.c.o +#10 165.8 [3458/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x112.c.o +#10 165.9 [3459/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x160.c.o +#10 165.9 [3460/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x96.c.o +#10 165.9 [3461/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x16.c.o +#10 165.9 [3462/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x128.c.o +#10 165.9 [3463/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x192.c.o +#10 165.9 [3464/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleexpminusmax/gen/f32-vscaleexpminusmax-avx512f-p5-scalef-x176.c.o +#10 166.0 [3465/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x32.c.o +#10 166.0 [3466/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x48.c.o +#10 166.0 [3467/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x80.c.o +#10 166.0 [3468/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x64.c.o +#10 166.1 [3469/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x96.c.o +#10 166.2 [3470/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x112.c.o +#10 166.2 [3471/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x144.c.o +#10 166.2 [3472/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x176.c.o +#10 166.2 [3473/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x128.c.o +#10 166.3 [3474/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x16.c.o +#10 166.3 [3475/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x192.c.o +#10 166.3 [3476/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vscaleextexp/gen/f32-vscaleextexp-avx512f-p5-scalef-x160.c.o +#10 166.3 [3477/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x48.c.o +#10 166.4 [3478/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x32.c.o +#10 166.4 [3479/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x112.c.o +#10 166.4 [3480/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x96.c.o +#10 166.4 [3481/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x80.c.o +#10 166.5 [3482/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x128.c.o +#10 166.5 [3483/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x16.c.o +#10 166.6 [3484/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x32.c.o +#10 166.6 [3485/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-div-x64.c.o +#10 166.6 [3486/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x80.c.o +#10 166.7 [3487/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x64.c.o +#10 166.7 [3488/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x112.c.o +#10 166.7 [3489/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x16.c.o +#10 166.7 [3490/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x96.c.o +#10 166.7 [3491/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x32.c.o +#10 166.8 [3492/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x48.c.o +#10 166.8 [3493/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x128.c.o +#10 166.8 [3494/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-lut16-p3-perm-scalef-nr1fma-x48.c.o +#10 166.9 [3495/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x64.c.o +#10 166.9 [3496/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x96.c.o +#10 166.9 [3497/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x80.c.o +#10 167.0 [3498/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x128.c.o +#10 167.0 [3499/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-div-x112.c.o +#10 167.0 [3500/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x64.c.o +#10 167.1 [3501/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x48.c.o +#10 167.1 [3502/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x80.c.o +#10 167.1 [3503/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x32.c.o +#10 167.1 [3504/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x96.c.o +#10 167.1 [3505/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x16.c.o +#10 167.2 [3506/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x112.c.o +#10 167.2 [3507/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr1-p5-scalef-nr1fma-x128.c.o +#10 167.2 [3508/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x16.c.o +#10 167.3 [3509/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x48.c.o +#10 167.3 [3510/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x32.c.o +#10 167.3 [3511/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x64.c.o +#10 167.4 [3512/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x80.c.o +#10 167.5 [3513/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x112.c.o +#10 167.5 [3514/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x32.c.o +#10 167.5 [3515/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x64.c.o +#10 167.5 [3516/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x16.c.o +#10 167.6 [3517/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x80.c.o +#10 167.6 [3518/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x128.c.o +#10 167.6 [3519/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x48.c.o +#10 167.6 [3520/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div-x96.c.o +#10 167.6 [3521/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x112.c.o +#10 167.6 [3522/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x128.c.o +#10 167.6 [3523/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x16.c.o +#10 167.7 [3524/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma-x96.c.o +#10 167.8 [3525/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x80.c.o +#10 167.8 [3526/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x96.c.o +#10 167.8 [3527/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x32.c.o +#10 167.8 [3528/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x112.c.o +#10 167.8 [3529/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x48.c.o +#10 167.9 [3530/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x128.c.o +#10 167.9 [3531/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-avx512f-nr1fma1adj-x64.c.o +#10 167.9 [3532/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx512f-x16.c.o +#10 167.9 [3533/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vabs-avx512f-x32.c.o +#10 167.9 [3534/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx512f-x16.c.o +#10 168.0 [3535/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vsqr-avx512f-x32.c.o +#10 168.0 [3536/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx512f-x16.c.o +#10 168.0 [3537/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vunary/gen/f32-vneg-avx512f-x32.c.o +#10 168.1 [3538/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut16-p3-perm-scalef.c.o +#10 168.1 [3539/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut16-p3-perm.c.o +#10 168.2 [3540/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut32-p2-perm2.c.o +#10 168.2 [3541/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx512f-rr1-lut16-p3-perm.c.o +#10 168.2 [3542/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/expm1minus-f32-avx512f-rr1-p6.c.o +#10 168.2 [3543/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-lut32-p2-perm2-scalef.c.o +#10 168.2 [3544/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-p5.c.o +#10 168.3 [3545/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-div.c.o +#10 168.3 [3546/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-nr1fma1adj.c.o +#10 168.3 [3547/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/extexp-avx512f-p5.c.o +#10 168.3 [3548/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/exp-f32-avx512f-rr2-p5-scalef.c.o +#10 168.3 [3549/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut16-p3-perm-scalef-nr1fma.c.o +#10 168.4 [3550/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma.c.o +#10 168.4 [3551/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-div.c.o +#10 168.5 [3552/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-div.c.o +#10 168.5 [3553/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut32-p2-perm2-scalef-nr1fma1adj.c.o +#10 168.6 [3554/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-div.c.o +#10 168.6 [3555/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-nr1fma.c.o +#10 168.6 [3556/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-nr1fma1adj.c.o +#10 168.6 [3557/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-lut64-p2-gather-scalef-nr1fma1adj.c.o +#10 168.6 [3558/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr1-p5-scalef-nr1fma.c.o +#10 168.6 [3559/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-div.c.o +#10 168.7 [3560/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-div.c.o +#10 168.7 [3561/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma1adj.c.o +#10 168.7 [3562/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-nr1fma1adj.c.o +#10 168.7 [3563/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut16-p3-perm-scalef-nr1fma.c.o +#10 168.7 [3564/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-nr1fma1adj.c.o +#10 168.8 [3565/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-nr1fma.c.o +#10 168.9 [3566/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut64-p2-gather-scalef-div.c.o +#10 168.9 [3567/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-lut32-p2-perm2-scalef-nr1fma.c.o +#10 168.9 [3568/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-nr1fma.c.o +#10 168.9 [3569/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-x16.c.o +#10 168.9 [3570/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-div.c.o +#10 169.0 [3571/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-x16.c.o +#10 169.0 [3572/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sigmoid-f32-avx512f-rr2-p5-scalef-nr1fma1adj.c.o +#10 169.0 [3573/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr2fma.c.o +#10 169.0 [3574/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-avx512skx-x32.c.o +#10 169.0 [3575/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr1fma1adj.c.o +#10 169.0 [3576/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/math/sqrt-f32-avx512f-nr1fma.c.o +#10 169.1 [3577/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-avx512skx-x32.c.o +#10 169.1 [3578/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x32.c.o +#10 169.2 [3579/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x128.c.o +#10 169.2 [3580/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x64.c.o +#10 169.2 [3581/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x64.c.o +#10 169.2 [3582/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-avx512skx-x96.c.o +#10 169.3 [3583/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x32.c.o +#10 169.3 [3584/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x128.c.o +#10 169.3 [3585/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 169.3 [3586/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-avx512skx-x96.c.o +#10 169.4 [3587/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 169.4 [3588/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 169.4 [3589/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-3p32c-minmax-fp32-avx512skx-mul32.c.o +#10 169.4 [3590/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 169.4 [3591/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 169.5 [3592/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 169.6 [3593/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 169.6 [3594/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-dwconv/gen/qc8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 169.6 [3595/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 169.6 [3596/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 169.6 [3597/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-gemm/gen/qc8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 169.6 [3598/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 169.7 [3599/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qc8-igemm/gen/qc8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 169.7 [3600/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 169.7 [3601/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x32.c.o +#10 169.8 [3602/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 169.8 [3603/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x16.c.o +#10 169.8 [3604/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x48.c.o +#10 169.9 [3605/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-avx512skx-x64.c.o +#10 169.9 [3606/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 169.9 [3607/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 169.9 [3608/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 169.9 [3609/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 170.0 [3610/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 170.0 [3611/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 170.0 [3612/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 170.0 [3613/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-x16.c.o +#10 170.1 [3614/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-x16.c.o +#10 170.2 [3615/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-gemm/gen/qs8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 170.2 [3616/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-avx512skx-mul32-ld128-x32.c.o +#10 170.2 [3617/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.o +#10 170.2 [3618/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.o +#10 170.2 [3619/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x16.c.o +#10 170.2 [3620/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-igemm/gen/qs8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 170.3 [3621/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x32.c.o +#10 170.3 [3622/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x48.c.o +#10 170.3 [3623/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-avx512skx-mul32-ld128-x32.c.o +#10 170.3 [3624/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-avx512skx-x64.c.o +#10 170.3 [3625/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.o +#10 170.4 [3626/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.o +#10 170.4 [3627/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 170.5 [3628/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 170.5 [3629/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 170.5 [3630/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.o +#10 170.6 [3631/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16c8-minmax-fp32-avx512skx.c.o +#10 170.6 [3632/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-x32.c.o +#10 170.6 [3633/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-avx512skx-mul32-ld128-x16.c.o +#10 170.6 [3634/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 170.6 [3635/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16c8-minmax-fp32-avx512skx.c.o +#10 170.6 [3636/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-64.c.o +#10 170.6 [3637/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16c8-minmax-fp32-avx512skx.c.o +#10 170.6 [3638/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-x16.c.o +#10 170.6 [3639/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-4.c.o +#10 170.6 [3640/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2-k-over-2048.c.o +#10 170.6 [3641/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-16.c.o +#10 170.6 [3642/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-64.c.o +#10 170.6 [3643/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-8.c.o +#10 170.7 [3644/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/exp2minus-k-over-2048.c.o +#10 170.7 [3645/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/tables/vlog.c.o +#10 170.7 [3646/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-avx512skx-mul32-ld128-x32.c.o +#10 170.7 [3647/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x64.c.o +#10 170.7 [3648/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x128.c.o +#10 170.8 [3649/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x64.c.o +#10 170.8 [3650/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x128.c.o +#10 170.8 [3651/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x192.c.o +#10 170.8 [3652/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512vbmi-vpermx2b-x256.c.o +#10 170.9 [3653/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x192.c.o +#10 170.9 [3654/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-avx512skx-vpshufb-x256.c.o +#10 170.9 [3655/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o +#10 171.0 [3656/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o +#10 171.0 [3657/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/scalar.c.o +#10 171.0 [3658/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o +#10 171.1 [3659/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o +#10 171.1 [3660/6823] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o +#10 171.2 [3661/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o +#10 171.3 [3662/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/ssse3.c.o +#10 171.3 [3663/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o +#10 171.3 [3664/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o +#10 171.3 [3665/6823] Building CXX object confu-deps/XNNPACK/CMakeFiles/convolution-test-helpers.dir/test/convolution-test-helpers.cc.o +#10 171.4 [3666/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o +#10 171.4 [3667/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o +#10 171.4 [3668/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o +#10 171.4 [3669/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o +#10 171.5 [3670/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o +#10 171.5 [3671/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o +#10 171.6 [3672/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o +#10 171.7 [3673/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o +#10 171.7 [3674/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512vbmi.c.o +#10 171.8 [3675/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/f16c.c.o +#10 171.9 [3676/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o +#10 172.0 [3677/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o +#10 172.1 [3678/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/fma3.c.o +#10 172.1 [3679/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o +#10 172.2 [3680/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o +#10 172.2 [3681/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o +#10 172.2 [3682/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-ncw.c.o +#10 172.3 [3683/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o +#10 172.3 [3684/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/lut-elementwise-nc.c.o +#10 172.4 [3685/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o +#10 172.4 [3686/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/global-average-pooling-nwc.c.o +#10 172.4 [3687/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/prelu-nc.c.o +#10 172.4 [3688/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o +#10 172.5 [3689/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o +#10 172.5 [3690/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o +#10 172.6 [3691/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o +#10 172.6 [3692/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space.c.o +#10 172.6 [3693/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/xop.c.o +#10 172.6 [3694/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convert.c.o +#10 172.6 [3695/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o +#10 172.6 [3696/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512f.c.o +#10 172.6 [3697/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/divide.c.o +#10 172.7 [3698/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o +#10 172.7 [3699/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/elu.c.o +#10 172.7 [3700/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/floor.c.o +#10 172.8 [3701/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o +#10 172.8 [3702/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/leaky-relu.c.o +#10 172.8 [3703/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o +#10 172.8 [3704/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/global-average-pooling.c.o +#10 172.8 [3705/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/hardswish.c.o +#10 172.8 [3706/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o +#10 172.8 [3707/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/maximum2.c.o +#10 172.9 [3708/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/minimum2.c.o +#10 172.9 [3709/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/negate.c.o +#10 172.9 [3710/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/multiply2.c.o +#10 172.9 [3711/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/prelu.c.o +#10 172.9 [3712/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/sigmoid.c.o +#10 173.0 [3713/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o +#10 173.0 [3714/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square-root.c.o +#10 173.0 [3715/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o +#10 173.0 [3716/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/square.c.o +#10 173.0 [3717/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o +#10 173.1 [3718/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/squared-difference.c.o +#10 173.1 [3719/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reshape.c.o +#10 173.1 [3720/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o +#10 173.1 [3721/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o +#10 173.2 [3722/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o +#10 173.2 [3723/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse.c.o +#10 173.2 [3724/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/subtract.c.o +#10 173.2 [3725/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o +#10 173.2 [3726/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o +#10 173.2 [3727/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o +#10 173.2 [3728/6823] Building C object confu-deps/XNNPACK/CMakeFiles/post-operation.dir/src/operators/post-operation.c.o +#10 173.2 [3729/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse41.c.o +#10 173.2 [3730/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx512skx.c.o +#10 173.3 [3731/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/x8-lut-config.c.o +#10 173.3 [3732/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o +#10 173.3 [3733/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/transpose-config.c.o +#10 173.3 [3734/6823] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o +#10 173.3 [3735/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/binary-elementwise-config.c.o +#10 173.7 [3736/6823] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o +#10 174.0 [3737/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx2.c.o +#10 174.2 [3738/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/avx.c.o +#10 174.4 [3739/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark_main.dir/benchmark_main.cc.o +#10 174.7 [3740/6823] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/amalgam/sse2.c.o +#10 174.7 [3741/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_name.cc.o +#10 175.1 [3742/6823] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest_main.dir/src/gtest_main.cc.o +#10 175.2 [3743/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_api_internal.cc.o +#10 175.2 [3744/6823] Building CXX object third_party/googletest/googlemock/CMakeFiles/gmock_main.dir/src/gmock_main.cc.o +#10 175.6 [3745/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/colorprint.cc.o +#10 175.8 [3746/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/commandlineflags.cc.o +#10 176.2 [3747/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/counter.cc.o +#10 176.2 [3748/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/perf_counters.cc.o +#10 176.3 [3749/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/complexity.cc.o +#10 176.4 [3750/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/console_reporter.cc.o +#10 176.6 [3751/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/csv_reporter.cc.o +#10 176.8 [3752/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sleep.cc.o +#10 176.8 [3753/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/reporter.cc.o +#10 177.0 [3754/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/TransposeUtils.cc.o +#10 177.3 [3755/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_runner.cc.o +#10 178.0 [3756/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/string_util.cc.o +#10 178.1 [3757/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/timers.cc.o +#10 178.1 [3758/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/json_reporter.cc.o +#10 178.6 [3759/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmBfloat16ConvertAvx512.cc.o +#10 178.7 [3760/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/statistics.cc.o +#10 179.1 [3761/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/Utils.cc.o +#10 179.1 [3762/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/spmmUtils.cc.o +#10 179.1 [3763/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFloat16ConvertAvx512.cc.o +#10 179.1 [3764/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/sysinfo.cc.o +#10 179.1 [3765/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/ExecuteKernel.cc.o +#10 179.5 [3766/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseAvx512.cc.o +#10 179.6 [3767/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/EmbeddingSpMDMAvx512.cc.o +#10 179.9 [3768/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmBfloat16Convert.cc.o +#10 180.3 [3769/6823] Building CXX object third_party/googletest/googlemock/CMakeFiles/gmock.dir/src/gmock-all.cc.o +#10 180.8 [3770/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark.cc.o +#10 181.2 [3771/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFloat16Convert.cc.o +#10 181.4 [3772/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateI8Depthwise.cc.o +#10 182.6 [3773/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmSparseDense.cc.o +#10 182.7 [3774/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmI8Spmdm.cc.o +#10 182.8 [3775/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseInt8Avx512.cc.o +#10 183.2 [3776/6823] Building CXX object third_party/benchmark/src/CMakeFiles/benchmark.dir/benchmark_register.cc.o +#10 183.2 [3777/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFPCommon.cc.o +#10 183.3 [3778/6823] Linking CXX static library lib/libbenchmark.a +#10 183.4 [3779/6823] Linking CXX static library lib/libbenchmark_main.a +#10 184.4 [3780/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmFP16.cc.o +#10 184.6 [3781/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmConv.cc.o +#10 185.4 [3782/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/FbgemmI64.cc.o +#10 185.9 [3783/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernel.cc.o +#10 185.9 [3784/6823] Building CXX object third_party/googletest/googletest/CMakeFiles/gtest.dir/src/gtest-all.cc.o +#10 185.9 [3785/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/RefImplementations.cc.o +#10 185.9 [3786/6823] Linking CXX static library lib/libgtest.a +#10 186.0 [3787/6823] Linking CXX static library lib/libgmock.a +#10 186.0 [3788/6823] Linking CXX static library lib/libgmock_main.a +#10 186.1 [3789/6823] Linking CXX static library lib/libgtest_main.a +#10 186.9 [3790/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512VNNI.cc.o +#10 187.4 [3791/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16.cc.o +#10 187.5 [3792/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAMatrix.cc.o +#10 187.6 [3793/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelDirectConvU8S8S32ACC32.cc.o +#10 188.2 [3794/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC16Avx512.cc.o +#10 188.5 [3795/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithQuantRowOffset.cc.o +#10 188.8 [3796/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32Avx512VNNI.cc.o +#10 188.9 [3797/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithRowOffset.cc.o +#10 189.1 [3798/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackBMatrix.cc.o +#10 189.3 [3799/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConvAcc32Avx2.cc.o +#10 189.7 [3800/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackMatrix.cc.o +#10 189.7 [3801/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackAWithIm2Col.cc.o +#10 189.8 [3802/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConvAcc32Avx512.cc.o +#10 190.4 [3803/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GenerateKernelU8S8S32ACC32.cc.o +#10 190.9 [3804/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/QuantUtils.cc.o +#10 191.2 [3805/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForConv.cc.o +#10 191.6 [3806/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmSparseDenseVectorInt8Avx512.cc.o +#10 192.4 [3807/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightMatrixForGConv.cc.o +#10 192.4 [3808/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/EmbeddingSpMDMAvx2.cc.o +#10 193.1 [3809/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmFloat16ConvertAvx2.cc.o +#10 193.4 [3810/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/UtilsAvx512.cc.o +#10 193.6 [3811/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmBfloat16ConvertAvx2.cc.o +#10 193.7 [3812/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/PackWeightsForDirectConv.cc.o +#10 193.8 [3813/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/GroupwiseConv.cc.o +#10 194.2 [3814/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512.cc.o +#10 194.5 [3815/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/FbgemmFP16UKernelsAvx512_256.cc.o +#10 194.6 [3816/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwisePerChannelQuantAvx2.cc.o +#10 194.8 [3817/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/SparseAdagrad.cc.o +#10 194.9 [3818/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseAvx2.cc.o +#10 195.2 [3819/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/OptimizedKernelsAvx2.cc.o +#10 195.3 [3820/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmSparseDenseInt8Avx2.cc.o +#10 195.4 [3821/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/PackDepthwiseConvMatrixAvx2.cc.o +#10 195.5 [3822/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o +#10 195.7 [3823/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o +#10 195.9 [3824/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o +#10 196.1 [3825/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o +#10 196.5 [3826/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o +#10 196.6 [3827/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o +#10 196.7 [3828/6823] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o +#10 196.8 [3829/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o +#10 196.9 [3830/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/UtilsAvx2.cc.o +#10 197.0 [3831/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/abs.c.o +#10 197.1 [3832/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o +#10 197.1 [3833/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/add2.c.o +#10 197.1 [3834/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o +#10 197.2 [3835/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o +#10 197.3 [3836/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/ceiling.c.o +#10 197.3 [3837/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/bankers-rounding.c.o +#10 197.4 [3838/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/clamp.c.o +#10 197.4 [3839/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/spmmUtilsAvx2.cc.o +#10 197.5 [3840/6823] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o +#10 197.7 [3841/6823] Linking CXX static library lib/libXNNPACK.a +#10 198.4 [3842/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/assembler.cpp.o +#10 198.4 [3843/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/builder.cpp.o +#10 198.8 [3844/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/archtraits.cpp.o +#10 198.9 [3845/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmFP16UKernelsAvx2.cc.o +#10 199.5 [3846/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/constpool.cpp.o +#10 199.5 [3847/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codeholder.cpp.o +#10 199.6 [3848/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/codewriter.cpp.o +#10 199.6 [3849/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/compiler.cpp.o +#10 199.8 [3850/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/cpuinfo.cpp.o +#10 199.9 [3851/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/Fbgemm.cc.o +#10 200.3 [3852/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitter.cpp.o +#10 200.4 [3853/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/environment.cpp.o +#10 200.5 [3854/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/errorhandler.cpp.o +#10 200.5 [3855/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emithelper.cpp.o +#10 200.6 [3856/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/emitterutils.cpp.o +#10 200.7 [3857/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/formatter.cpp.o +#10 200.9 [3858/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/func.cpp.o +#10 201.2 [3859/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/globals.cpp.o +#10 201.4 [3860/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitruntime.cpp.o +#10 201.4 [3861/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/funcargscontext.cpp.o +#10 201.4 [3862/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/inst.cpp.o +#10 201.6 [3863/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/operand.cpp.o +#10 202.0 [3864/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/logger.cpp.o +#10 202.0 [3865/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/jitallocator.cpp.o +#10 202.2 [3866/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/osutils.cpp.o +#10 202.4 [3867/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx512.dir/src/QuantUtilsAvx512.cc.o +#10 202.5 [3868/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/RowWiseSparseAdagradFused.cc.o +#10 202.6 [3869/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rastack.cpp.o +#10 202.6 [3870/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/string.cpp.o +#10 202.8 [3871/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/target.cpp.o +#10 202.9 [3872/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/support.cpp.o +#10 203.0 [3873/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/virtmem.cpp.o +#10 203.0 [3874/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/type.cpp.o +#10 203.1 [3875/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/ralocal.cpp.o +#10 203.3 [3876/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonehash.cpp.o +#10 203.4 [3877/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonetree.cpp.o +#10 203.5 [3878/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zone.cpp.o +#10 203.5 [3879/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonelist.cpp.o +#10 203.6 [3880/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonestack.cpp.o +#10 203.6 [3881/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/zonevector.cpp.o +#10 204.1 [3882/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/armformatter.cpp.o +#10 204.3 [3883/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64formatter.cpp.o +#10 204.5 [3884/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64func.cpp.o +#10 204.7 [3885/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64emithelper.cpp.o +#10 204.9 [3886/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instapi.cpp.o +#10 204.9 [3887/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64compiler.cpp.o +#10 205.1 [3888/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64builder.cpp.o +#10 205.3 [3889/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64operand.cpp.o +#10 205.3 [3890/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64instdb.cpp.o +#10 205.4 [3891/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/core/rapass.cpp.o +#10 206.3 [3892/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64rapass.cpp.o +#10 206.6 [3893/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86formatter.cpp.o +#10 208.1 [3894/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86emithelper.cpp.o +#10 208.1 [3895/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instdb.cpp.o +#10 208.2 [3896/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86compiler.cpp.o +#10 208.3 [3897/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/arm/a64assembler.cpp.o +#10 208.3 [3898/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86instapi.cpp.o +#10 208.5 [3899/6823] Building C object third_party/ittapi/CMakeFiles/ittnotify.dir/src/ittnotify/jitprofiling.c.o +#10 208.5 [3900/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86builder.cpp.o +#10 208.7 [3901/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86func.cpp.o +#10 208.7 [3902/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86operand.cpp.o +#10 208.9 [3903/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/error.cc.o +#10 209.4 [3904/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/address.cc.o +#10 209.6 [3905/6823] Building C object third_party/ittapi/CMakeFiles/ittnotify.dir/src/ittnotify/ittnotify_static.c.o +#10 209.6 [3906/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/error.cc.o +#10 209.7 [3907/6823] Linking C static library lib/libittnotify.a +#10 209.8 [3908/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/helpers.cc.o +#10 210.0 [3909/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/allocator.cc.o +#10 210.1 [3910/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/fd.cc.o +#10 210.7 [3911/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/error.cc.o +#10 211.0 [3912/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/socket.cc.o +#10 211.6 [3913/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/system.cc.o +#10 211.6 [3914/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/ExecuteKernelU8S8.cc.o +#10 211.8 [3915/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/context.cc.o +#10 212.0 [3916/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/error.cc.o +#10 212.7 [3917/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86assembler.cpp.o +#10 213.1 [3918/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/listener.cc.o +#10 213.6 [3919/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/pipe.cc.o +#10 213.7 [3920/6823] Building CXX object third_party/fbgemm/asmjit/CMakeFiles/asmjit.dir/src/asmjit/x86/x86rapass.cpp.o +#10 213.8 [3921/6823] Linking CXX static library lib/libasmjit.a +#10 214.6 [3922/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDMNBit.cc.o +#10 215.0 [3923/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/channel_impl.cc.o +#10 216.0 [3924/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/factory.cc.o +#10 216.2 [3925/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/context_impl.cc.o +#10 216.4 [3926/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/basic/context_impl.cc.o +#10 216.7 [3927/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/listener_impl.cc.o +#10 218.1 [3928/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/channel_impl.cc.o +#10 218.1 [3929/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/context_impl.cc.o +#10 218.5 [3930/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/channel_impl.cc.o +#10 219.2 [3931/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/xth/factory.cc.o +#10 220.0 [3932/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/factory.cc.o +#10 220.0 [3933/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/context_impl.cc.o +#10 220.5 [3934/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/error.cc.o +#10 220.5 [3935/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/factory.cc.o +#10 221.0 [3936/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/cma/context_impl.cc.o +#10 221.2 [3937/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/channel_impl.cc.o +#10 222.4 [3938/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/channel/mpt/context_impl.cc.o +#10 222.8 [3939/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/shm_segment.cc.o +#10 223.3 [3940/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/sockaddr.cc.o +#10 223.6 [3941/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/loop.cc.o +#10 223.7 [3942/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/utility.cc.o +#10 223.9 [3943/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/connection_impl.cc.o +#10 225.1 [3944/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/epoll_loop.cc.o +#10 225.1 [3945/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/sockaddr.cc.o +#10 225.3 [3946/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/context_impl.cc.o +#10 225.4 [3947/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/QuantUtilsAvx2.cc.o +#10 226.6 [3948/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/common/ibv.cc.o +#10 226.9 [3949/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/error.cc.o +#10 227.1 [3950/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/listener_impl.cc.o +#10 227.2 [3951/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/connection_impl.cc.o +#10 227.7 [3952/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/core/pipe_impl.cc.o +#10 227.8 [3953/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/uv/factory.cc.o +#10 228.0 [3954/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/random.c.o +#10 228.3 [3955/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/fs-poll.c.o +#10 228.5 [3956/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/sockaddr.cc.o +#10 228.5 [3957/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/reactor.cc.o +#10 228.6 [3958/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/idna.c.o +#10 228.6 [3959/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/strscpy.c.o +#10 228.8 [3960/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/threadpool.c.o +#10 228.8 [3961/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/inet.c.o +#10 228.9 [3962/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/timer.c.o +#10 229.1 [3963/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/uv-data-getter-setters.c.o +#10 229.1 [3964/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/version.c.o +#10 229.2 [3965/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/factory.cc.o +#10 229.2 [3966/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/shm/listener_impl.cc.o +#10 229.3 [3967/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/uv-common.c.o +#10 229.4 [3968/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/async.c.o +#10 229.5 [3969/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/dl.c.o +#10 229.5 [3970/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/getaddrinfo.c.o +#10 229.7 [3971/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/getnameinfo.c.o +#10 229.7 [3972/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/core.c.o +#10 229.7 [3973/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/utility.cc.o +#10 229.7 [3974/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/loop-watcher.c.o +#10 229.8 [3975/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/loop.c.o +#10 229.9 [3976/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/poll.c.o +#10 230.0 [3977/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/pipe.c.o +#10 230.0 [3978/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/fs.c.o +#10 230.0 [3979/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-devurandom.c.o +#10 230.0 [3980/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/process.c.o +#10 230.1 [3981/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/signal.c.o +#10 230.2 [3982/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/tcp.c.o +#10 230.2 [3983/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/tty.c.o +#10 230.3 [3984/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/context_impl.cc.o +#10 230.3 [3985/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/stream.c.o +#10 230.4 [3986/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/thread.c.o +#10 230.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c: In function ‘thread_stack_size’: +#10 230.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c:195:24: warning: comparison of integer expressions of different signedness: ‘rlim_t’ {aka ‘long unsigned int’} and ‘long int’ [-Wsign-compare] +#10 230.4 195 | if (lim.rlim_cur >= PTHREAD_STACK_MIN) +#10 230.4 | ^~ +#10 230.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c: In function ‘uv_thread_create_ex’: +#10 230.4 ../third_party/tensorpipe/third_party/libuv/src/unix/thread.c:243:20: warning: comparison of integer expressions of different signedness: ‘size_t’ {aka ‘long unsigned int’} and ‘long int’ [-Wsign-compare] +#10 230.4 243 | if (stack_size < PTHREAD_STACK_MIN) +#10 230.4 | ^ +#10 230.4 [3987/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/proctitle.c.o +#10 230.4 [3988/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-syscalls.c.o +#10 230.5 [3989/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/procfs-exepath.c.o +#10 230.5 [3990/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-inotify.c.o +#10 230.5 [3991/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/udp.c.o +#10 230.5 [3992/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-sysctl-linux.c.o +#10 230.6 [3993/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/linux-core.c.o +#10 230.7 [3994/6823] Building C object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe_uv.dir/__/third_party/libuv/src/unix/random-getrandom.c.o +#10 230.8 [3995/6823] Linking C static library lib/libtensorpipe_uv.a +#10 231.6 [3996/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/algorithm.cc.o +#10 231.8 [3997/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/alltoall.cc.o +#10 231.8 [3998/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce_local.cc.o +#10 231.9 [3999/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/connection_impl.cc.o +#10 232.0 [4000/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgather.cc.o +#10 232.0 [4001/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/reactor.cc.o +#10 232.1 [4002/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/factory.cc.o +#10 232.1 [4003/6823] Building CXX object third_party/tensorpipe/tensorpipe/CMakeFiles/tensorpipe.dir/transport/ibv/listener_impl.cc.o +#10 232.2 [4004/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allgatherv.cc.o +#10 232.3 [4005/6823] Linking CXX static library lib/libtensorpipe.a +#10 232.4 [4006/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/alltoallv.cc.o +#10 232.4 [4007/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/barrier.cc.o +#10 232.9 [4008/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/allreduce.cc.o +#10 232.9 [4009/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/types.cc.o +#10 232.9 [4010/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/context.cc.o +#10 233.0 [4011/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gather.cc.o +#10 233.2 [4012/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/broadcast.cc.o +#10 233.2 [4013/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/logging.cc.o +#10 233.3 [4014/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/buffer.cc.o +#10 233.4 [4015/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/scatter.cc.o +#10 233.6 [4016/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/gatherv.cc.o +#10 233.6 [4017/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/reduce.cc.o +#10 233.6 [4018/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/address.cc.o +#10 234.0 [4019/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/unbound_buffer.cc.o +#10 234.1 [4020/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/store.cc.o +#10 234.2 [4021/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/hash_store.cc.o +#10 234.2 [4022/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/prefix_store.cc.o +#10 234.3 [4023/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/device.cc.o +#10 234.3 [4024/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/pair.cc.o +#10 234.6 [4025/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/common/linux.cc.o +#10 234.7 [4026/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/context.cc.o +#10 234.8 [4027/6823] Running gen_proto.py on onnx/onnx.in.proto +#10 234.8 Processing /pytorch/third_party/onnx/onnx/onnx.in.proto +#10 234.8 Writing /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 234.8 Writing /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 +#10 234.8 Writing /pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h +#10 234.8 generating /pytorch/build/third_party/onnx/onnx/onnx_pb.py +#10 234.8 [4028/6823] Building C object third_party/foxi/CMakeFiles/foxi_loader.dir/foxi/onnxifi_loader.c.o +#10 234.9 [4029/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/address.cc.o +#10 234.9 [4030/6823] Linking C static library lib/libfoxi_loader.a +#10 235.0 [4031/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/context.cc.o +#10 235.0 [4032/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto +#10 235.0 [4033/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/rendezvous/file_store.cc.o +#10 235.0 [4034/6823] Running gen_proto.py on onnx/onnx-data.in.proto +#10 235.0 Processing /pytorch/third_party/onnx/onnx/onnx-data.in.proto +#10 235.0 Writing /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 235.0 Writing /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 +#10 235.0 Writing /pytorch/build/third_party/onnx/onnx/onnx-data.pb.h +#10 235.0 generating /pytorch/build/third_party/onnx/onnx/onnx_data_pb.py +#10 235.1 [4035/6823] Running gen_proto.py on onnx/onnx-operators.in.proto +#10 235.1 Processing /pytorch/third_party/onnx/onnx/onnx-operators.in.proto +#10 235.1 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 235.1 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 +#10 235.1 Writing /pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h +#10 235.1 generating /pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py +#10 235.2 [4036/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto +#10 235.2 [4037/6823] Running C++ protocol buffer compiler on /pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto +#10 235.2 [4038/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/bfloat16.cpp.o +#10 235.5 [4039/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/buffer.cc.o +#10 235.5 [4040/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/binary.cpp.o +#10 235.9 [4041/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/context.cc.o +#10 236.0 [4042/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/unbound_buffer.cc.o +#10 236.0 [4043/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/loop.cc.o +#10 236.2 [4044/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/batch_normalization.cpp.o +#10 236.2 [4045/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/device.cc.o +#10 236.4 [4046/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o +#10 236.5 [4047/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc.cpp.o +#10 237.0 [4048/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o +#10 237.8 [4049/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o +#10 237.8 [4050/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o +#10 238.1 [4051/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/__/__/caffe2/onnx/torch_ops/defs.cc.o +#10 238.9 [4052/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o +#10 238.9 [4053/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o +#10 239.1 [4054/6823] Building CXX object third_party/gloo/gloo/CMakeFiles/gloo.dir/transport/tcp/pair.cc.o +#10 239.2 [4055/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o +#10 239.3 [4056/6823] Linking CXX static library lib/libgloo.a +#10 239.7 [4057/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o +#10 239.9 [4058/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/__/__/caffe2/onnx/torch_ops/schema.cc.o +#10 241.8 [4059/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o +#10 242.3 [4060/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o +#10 243.8 [4061/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o +#10 244.2 [4062/6823] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o +#10 244.2 [4063/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o +#10 244.6 [4064/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o +#10 244.9 [4065/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o +#10 245.0 [4066/6823] Linking CXX static library lib/libonnx_proto.a +#10 246.9 [4067/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o +#10 248.9 [4068/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip.hip.o +#10 248.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 248.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 249.8 [4069/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_private.hip.o +#10 249.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 249.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 250.5 [4070/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o +#10 251.8 [4071/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o +#10 254.1 [4072/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o +#10 254.6 [4073/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o +#10 256.4 [4074/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_local.cc.o +#10 256.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 256.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 257.8 [4075/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_generic.dir/src/EmbeddingSpMDM.cc.o +#10 260.1 [4076/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o +#10 260.7 [4077/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/nccl/gloo_hip_generated_nccl.hip.o +#10 260.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 260.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 260.8 [4078/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o +#10 262.0 [4079/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o +#10 262.1 [4080/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o +#10 262.4 [4081/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o +#10 263.4 [4082/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o +#10 263.5 [4083/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_ring.cc.o +#10 263.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 263.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 264.1 [4084/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_broadcast_one_to_all.cc.o +#10 264.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 264.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 264.5 [4085/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o +#10 265.0 [4086/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o +#10 265.3 [4087/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o +#10 265.7 [4088/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o +#10 266.6 [4089/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o +#10 266.6 [4090/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o +#10 267.0 [4091/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o +#10 267.0 [4092/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_ring_chunked.cc.o +#10 267.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 267.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 267.6 [4093/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o +#10 267.7 [4094/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_bcube.cc.o +#10 267.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 267.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 268.7 [4095/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o +#10 268.7 [4096/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o +#10 268.9 [4097/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o +#10 270.1 [4098/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o +#10 270.4 [4099/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o +#10 270.5 [4100/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o +#10 271.7 [4101/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o +#10 272.3 [4102/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o +#10 272.5 [4103/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o +#10 272.5 [4104/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o +#10 272.6 [4105/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o +#10 273.2 [4106/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o +#10 273.5 [4107/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc_iface.cpp.o +#10 273.5 [4108/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/eltwise.cpp.o +#10 273.7 [4109/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/deconvolution.cpp.o +#10 274.4 [4110/6823] Building HIPCC object third_party/gloo/gloo/CMakeFiles/gloo_hip.dir/__/__/__/build/third_party/gloo/hip/gloo/gloo_hip_generated_hip_allreduce_halving_doubling.cc.o +#10 274.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 274.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 274.5 [4111/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/concat.cpp.o +#10 274.7 [4112/6823] Linking CXX static library lib/libgloo_hip.a +#10 274.9 [4113/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_debug.cpp.o +#10 274.9 [4114/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_debug_autogenerated.cpp.o +#10 275.0 [4115/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/dnnl_threadpool.cpp.o +#10 275.1 [4116/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/cache_blob_id.cpp.o +#10 275.3 [4117/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive.cpp.o +#10 275.5 [4118/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_cache.cpp.o +#10 275.9 [4119/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_attr.cpp.o +#10 275.9 [4120/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/prelu.cpp.o +#10 276.0 [4121/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/convolution.cpp.o +#10 276.0 [4122/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o +#10 276.4 [4123/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/experimental.cpp.o +#10 276.4 [4124/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/broadcast_strategy.cpp.o +#10 276.7 [4125/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/inner_product.cpp.o +#10 276.8 [4126/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/fpmath_mode.cpp.o +#10 276.9 [4127/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/engine.cpp.o +#10 277.2 [4128/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/convolution_pd.cpp.o +#10 277.3 [4129/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/lrn.cpp.o +#10 277.7 [4130/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_debug.cpp.o +#10 277.8 [4131/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/layer_normalization.cpp.o +#10 277.9 [4132/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify.cpp.o +#10 278.0 [4133/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/matmul.cpp.o +#10 278.1 [4134/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o +#10 278.9 [4135/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/gemm.cpp.o +#10 279.0 [4136/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/pooling.cpp.o +#10 279.3 [4137/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o +#10 279.4 [4138/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_tracking.cpp.o +#10 279.4 [4139/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o +#10 279.5 [4140/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_storage.cpp.o +#10 279.6 [4141/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_exec_types.cpp.o +#10 280.1 [4142/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/reduction.cpp.o +#10 280.2 [4143/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/resampling.cpp.o +#10 280.4 [4144/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_desc_iterator.cpp.o +#10 280.5 [4145/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory.cpp.o +#10 280.8 [4146/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/query.cpp.o +#10 281.0 [4147/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/rnn.cpp.o +#10 281.1 [4148/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/rw_mutex.cpp.o +#10 281.1 [4149/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/reorder.cpp.o +#10 281.3 [4150/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/shuffle.cpp.o +#10 281.7 [4151/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/softmax.cpp.o +#10 281.8 [4152/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_iface.cpp.o +#10 282.1 [4153/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/scratchpad.cpp.o +#10 282.3 [4154/6823] Building C object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/jitprofiling.c.o +#10 282.4 [4155/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/stream.cpp.o +#10 282.4 [4156/6823] Building ASM object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/ittptmark64.S.o +#10 282.4 [4157/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/utils.cpp.o +#10 282.5 [4158/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/serialization.cpp.o +#10 282.6 [4159/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/scratchpad_debug.cpp.o +#10 282.6 [4160/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/sum.cpp.o +#10 283.1 [4161/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_desc_wrapper.cpp.o +#10 283.3 [4162/6823] Building C object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/ittnotify/ittnotify_static.c.o +#10 283.4 [4163/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/primitive_hashing.cpp.o +#10 284.0 [4164/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/binary_injector_utils.cpp.o +#10 284.7 [4165/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_batch_normalization_utils.cpp.o +#10 285.8 [4166/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/verbose.cpp.o +#10 285.8 [4167/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_engine.cpp.o +#10 288.2 [4168/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_binary_list.cpp.o +#10 288.5 [4169/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_concat.cpp.o +#10 291.0 [4170/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/bfloat16.cpp.o +#10 292.9 [4171/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_layer_normalization_list.cpp.o +#10 295.5 [4172/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_deconvolution_list.cpp.o +#10 295.8 [4173/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_lrn_list.cpp.o +#10 296.0 [4174/6823] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o +#10 296.3 [4175/6823] Linking CXX static library lib/libonnx.a +#10 297.4 [4176/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_batch_normalization_list.cpp.o +#10 297.5 [4177/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_eltwise_list.cpp.o +#10 299.1 [4178/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_reduction_list.cpp.o +#10 299.8 [4179/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_prelu_list.cpp.o +#10 301.3 [4180/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/float16.cpp.o +#10 301.5 [4181/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_resampling_list.cpp.o +#10 301.6 [4182/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_shuffle_list.cpp.o +#10 302.1 [4183/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_inner_product_list.cpp.o +#10 302.3 [4184/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_pooling_list.cpp.o +#10 304.5 [4185/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.o +#10 304.8 [4186/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_softmax_list.cpp.o +#10 305.1 [4187/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_convolution.cpp.o +#10 305.5 [4188/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_inner_product_utils.cpp.o +#10 306.1 [4189/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_convolution_utils.cpp.o +#10 306.2 [4190/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_convolution.cpp.o +#10 306.3 [4191/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/common/CMakeFiles/dnnl_common.dir/memory_zero_pad.cpp.o +#10 308.2 [4192/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_sum.cpp.o +#10 308.5 [4193/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/primitive_attr_postops.cpp.o +#10 308.6 [4194/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_x8s8s32x_inner_product.cpp.o +#10 309.2 [4195/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/platform.cpp.o +#10 310.3 [4196/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_inner_product.cpp.o +#10 310.8 [4197/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nchw_pooling.cpp.o +#10 311.3 [4198/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm_convolution_utils.cpp.o +#10 311.4 [4199/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_binary.cpp.o +#10 311.6 [4200/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ncsp_batch_normalization.cpp.o +#10 312.3 [4201/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nhwc_pooling.cpp.o +#10 313.1 [4202/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/nspc_batch_normalization.cpp.o +#10 315.7 [4203/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_layer_normalization.cpp.o +#10 316.0 [4204/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_inner_product.cpp.o +#10 316.3 [4205/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_deconvolution.cpp.o +#10 316.6 [4206/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_inner_product_int8.cpp.o +#10 318.0 [4207/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_prelu.cpp.o +#10 319.2 [4208/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_eltwise.cpp.o +#10 319.5 [4209/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_convolution.cpp.o +#10 319.6 [4210/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_convolution_int8.cpp.o +#10 321.0 [4211/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_shuffle.cpp.o +#10 321.3 [4212/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_resampling.cpp.o +#10 322.2 [4213/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/zero_point_utils.cpp.o +#10 322.6 [4214/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_lrn.cpp.o +#10 322.7 [4215/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_softmax.cpp.o +#10 322.8 [4216/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_batch_normalization.cpp.o +#10 323.0 [4217/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/f32/gemm_utils_f32.cpp.o +#10 323.1 [4218/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/gemm_pack.cpp.o +#10 323.5 [4219/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_reduction.cpp.o +#10 323.6 [4220/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_layer_normalization.cpp.o +#10 324.5 [4221/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/s8x8s32/ref_gemm_s8x8s32.cpp.o +#10 325.8 [4222/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/gemm.cpp.o +#10 326.0 [4223/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/ref_pooling.cpp.o +#10 326.1 [4224/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/s8x8s32/simple_gemm_s8s8s32.cpp.o +#10 326.4 [4225/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/gemm/f32/ref_gemm_f32.cpp.o +#10 326.9 [4226/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_sum.cpp.o +#10 327.5 [4227/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_concat.cpp.o +#10 328.4 [4228/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/ref_matmul_int8.cpp.o +#10 328.6 [4229/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_f32_matmul.cpp.o +#10 328.8 [4230/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder.cpp.o +#10 328.8 [4231/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/ref_matmul.cpp.o +#10 329.4 [4232/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/cpu_matmul_list.cpp.o +#10 329.7 [4233/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_bf16_matmul.cpp.o +#10 331.2 [4234/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_convolution_list.cpp.o +#10 331.3 [4235/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/matmul/gemm_x8s8s32x_matmul.cpp.o +#10 333.5 [4236/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_bf16.cpp.o +#10 333.8 [4237/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_bf16_s8.cpp.o +#10 333.9 [4238/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_f32_s8.cpp.o +#10 333.9 [4239/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_f16.cpp.o +#10 334.2 [4240/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_bf16.cpp.o +#10 335.6 [4241/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_s32.cpp.o +#10 335.8 [4242/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f16.cpp.o +#10 336.3 [4243/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_comp_s8_s8.cpp.o +#10 337.6 [4244/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_f32.cpp.o +#10 339.6 [4245/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_s8.cpp.o +#10 339.6 [4246/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_f32_u8.cpp.o +#10 340.5 [4247/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_gru_lbr.cpp.o +#10 340.9 [4248/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_gru.cpp.o +#10 341.0 [4249/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_u8.cpp.o +#10 341.5 [4250/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/brgemm_cell_common.cpp.o +#10 341.6 [4251/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_s32.cpp.o +#10 342.0 [4252/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/cell_common.cpp.o +#10 342.2 [4253/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/reorder/cpu_reorder_regular_s8.cpp.o +#10 342.3 [4254/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/jit_utils/jit_utils.cpp.o +#10 342.8 [4255/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/jit_utils/linux_perf/linux_perf.cpp.o +#10 343.0 [4256/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/simple_resampling.cpp.o +#10 343.1 [4257/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_gru.cpp.o +#10 344.1 [4258/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_gru_lbr.cpp.o +#10 344.4 [4259/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_lstm_projection.cpp.o +#10 345.1 [4260/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/brgemm.cpp.o +#10 345.2 [4261/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/rnn_utils.cpp.o +#10 345.4 [4262/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_rnn.cpp.o +#10 345.8 [4263/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_postgemm_lstm.cpp.o +#10 346.2 [4264/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/brgemm_utils.cpp.o +#10 346.6 [4265/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/amx_tile_configure.cpp.o +#10 348.6 [4266/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_isa_traits.cpp.o +#10 349.1 [4267/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_barrier.cpp.o +#10 349.7 [4268/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brdgmm_kernel.cpp.o +#10 351.8 [4269/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/cpu_reducer.cpp.o +#10 353.1 [4270/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/amx/jit_avx512_core_amx_copy_kern.cpp.o +#10 353.5 [4271/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/amx/jit_avx512_core_amx_gemm_kern.cpp.o +#10 354.0 [4272/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_an_kern_autogen.cpp.o +#10 354.3 [4273/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_gemm_bf16bf16f32_kern.cpp.o +#10 354.6 [4274/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_bn_kern_autogen.cpp.o +#10 354.7 [4275/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brgemm_amx_uker.cpp.o +#10 356.3 [4276/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_gemv_bf16bf16f32_kern.cpp.o +#10 358.0 [4277/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_bt_kern_autogen.cpp.o +#10 358.0 [4278/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_24x8_copy_at_kern_autogen.cpp.o +#10 358.8 [4279/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_bt_kern_autogen.cpp.o +#10 359.0 [4280/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_bn_kern_autogen.cpp.o +#10 359.1 [4281/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_an_kern_autogen.cpp.o +#10 361.6 [4282/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_bn_kern_autogen.cpp.o +#10 363.8 [4283/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/bf16/jit_avx512_core_s16_48x8_copy_at_kern_autogen.cpp.o +#10 364.1 [4284/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_bt_kern_autogen.cpp.o +#10 365.3 [4285/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_an_kern_autogen.cpp.o +#10 366.7 [4286/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_f32_copy_at_kern_autogen.cpp.o +#10 368.3 [4287/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_common_gemm_f32.cpp.o +#10 370.2 [4288/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_bn_kern_autogen.cpp.o +#10 372.3 [4289/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_bt_kern_autogen.cpp.o +#10 373.8 [4290/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_gemm_smalln_tn_f32_kern.cpp.o +#10 374.4 [4291/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx2_kernel_sgemm_kern.cpp.o +#10 374.5 [4292/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_at_kern_autogen.cpp.o +#10 375.9 [4293/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_bn_kern_autogen.cpp.o +#10 376.1 [4294/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_an_kern_autogen.cpp.o +#10 376.8 [4295/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_an_kern_autogen.cpp.o +#10 376.8 [4296/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/cpu_rnn_list.cpp.o +#10 377.1 [4297/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/brgemm/jit_brgemm_kernel.cpp.o +#10 377.4 [4298/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_at_kern_part1_autogen.cpp.o +#10 378.9 [4299/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_f32_copy_bt_kern_autogen.cpp.o +#10 379.0 [4300/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx512_core_f32_copy_at_kern_part2_autogen.cpp.o +#10 380.8 [4301/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_gemv_t_f32_kern.cpp.o +#10 382.3 [4302/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_at_kern_autogen.cpp.o +#10 383.1 [4303/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_bn_kern_autogen.cpp.o +#10 384.0 [4304/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_an_kern_autogen.cpp.o +#10 385.0 [4305/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_gemm_f32.cpp.o +#10 385.6 [4306/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_f32_copy_bt_kern_autogen.cpp.o +#10 386.6 [4307/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_gemv_n_f32_kern.cpp.o +#10 388.1 [4308/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_gemv_t_f32_kern.cpp.o +#10 388.2 [4309/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_sgemm_kern_part1_autogen.cpp.o +#10 389.7 [4310/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_pack.cpp.o +#10 390.8 [4311/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_b0_sgemm_kern_part1_autogen.cpp.o +#10 391.3 [4312/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemv_driver.cpp.o +#10 391.4 [4313/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_info.cpp.o +#10 395.3 [4314/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/gemm_driver.cpp.o +#10 395.4 [4315/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_gemm_s8u8s32_kern.cpp.o +#10 395.5 [4316/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_an_kern_autogen.cpp.o +#10 395.7 [4317/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_an_kern_autogen.cpp.o +#10 395.8 [4318/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_kernel_b0_sgemm_kern_autogen.cpp.o +#10 396.2 [4319/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_b0_sgemm_kern_part2_autogen.cpp.o +#10 396.3 [4320/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_at_kern_autogen.cpp.o +#10 396.3 [4321/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_bn_kern_autogen.cpp.o +#10 396.4 [4322/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_sse41_kernel_sgemm_kern_autogen.cpp.o +#10 397.5 [4323/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_bt_kern_autogen.cpp.o +#10 399.5 [4324/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_bn_kern_autogen.cpp.o +#10 401.0 [4325/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_bt_kern_autogen.cpp.o +#10 401.2 [4326/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_bt_kern_autogen.cpp.o +#10 401.4 [4327/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_an_kern_autogen.cpp.o +#10 401.5 [4328/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_bn_kern_autogen.cpp.o +#10 402.5 [4329/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_an_kern_autogen.cpp.o +#10 402.7 [4330/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_u8_copy_sum_at_kern_autogen.cpp.o +#10 403.3 [4331/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_bn_kern_autogen.cpp.o +#10 404.5 [4332/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_bt_kern_autogen.cpp.o +#10 404.8 [4333/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_sum_at_kern_autogen.cpp.o +#10 404.9 [4334/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx2_vnni_u8_copy_at_kern_autogen.cpp.o +#10 405.6 [4335/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_gemv_s8x8s32.cpp.o +#10 407.8 [4336/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_kernel_gemv_s8x8s32_kern.cpp.o +#10 408.2 [4337/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_an_kern_autogen.cpp.o +#10 408.2 [4338/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/f32/jit_avx_kernel_sgemm_kern_part2_autogen.cpp.o +#10 409.5 [4339/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_bn_kern_autogen.cpp.o +#10 409.6 [4340/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_bt_kern_autogen.cpp.o +#10 410.1 [4341/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_gemm_s8u8s32_kern.cpp.o +#10 410.1 [4342/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_bt_kern_autogen.cpp.o +#10 411.4 [4343/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_bn_kern_autogen.cpp.o +#10 414.7 [4344/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8Depthwise3DAvx2.cc.o +#10 415.1 [4345/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_an_kern_autogen.cpp.o +#10 415.4 [4346/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_at_kern_autogen.cpp.o +#10 418.1 [4347/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.o +#10 420.0 [4348/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 420.5 [4349/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_gemm_s8u8s32_kern_autogen.cpp.o +#10 420.6 [4350/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx512_core_u8_copy_sum_at_kern_autogen.cpp.o +#10 420.9 [4351/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_an_kern_autogen.cpp.o +#10 421.0 [4352/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 421.6 [4353/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_bn_kern_autogen.cpp.o +#10 422.0 [4354/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_at_kern_autogen.cpp.o +#10 422.8 [4355/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 423.5 [4356/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 424.0 [4357/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 424.9 [4358/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_bt_kern_autogen.cpp.o +#10 425.3 [4359/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_bt_kern_autogen.cpp.o +#10 426.3 [4360/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_an_kern_autogen.cpp.o +#10 426.6 [4361/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_bn_kern_autogen.cpp.o +#10 426.8 [4362/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_kernel_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 428.1 [4363/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_avx_u8_copy_sum_at_kern_autogen.cpp.o +#10 430.0 [4364/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_gemm_s8u8s32_kern_autogen.cpp.o +#10 430.0 [4365/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 430.9 [4366/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 431.3 [4367/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_an_kern_autogen.cpp.o +#10 431.8 [4368/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_bn_kern_autogen.cpp.o +#10 432.3 [4369/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b0_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 432.3 [4370/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_gemm_s8u8s32_kern_autogen.cpp.o +#10 432.4 [4371/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_c_gemm_s8u8s32_kern_autogen.cpp.o +#10 433.1 [4372/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_at_kern_autogen.cpp.o +#10 433.5 [4373/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_bt_kern_autogen.cpp.o +#10 433.6 [4374/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_r_gemm_s8u8s32_kern_autogen.cpp.o +#10 433.7 [4375/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_kernel_b_gemm_s8u8s32_kern_autogen.cpp.o +#10 435.4 [4376/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_bn_kern_autogen.cpp.o +#10 435.8 [4377/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_an_kern_autogen.cpp.o +#10 436.4 [4378/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/injector_utils.cpp.o +#10 436.6 [4379/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_bt_kern_autogen.cpp.o +#10 437.6 [4380/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm/s8x8s32/jit_sse41_u8_copy_sum_at_kern_autogen.cpp.o +#10 438.0 [4381/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/ip_convolution.cpp.o +#10 441.1 [4382/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm_bf16_inner_product.cpp.o +#10 441.2 [4383/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_convolution.cpp.o +#10 442.0 [4384/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_postops_injector.cpp.o +#10 445.5 [4385/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_1x1_conv_kernel_f32.cpp.o +#10 445.5 [4386/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/gemm_bf16_convolution.cpp.o +#10 445.5 [4387/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_1x1_convolution.cpp.o +#10 445.6 [4388/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_1x1_conv_kernel.cpp.o +#10 446.1 [4389/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/CMakeFiles/dnnl_cpu.dir/rnn/ref_rnn.cpp.o +#10 447.1 [4390/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx2_conv_kernel_f32.cpp.o +#10 449.9 [4391/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_1x1_convolution.cpp.o +#10 450.3 [4392/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_deconvolution.cpp.o +#10 450.6 [4393/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_resampling.cpp.o +#10 451.0 [4394/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_convolution.cpp.o +#10 451.0 [4395/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_1x1_convolution.cpp.o +#10 451.0 [4396/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_1x1_conv_kernel.cpp.o +#10 455.3 [4397/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16cvt.cpp.o +#10 456.2 [4398/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_convolution.cpp.o +#10 458.1 [4399/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_common_conv_kernel.cpp.o +#10 458.1 [4400/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_1x1_conv_kernel.cpp.o +#10 458.8 [4401/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_binary_injector.cpp.o +#10 459.2 [4402/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_convolution.cpp.o +#10 459.9 [4403/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_sum.cpp.o +#10 460.4 [4404/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_4x3.cpp.o +#10 460.6 [4405/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_2x3.cpp.o +#10 461.0 [4406/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_dw_conv_kernel.cpp.o +#10 461.9 [4407/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_1x1_convolution.cpp.o +#10 462.3 [4408/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_fp16cvt.cpp.o +#10 463.8 [4409/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_amx_conv_kernel.cpp.o +#10 464.4 [4410/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_1x1_convolution.cpp.o +#10 465.1 [4411/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_convolution.cpp.o +#10 466.2 [4412/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brdgmm_dw_conv.cpp.o +#10 466.7 [4413/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_f32_wino_conv_4x3_kernel.cpp.o +#10 467.2 [4414/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/injectors/jit_uni_eltwise_injector.cpp.o +#10 468.0 [4415/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_u8s8s32x_wino_convolution.cpp.o +#10 471.0 [4416/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_comp_pad_kernel.cpp.o +#10 471.5 [4417/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_1x1_conv_kernel.cpp.o +#10 472.0 [4418/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_utils.cpp.o +#10 472.4 [4419/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_inner_product_utils.cpp.o +#10 472.5 [4420/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_1x1_conv.cpp.o +#10 472.6 [4421/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_bf16_conv_kernel.cpp.o +#10 472.8 [4422/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_bwd.cpp.o +#10 472.9 [4423/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_trans_kernel.cpp.o +#10 473.6 [4424/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv_bwd_w.cpp.o +#10 475.4 [4425/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_conv_kernel.cpp.o +#10 475.8 [4426/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_convolution.cpp.o +#10 475.9 [4427/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_avx512_core_x8s8s32x_deconvolution.cpp.o +#10 476.5 [4428/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_1x1_convolution.cpp.o +#10 476.7 [4429/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.o +#10 479.0 [4430/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_transpose_utils.cpp.o +#10 480.2 [4431/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_conv_kernel_f32.cpp.o +#10 480.5 [4432/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_x8s8s32x_convolution_utils.cpp.o +#10 480.8 [4433/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_transpose_utils.cpp.o +#10 480.9 [4434/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_sse41_1x1_conv_kernel_f32.cpp.o +#10 483.5 [4435/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_deconv_zp_pad_str_kernel.cpp.o +#10 484.0 [4436/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_binary.cpp.o +#10 484.5 [4437/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_gemm_inner_product_utils.cpp.o +#10 485.7 [4438/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_batch_normalization_s8.cpp.o +#10 485.9 [4439/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_inner_product.cpp.o +#10 489.2 [4440/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_conv_kernel_utils.cpp.o +#10 490.8 [4441/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reduction.cpp.o +#10 491.7 [4442/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_eltwise_int.cpp.o +#10 492.6 [4443/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_eltwise.cpp.o +#10 494.2 [4444/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_conv_kernel_f32.cpp.o +#10 494.4 [4445/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_binary_kernel.cpp.o +#10 494.4 [4446/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reorder_utils.cpp.o +#10 494.6 [4447/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_brgemm_conv.cpp.o +#10 494.8 [4448/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_layer_normalization.cpp.o +#10 495.1 [4449/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_dw_convolution.cpp.o +#10 495.5 [4450/6823] Building CXX object third_party/fbgemm/CMakeFiles/fbgemm_avx2.dir/src/FbgemmI8DepthwiseAvx2.cc.o +#10 495.8 [4451/6823] Linking CXX static library lib/libfbgemm.a +#10 496.0 [4452/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_i8i8_pooling.cpp.o +#10 496.7 [4453/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_batch_normalization.cpp.o +#10 498.9 [4454/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_resampling.cpp.o +#10 502.2 [4455/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reduction_kernel.cpp.o +#10 502.3 [4456/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_pool_kernel.cpp.o +#10 502.8 [4457/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_pooling.cpp.o +#10 503.5 [4458/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_reorder.cpp.o +#10 503.8 [4459/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_convolution.cpp.o +#10 504.0 [4460/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_base.cpp.o +#10 505.9 [4461/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn.cpp.o +#10 506.1 [4462/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_1x1_conv_kernel.cpp.o +#10 506.2 [4463/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_softmax.cpp.o +#10 506.6 [4464/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_blocked.cpp.o +#10 507.1 [4465/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_bwd_nhwc.cpp.o +#10 507.5 [4466/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_blocked.cpp.o +#10 507.9 [4467/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_resampling_kernel.cpp.o +#10 507.9 [4468/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_base.cpp.o +#10 508.5 [4469/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_1x1_convolution.cpp.o +#10 509.0 [4470/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_avx512_common_lrn_fwd_nhwc.cpp.o +#10 510.4 [4471/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul_utils.cpp.o +#10 510.8 [4472/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_conv_kernel.cpp.o +#10 511.5 [4473/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_utils.cpp.o +#10 512.1 [4474/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_uni_lrn.cpp.o +#10 512.8 [4475/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_forward.cpp.o +#10 512.9 [4476/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_backward.cpp.o +#10 513.2 [4477/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_reduction_kernel.cpp.o +#10 513.3 [4478/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_prelu_base_kernel.cpp.o +#10 513.4 [4479/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_utils.cpp.o +#10 513.5 [4480/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_x8s8s32x_deconvolution.cpp.o +#10 514.0 [4481/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_uni_prelu_backward_kernel.cpp.o +#10 514.4 [4482/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_bwd.cpp.o +#10 514.7 [4483/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_reorders.cpp.o +#10 514.8 [4484/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul_copy_utils.cpp.o +#10 514.9 [4485/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/jit_uni_tbb_batch_normalization.cpp.o +#10 515.1 [4486/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/prelu/jit_uni_prelu_forward_kernel.cpp.o +#10 517.2 [4487/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/constant_cache.cpp.o +#10 517.5 [4488/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/brgemm_cell_common_fwd.cpp.o +#10 517.8 [4489/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/matmul/brgemm_matmul.cpp.o +#10 518.5 [4490/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/dnnl_shape_infer.cpp.o +#10 518.9 [4491/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_brgemm_transpose_single_row.cpp.o +#10 518.9 [4492/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_gates_reduction.cpp.o +#10 518.9 [4493/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/rnn_brgemm_utils.cpp.o +#10 519.1 [4494/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/shuffle/jit_uni_shuffle.cpp.o +#10 519.2 [4495/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/common.cpp.o +#10 519.5 [4496/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/rnn/jit_diff_weights_peephole.cpp.o +#10 520.5 [4497/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/fusion_info.cpp.o +#10 521.6 [4498/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/lrn/jit_uni_lrn_kernel.cpp.o +#10 521.8 [4499/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/shuffle/jit_uni_shuffle_kernel.cpp.o +#10 522.1 [4500/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/constant_propagation.cpp.o +#10 522.6 [4501/6823] Building CXX object third_party/ideep/mkl-dnn/third_party/oneDNN/src/cpu/x64/CMakeFiles/dnnl_cpu_x64.dir/utils/jit_io_helper.cpp.o +#10 523.3 [4502/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/layout_propagation.cpp.o +#10 523.5 [4503/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/compile_ops.cpp.o +#10 523.6 [4504/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/subgraph.cpp.o +#10 524.2 [4505/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/layout_propagator.cpp.o +#10 525.5 [4506/6823] Linking CXX static library lib/libdnnl.a +#10 525.6 [4507/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/insert_ops.cpp.o +#10 526.2 [4508/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/lower.cpp.o +#10 527.3 [4509/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/memory_planning.cpp.o +#10 527.4 [4510/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/op_executable.cpp.o +#10 528.5 [4511/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/utils.cpp.o +#10 531.2 [4512/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/binary_fusion.cpp.o +#10 531.2 [4513/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/bn_fusion.cpp.o +#10 532.7 [4514/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/concat_fusion.cpp.o +#10 533.9 [4515/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/passes/transform.cpp.o +#10 534.8 [4516/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/interpolate_fusion.cpp.o +#10 535.3 [4517/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/dnnl_backend.cpp.o +#10 535.4 [4518/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/convtranspose_fusion.cpp.o +#10 535.8 [4519/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/layernorm_fusion.cpp.o +#10 536.0 [4520/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/eltwise_fusion.cpp.o +#10 536.2 [4521/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/conv_post_ops_fusion.cpp.o +#10 536.2 [4522/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/id.cpp.o +#10 536.3 [4523/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/debug.cpp.o +#10 537.5 [4524/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/conv_block_fusion.cpp.o +#10 537.7 [4525/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/quantize_fusion.cpp.o +#10 538.0 [4526/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/rw_mutex.cpp.o +#10 539.2 [4527/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/pool_fusion.cpp.o +#10 539.4 [4528/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/utils.cpp.o +#10 539.9 [4529/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/pass_manager.cpp.o +#10 540.2 [4530/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/reduction_fusion.cpp.o +#10 540.7 [4531/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/nested_matcher.cpp.o +#10 540.8 [4532/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/allocator.cpp.o +#10 540.8 [4533/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/verbose.cpp.o +#10 540.9 [4534/6823] Building CXX object third_party/ideep/mkl-dnn/src/utils/CMakeFiles/dnnl_graph_utils.dir/pm/pbuilder.cpp.o +#10 541.0 [4535/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/engine.cpp.o +#10 541.2 [4536/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/fake/CMakeFiles/dnnl_graph_backend_fake.dir/fake_backend.cpp.o +#10 541.3 [4537/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/reorder_fusion.cpp.o +#10 541.7 [4538/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/backend.cpp.o +#10 542.2 [4539/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/shuffle_fusion.cpp.o +#10 543.2 [4540/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/logical_tensor.cpp.o +#10 543.4 [4541/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/op.cpp.o +#10 543.8 [4542/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/sum_fusion.cpp.o +#10 543.8 [4543/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/matmul_fusion.cpp.o +#10 543.9 [4544/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_cache.cpp.o +#10 544.1 [4545/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_impl.cpp.o +#10 544.2 [4546/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/stream.cpp.o +#10 544.6 [4547/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/tensor.cpp.o +#10 544.6 [4548/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/softmax_fusion.cpp.o +#10 544.9 [4549/6823] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o +#10 545.1 [4550/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/type_constraint.cpp.o +#10 545.1 [4551/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition_hashing.cpp.o +#10 545.2 [4552/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/partition.cpp.o +#10 545.7 [4553/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/value.cpp.o +#10 545.8 [4554/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o +#10 546.0 [4555/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/graph.cpp.o +#10 546.5 [4556/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/shape_infer.cpp.o +#10 547.2 [4557/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/RoctracerLogger.cpp.o +#10 547.2 In file included from ../third_party/kineto/libkineto/src/RoctracerLogger.h:22, +#10 547.2 from ../third_party/kineto/libkineto/src/RoctracerLogger.cpp:9: +#10 547.2 /opt/rocm/include/roctracer/roctracer_hcc.h:22:96: note: ‘#pragma message: This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.’ +#10 547.2 22 | "This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.") +#10 547.2 | ^ +#10 548.2 [4558/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o +#10 548.6 [4559/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o +#10 548.8 [4560/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o +#10 549.0 [4561/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o +#10 549.0 In file included from ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:12, +#10 549.0 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.h:21, +#10 549.0 from ../third_party/kineto/libkineto/src/DaemonConfigLoader.cpp:16: +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryPeekMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:155:33: required from here +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:174:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 549.0 174 | throw std::runtime_error(std::strerror(errno)); +#10 549.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘const char* dynolog::ipcfabric::EndPoint::getName(const TCtxt&) const [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:170:43: required from here +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:185:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 549.0 185 | throw std::invalid_argument( +#10 549.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 186 | "Unexpected socket name: " + std::string(ctxt.msg_name.sun_path) + +#10 549.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 187 | ". Expected to start with " + std::string(socket_dir)); +#10 549.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:192:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 549.0 192 | throw std::invalid_argument( +#10 549.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 193 | "Expected abstract socket, got " + +#10 549.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 194 | std::string(ctxt.msg_name.sun_path)); +#10 549.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryRcvMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:178:34: required from here +#10 549.0 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:160:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 549.0 160 | throw std::runtime_error(std::strerror(errno)); +#10 549.0 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 549.2 [4562/6823] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o +#10 549.2 [4563/6823] Linking CXX static library lib/libfmt.a +#10 549.3 [4564/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o +#10 550.2 [4565/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o +#10 551.0 [4566/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o +#10 551.0 [4567/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o +#10 551.3 [4568/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o +#10 551.3 In file included from ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:12, +#10 551.3 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.h:21, +#10 551.3 from ../third_party/kineto/libkineto/src/IpcFabricConfigClient.cpp:11: +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryPeekMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:155:33: required from here +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:174:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 551.3 174 | throw std::runtime_error(std::strerror(errno)); +#10 551.3 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘const char* dynolog::ipcfabric::EndPoint::getName(const TCtxt&) const [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:170:43: required from here +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:185:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 551.3 185 | throw std::invalid_argument( +#10 551.3 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 186 | "Unexpected socket name: " + std::string(ctxt.msg_name.sun_path) + +#10 551.3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 187 | ". Expected to start with " + std::string(socket_dir)); +#10 551.3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:192:9: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 551.3 192 | throw std::invalid_argument( +#10 551.3 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 193 | "Expected abstract socket, got " + +#10 551.3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 194 | std::string(ctxt.msg_name.sun_path)); +#10 551.3 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h: In instantiation of ‘bool dynolog::ipcfabric::EndPoint::tryRcvMsg(dynolog::ipcfabric::EndPoint::TCtxt&) [with long unsigned int kMaxNumFds = 0; dynolog::ipcfabric::EndPoint::TCtxt = dynolog::ipcfabric::EndPointCtxt<0>]’: +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/FabricManager.h:178:34: required from here +#10 551.3 ../third_party/kineto/libkineto/third_party/dynolog/dynolog/src/ipcfabric/Endpoint.h:160:5: warning: ‘throw’ will always call ‘terminate’ [-Wterminate] +#10 551.3 160 | throw std::runtime_error(std::strerror(errno)); +#10 551.3 | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 551.4 [4569/6823] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o +#10 552.0 [4570/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/RoctracerActivityApi.cpp.o +#10 552.0 In file included from ../third_party/kineto/libkineto/src/RoctracerLogger.h:22, +#10 552.0 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:15: +#10 552.0 /opt/rocm/include/roctracer/roctracer_hcc.h:22:96: note: ‘#pragma message: This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.’ +#10 552.0 22 | "This file has been deprecated and marked for removal. Please use roctracer_hip.h instead.") +#10 552.0 | ^ +#10 552.0 In file included from ../third_party/fmt/include/fmt/format.h:48, +#10 552.0 from ../third_party/kineto/libkineto/include/GenericTraceActivity.h:11, +#10 552.0 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.h:22, +#10 552.0 from ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:14: +#10 552.0 ../third_party/fmt/include/fmt/core.h: In substitution of ‘template using mapped_type_constant = fmt::v9::detail::type_constant().map(declval())), typename Context::char_type> [with T = hipMemcpyKind; Context = fmt::v9::basic_format_context]’: +#10 552.0 ../third_party/fmt/include/fmt/core.h:1729:68: required from ‘constexpr long long unsigned int fmt::v9::detail::encode_types() [with Context = fmt::v9::basic_format_context; Arg = hipMemcpyKind; Args = {}]’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1730:41: required from ‘constexpr long long unsigned int fmt::v9::detail::encode_types() [with Context = fmt::v9::basic_format_context; Arg = std::__cxx11::basic_string; Args = {hipMemcpyKind}]’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1886:58: required from ‘constexpr const long long unsigned int fmt::v9::format_arg_store, std::__cxx11::basic_string, std::allocator >, hipMemcpyKind>::desc’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1999:63: required from ‘constexpr fmt::v9::basic_format_args::basic_format_args(const fmt::v9::format_arg_store&) [with Args = {std::__cxx11::basic_string, std::allocator >, hipMemcpyKind}; Context = fmt::v9::basic_format_context]’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:3206:17: required from ‘std::string fmt::v9::format(fmt::v9::format_string, T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; std::string = std::__cxx11::basic_string; fmt::v9::format_string = fmt::v9::basic_format_string, std::allocator >&, const hipMemcpyKind&>]’ +#10 552.0 ../third_party/kineto/libkineto/include/GenericTraceActivity.h:95:36: required from ‘void libkineto::GenericTraceActivity::addMetadata(const string&, const ValType&) [with ValType = hipMemcpyKind; std::string = std::__cxx11::basic_string]’ +#10 552.0 ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:167:18: required from here +#10 552.0 ../third_party/fmt/include/fmt/core.h:1530:53: warning: ‘constexpr decltype (declval >().map(static_cast >(val))) fmt::v9::detail::arg_mapper::map(const T&) [with T = hipMemcpyKind; typename std::enable_if<((((std::is_enum::value && std::is_convertible::value) && (! fmt::v9::detail::has_format_as::value)) && (! std::is_constructible >::value)) && (! fmt::v9::detail::has_fallback_formatter::value)), int>::type = 0; Context = fmt::v9::basic_format_context; decltype (declval >().map(static_cast >(val))) = unsigned int; fmt::v9::detail::arg_mapper = fmt::v9::detail::arg_mapper >; fmt::v9::underlying_t = unsigned int]’ is deprecated [-Wdeprecated-declarations] +#10 552.0 1530 | type_constant().map(std::declval())), +#10 552.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1470:48: note: declared here +#10 552.0 1470 | FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) +#10 552.0 | ^~~ +#10 552.0 ../third_party/fmt/include/fmt/core.h: In instantiation of ‘constexpr fmt::v9::detail::value fmt::v9::detail::make_value(T&&) [with Context = fmt::v9::basic_format_context; T = const hipMemcpyKind&]’: +#10 552.0 ../third_party/fmt/include/fmt/core.h:1777:29: required from ‘constexpr fmt::v9::detail::value fmt::v9::detail::make_arg(T&&) [with bool IS_PACKED = true; Context = fmt::v9::basic_format_context; fmt::v9::detail::type = fmt::v9::detail::type::uint_type; T = const hipMemcpyKind&; typename std::enable_if::type = 0]’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1901:77: required from ‘constexpr fmt::v9::format_arg_store::format_arg_store(T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; Context = fmt::v9::basic_format_context; Args = {std::__cxx11::basic_string, std::allocator >, hipMemcpyKind}]’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1918:31: required from ‘constexpr fmt::v9::format_arg_store::type>::type ...> fmt::v9::make_format_args(Args&& ...) [with Context = fmt::v9::basic_format_context; Args = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}]’ +#10 552.0 ../third_party/fmt/include/fmt/core.h:3206:44: required from ‘std::string fmt::v9::format(fmt::v9::format_string, T&& ...) [with T = {const std::__cxx11::basic_string, std::allocator >&, const hipMemcpyKind&}; std::string = std::__cxx11::basic_string; fmt::v9::format_string = fmt::v9::basic_format_string, std::allocator >&, const hipMemcpyKind&>]’ +#10 552.0 ../third_party/kineto/libkineto/include/GenericTraceActivity.h:95:36: required from ‘void libkineto::GenericTraceActivity::addMetadata(const string&, const ValType&) [with ValType = hipMemcpyKind; std::string = std::__cxx11::basic_string]’ +#10 552.0 ../third_party/kineto/libkineto/src/RoctracerActivityApi.cpp:167:18: required from here +#10 552.0 ../third_party/fmt/include/fmt/core.h:1735:46: warning: ‘constexpr decltype (declval >().map(static_cast >(val))) fmt::v9::detail::arg_mapper::map(const T&) [with T = hipMemcpyKind; typename std::enable_if<((((std::is_enum::value && std::is_convertible::value) && (! fmt::v9::detail::has_format_as::value)) && (! std::is_constructible >::value)) && (! fmt::v9::detail::has_fallback_formatter::value)), int>::type = 0; Context = fmt::v9::basic_format_context; decltype (declval >().map(static_cast >(val))) = unsigned int; fmt::v9::detail::arg_mapper = fmt::v9::detail::arg_mapper >; fmt::v9::underlying_t = unsigned int]’ is deprecated [-Wdeprecated-declarations] +#10 552.0 1735 | const auto& arg = arg_mapper().map(FMT_FORWARD(val)); +#10 552.0 | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~ +#10 552.0 ../third_party/fmt/include/fmt/core.h:1470:48: note: declared here +#10 552.0 1470 | FMT_DEPRECATED FMT_CONSTEXPR FMT_INLINE auto map(const T& val) +#10 552.0 | ^~~ +#10 552.0 [4571/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o +#10 552.3 [4572/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o +#10 552.9 [4573/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o +#10 553.3 [4574/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o +#10 553.3 [4575/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o +#10 553.4 [4576/6823] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o +#10 553.4 [4577/6823] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o +#10 553.5 [4578/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o +#10 553.5 [4579/6823] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o +#10 553.7 [4580/6823] Building CXX object third_party/ideep/mkl-dnn/src/interface/CMakeFiles/dnnl_graph_common.dir/op_schema.cpp.o +#10 553.9 [4581/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o +#10 554.2 [4582/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o +#10 554.2 [4583/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o +#10 554.7 [4584/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o +#10 554.7 [4585/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o +#10 554.8 [4586/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o +#10 554.9 [4587/6823] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o +#10 554.9 [4588/6823] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o +#10 555.0 [4589/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o +#10 555.2 [4590/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o +#10 555.4 [4591/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o +#10 555.4 [4592/6823] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o +#10 555.6 [4593/6823] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o +#10 555.6 [4594/6823] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o +#10 555.7 [4595/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o +#10 555.8 [4596/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o +#10 555.8 [4597/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o +#10 555.8 [4598/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o +#10 556.0 [4599/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o +#10 556.3 [4600/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o +#10 556.3 [4601/6823] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o +#10 556.5 [4602/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o +#10 556.8 [4603/6823] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o +#10 556.8 [4604/6823] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o +#10 556.9 [4605/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o +#10 557.1 [4606/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o +#10 557.1 [4607/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o +#10 557.3 [4608/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o +#10 557.4 [4609/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o +#10 557.5 [4610/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o +#10 557.7 [4611/6823] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o +#10 557.8 [4612/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o +#10 557.8 [4613/6823] Linking CXX static library lib/libkineto.a +#10 557.9 [4614/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Array.cpp.o +#10 558.2 [4615/6823] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o +#10 558.2 [4616/6823] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o +#10 558.2 [4617/6823] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o +#10 558.3 [4618/6823] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o +#10 558.3 [4619/6823] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o +#10 558.5 [4620/6823] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o +#10 558.6 [4621/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o +#10 558.6 [4622/6823] Building CXX object third_party/ideep/mkl-dnn/src/backend/dnnl/CMakeFiles/dnnl_graph_backend_dnnl.dir/patterns/single_op_pattern.cpp.o +#10 558.7 [4623/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o +#10 558.8 [4624/6823] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o +#10 558.9 [4625/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o +#10 558.9 [4626/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o +#10 559.0 [4627/6823] Linking CXX static library lib/libdnnl_graph.a +#10 559.0 [4628/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o +#10 559.0 [4629/6823] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o +#10 559.0 [4630/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o +#10 559.2 [4631/6823] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o +#10 559.3 [4632/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o +#10 559.3 [4633/6823] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o +#10 559.4 [4634/6823] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o +#10 559.4 [4635/6823] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o +#10 559.5 [4636/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o +#10 559.6 [4637/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o +#10 559.6 [4638/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o +#10 559.6 [4639/6823] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o +#10 559.6 [4640/6823] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o +#10 559.7 [4641/6823] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o +#10 559.7 [4642/6823] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o +#10 559.9 [4643/6823] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o +#10 560.1 [4644/6823] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o +#10 560.1 [4645/6823] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o +#10 560.1 [4646/6823] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o +#10 560.4 [4647/6823] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o +#10 560.4 [4648/6823] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o +#10 561.0 [4649/6823] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o +#10 561.8 [4650/6823] Building CXX object c10/test/CMakeFiles/c10_Bitset_test.dir/util/Bitset_test.cpp.o +#10 561.8 [4651/6823] Building CXX object c10/test/CMakeFiles/c10_StreamGuard_test.dir/core/StreamGuard_test.cpp.o +#10 561.9 [4652/6823] Building CXX object c10/test/CMakeFiles/c10_SymInt_test.dir/core/SymInt_test.cpp.o +#10 562.1 [4653/6823] Building CXX object c10/test/CMakeFiles/c10_CompileTimeFunctionPointer_test.dir/core/CompileTimeFunctionPointer_test.cpp.o +#10 562.2 [4654/6823] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o +#10 562.2 [4655/6823] Building CXX object c10/test/CMakeFiles/c10_registry_test.dir/util/registry_test.cpp.o +#10 562.2 [4656/6823] Building CXX object c10/test/CMakeFiles/c10_tempfile_test.dir/util/tempfile_test.cpp.o +#10 563.4 [4657/6823] Building CXX object c10/test/CMakeFiles/c10_InlineStreamGuard_test.dir/core/impl/InlineStreamGuard_test.cpp.o +#10 563.7 [4658/6823] Building CXX object c10/test/CMakeFiles/c10_complex_math_test.dir/util/complex_math_test.cpp.o +#10 563.9 [4659/6823] Building CXX object c10/test/CMakeFiles/c10_complex_test.dir/util/complex_test.cpp.o +#10 563.9 In file included from ../c10/test/util/complex_test.cpp:1: +#10 563.9 ../c10/test/util/complex_test_common.h: In member function ‘virtual void memory::TestMemory_ReinterpretCast_Test::TestBody()’: +#10 563.9 ../c10/test/util/complex_test_common.h:38:25: warning: ‘z’ is used uninitialized [-Wuninitialized] +#10 563.9 38 | c10::complex zz = *reinterpret_cast*>(&z); +#10 563.9 | ^~ +#10 563.9 ../c10/test/util/complex_test_common.h:37:25: note: ‘z’ declared here +#10 563.9 37 | std::complex z(1, 2); +#10 563.9 | ^ +#10 563.9 [4660/6823] Building CXX object c10/test/CMakeFiles/c10_TypeTraits_test.dir/util/TypeTraits_test.cpp.o +#10 564.3 [4661/6823] Building CXX object c10/test/CMakeFiles/c10_Device_test.dir/core/Device_test.cpp.o +#10 564.7 [4662/6823] Building CXX object c10/test/CMakeFiles/c10_DeviceGuard_test.dir/core/DeviceGuard_test.cpp.o +#10 564.7 [4663/6823] Building CXX object c10/test/CMakeFiles/c10_ThreadLocal_test.dir/util/ThreadLocal_test.cpp.o +#10 565.0 [4664/6823] Building CXX object c10/test/CMakeFiles/c10_SizesAndStrides_test.dir/core/impl/SizesAndStrides_test.cpp.o +#10 565.1 [4665/6823] Building CXX object c10/test/CMakeFiles/c10_ConstexprCrc_test.dir/util/ConstexprCrc_test.cpp.o +#10 565.2 [4666/6823] Building CXX object c10/test/CMakeFiles/c10_DeadlockDetection_test.dir/util/DeadlockDetection_test.cpp.o +#10 565.5 [4667/6823] Building CXX object c10/test/CMakeFiles/c10_C++17_test.dir/util/C++17_test.cpp.o +#10 565.8 [4668/6823] Building CXX object c10/test/CMakeFiles/c10_Half_test.dir/util/Half_test.cpp.o +#10 566.0 [4669/6823] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o +#10 566.2 [4670/6823] Building CXX object c10/test/CMakeFiles/c10_typeid_test.dir/util/typeid_test.cpp.o +#10 566.2 [4671/6823] Building CXX object c10/test/CMakeFiles/c10_Array_test.dir/util/Array_test.cpp.o +#10 566.2 [4672/6823] Linking CXX shared library lib/libc10.so +#10 566.4 [4673/6823] Building CXX object c10/test/CMakeFiles/c10_DispatchKeySet_test.dir/core/DispatchKeySet_test.cpp.o +#10 566.7 [4674/6823] Linking CXX executable bin/c10_intrusive_ptr_test +#10 566.7 [4675/6823] Linking CXX executable bin/c10_flags_test +#10 566.9 [4676/6823] Building CXX object c10/test/CMakeFiles/c10_Synchronized_test.dir/util/Synchronized_test.cpp.o +#10 566.9 [4677/6823] Linking CXX executable bin/c10_exception_test +#10 567.0 [4678/6823] Linking CXX executable bin/c10_logging_test +#10 567.0 [4679/6823] Building CXX object c10/test/CMakeFiles/c10_LeftRight_test.dir/util/LeftRight_test.cpp.o +#10 567.1 [4680/6823] Building CXX object c10/test/CMakeFiles/c10_TypeList_test.dir/util/TypeList_test.cpp.o +#10 567.1 [4681/6823] Linking CXX executable bin/c10_irange_test +#10 567.2 [4682/6823] Linking CXX executable bin/c10_bfloat16_test +#10 567.2 [4683/6823] Linking CXX executable bin/c10_either_test +#10 567.2 [4684/6823] Building CXX object c10/benchmark/CMakeFiles/c10_intrusive_ptr_benchmark.dir/intrusive_ptr_benchmark.cpp.o +#10 567.2 [4685/6823] Linking CXX executable bin/c10_string_view_test +#10 567.2 [4686/6823] Building CXX object c10/test/CMakeFiles/c10_TypeIndex_test.dir/util/TypeIndex_test.cpp.o +#10 567.3 [4687/6823] Linking CXX executable bin/c10_accumulate_test +#10 567.4 [4688/6823] Linking CXX executable bin/c10_registry_test +#10 567.4 [4689/6823] Linking CXX executable bin/c10_InlineStreamGuard_test +#10 567.4 [4690/6823] Linking CXX executable bin/c10_InlineDeviceGuard_test +#10 567.4 [4691/6823] Linking CXX executable bin/c10_Bitset_test +#10 567.4 [4692/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPException.cpp.o +#10 567.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 567.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 567.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 567.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 567.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 567.5 [4693/6823] Linking CXX executable bin/c10_complex_math_test +#10 567.5 [4694/6823] Linking CXX executable bin/c10_complex_test +#10 567.5 [4695/6823] Building CXX object c10/test/CMakeFiles/c10_ordered_preserving_dict_test.dir/util/ordered_preserving_dict_test.cpp.o +#10 567.6 [4696/6823] Linking CXX executable bin/c10_SymInt_test +#10 567.6 [4697/6823] Linking CXX executable bin/c10_CompileTimeFunctionPointer_test +#10 567.6 [4698/6823] Linking CXX executable bin/c10_ThreadLocal_test +#10 567.6 [4699/6823] Linking CXX executable bin/c10_tempfile_test +#10 567.6 [4700/6823] Linking CXX executable bin/c10_DispatchKeySet_test +#10 567.7 [4701/6823] Linking CXX executable bin/c10_StreamGuard_test +#10 567.7 [4702/6823] Linking CXX executable bin/c10_typeid_test +#10 567.8 [4703/6823] Linking CXX executable bin/c10_SizesAndStrides_test +#10 567.8 [4704/6823] Linking CXX executable bin/c10_TypeTraits_test +#10 567.8 [4705/6823] Linking CXX executable bin/c10_DeviceGuard_test +#10 567.8 [4706/6823] Linking CXX executable bin/c10_C++17_test +#10 567.8 [4707/6823] Linking CXX executable bin/c10_Device_test +#10 567.9 [4708/6823] Linking CXX executable bin/c10_DeadlockDetection_test +#10 567.9 [4709/6823] Linking CXX executable bin/c10_ordered_preserving_dict_test +#10 567.9 [4710/6823] Linking CXX executable bin/c10_LeftRight_test +#10 567.9 [4711/6823] Linking CXX executable bin/c10_Half_test +#10 568.0 [4712/6823] Linking CXX executable bin/c10_ConstexprCrc_test +#10 568.1 [4713/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPDeviceAssertionHost.cpp.o +#10 568.1 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 568.1 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 568.1 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 568.1 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 568.1 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 568.1 [4714/6823] Linking CXX executable bin/c10_Synchronized_test +#10 568.1 [4715/6823] Linking CXX executable bin/c10_TypeIndex_test +#10 568.1 [4716/6823] Linking CXX executable bin/c10_Array_test +#10 568.2 [4717/6823] Linking CXX executable bin/c10_TypeList_test +#10 568.2 [4718/6823] Linking CXX executable bin/c10_intrusive_ptr_benchmark +#10 568.2 [4719/6823] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o +#10 568.3 [4720/6823] Linking C shared library lib/libtorch_global_deps.so +#10 568.5 [4721/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPMiscFunctions.cpp.o +#10 568.5 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 568.5 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 568.5 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 568.5 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 568.5 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 568.5 [4722/6823] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o +#10 568.6 [4723/6823] Linking C executable sleef/bin/mkalias +#10 568.7 [4724/6823] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o +#10 568.7 [4725/6823] Linking C executable sleef/bin/mkrename +#10 568.9 [4726/6823] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o +#10 568.9 [4727/6823] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o +#10 568.9 [4728/6823] Linking C executable sleef/bin/mkdisp +#10 569.0 [4729/6823] Linking C executable sleef/bin/mkrename_gnuabi +#10 569.0 [4730/6823] Generating include/renameavx512f.h +#10 569.0 Generating renameavx512f.h: mkrename finz_ 8 16 avx512f +#10 569.1 [4731/6823] Generating include/renameavx512fnofma.h +#10 569.1 Generating renameavx512fnofma.h: mkrename cinz_ 8 16 avx512fnofma +#10 569.1 [4732/6823] Generating include/renameavx.h +#10 569.1 Generating renameavx.h: mkrename cinz_ 4 8 avx +#10 569.1 [4733/6823] Generating include/renameavx2128.h +#10 569.1 Generating renameavx2128.h: mkrename finz_ 2 4 avx2128 +#10 569.2 [4734/6823] Generating include/renameavx2.h +#10 569.2 Generating renameavx2.h: mkrename finz_ 4 8 avx2 +#10 569.2 [4735/6823] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o +#10 569.3 [4736/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/impl/HIPTest.cpp.o +#10 569.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 569.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 569.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 569.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 569.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 569.5 [4737/6823] Building CXX object caffe2/CMakeFiles/caffe2_nvrtc.dir/__/aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp.o +#10 569.5 In file included from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 569.5 111 | _(hipCtxGetCurrent) \ +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:119:39: note: in definition of macro ‘CREATE_MEMBER’ +#10 569.5 119 | #define CREATE_MEMBER(name) decltype(&name) name; +#10 569.5 | ^~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:120:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 569.5 120 | AT_FORALL_NVRTC(CREATE_MEMBER) +#10 569.5 | ^~~~~~~~~~~~~~~ +#10 569.5 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 569.5 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 569.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 569.5 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 In file included from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 569.5 111 | _(hipCtxGetCurrent) \ +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:119:39: note: in definition of macro ‘CREATE_MEMBER’ +#10 569.5 119 | #define CREATE_MEMBER(name) decltype(&name) name; +#10 569.5 | ^~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:120:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 569.5 120 | AT_FORALL_NVRTC(CREATE_MEMBER) +#10 569.5 | ^~~~~~~~~~~~~~~ +#10 569.5 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 569.5 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 569.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 569.5 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp: In function ‘at::cuda::NVRTC* at::cuda::load_nvrtc()’: +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 569.5 111 | _(hipCtxGetCurrent) \ +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:9:42: note: in definition of macro ‘CREATE_ASSIGN’ +#10 569.5 9 | #define CREATE_ASSIGN(name) self->name = name; +#10 569.5 | ^~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:10:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 569.5 10 | AT_FORALL_NVRTC(CREATE_ASSIGN) +#10 569.5 | ^~~~~~~~~~~~~~~ +#10 569.5 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 569.5 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 569.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 569.5 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:111:5: warning: ‘hipError_t hipCtxGetCurrent(ihipCtx_t**)’ is deprecated: This API is marked as deprecated and may not be supported in future releases. For more details please refer https://github.com/ROCm-Developer-Tools/HIP/blob/master/docs/markdown/hip_deprecated_api_list.md [-Wdeprecated-declarations] +#10 569.5 111 | _(hipCtxGetCurrent) \ +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:9:42: note: in definition of macro ‘CREATE_ASSIGN’ +#10 569.5 9 | #define CREATE_ASSIGN(name) self->name = name; +#10 569.5 | ^~~~ +#10 569.5 ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:10:3: note: in expansion of macro ‘AT_FORALL_NVRTC’ +#10 569.5 10 | AT_FORALL_NVRTC(CREATE_ASSIGN) +#10 569.5 | ^~~~~~~~~~~~~~~ +#10 569.5 In file included from /opt/rocm-5.4.2/include/hip/hip_runtime.h:113, +#10 569.5 from ../aten/src/ATen/hip/ATenHIPGeneral.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.h:4, +#10 569.5 from ../aten/src/ATen/hip/nvrtc_stub/ATenNVRTC.cpp:2: +#10 569.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:4338:12: note: declared here +#10 569.5 4338 | hipError_t hipCtxGetCurrent(hipCtx_t* ctx); +#10 569.5 | ^~~~~~~~~~~~~~~~ +#10 569.5 [4738/6823] Building CXX object c10/hip/test/CMakeFiles/c10_hip_HIPTest.dir/impl/HIPTest.cpp.o +#10 569.6 [4739/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPMallocAsyncAllocator.cpp.o +#10 569.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 569.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 569.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 569.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 569.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 569.6 [4740/6823] Linking C executable sleef/bin/mkmasked_gnuabi +#10 569.7 [4741/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPFunctions.cpp.o +#10 569.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 569.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 569.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 569.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 569.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 569.7 [4742/6823] Generating include/renamefma4.h +#10 569.7 Generating renamefma4.h: mkrename finz_ 4 8 fma4 +#10 569.7 [4743/6823] Linking CXX shared library lib/libcaffe2_nvrtc.so +#10 569.7 [4744/6823] Generating dispsse.c +#10 570.3 [4745/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPStream.cpp.o +#10 570.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 570.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 570.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 570.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 570.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 570.3 [4746/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2.dir/sleefsimdsp.c.o +#10 570.3 [4747/6823] Generating include/renamesse4.h +#10 570.3 Generating renamesse4.h: mkrename cinz_ 2 4 sse4 +#10 570.3 [4748/6823] Building CXX object c10/test/CMakeFiles/c10_optional_test.dir/util/optional_test.cpp.o +#10 570.4 [4749/6823] Building CXX object c10/test/CMakeFiles/c10_Metaprogramming_test.dir/util/Metaprogramming_test.cpp.o +#10 570.4 [4750/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/impl/HIPGuardImpl.cpp.o +#10 570.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 570.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 570.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 570.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 570.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 570.4 [4751/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512fnofma.dir/sleefsimdsp.c.o +#10 570.5 [4752/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2.dir/sleefsimddp.c.o +#10 570.6 [4753/6823] Linking CXX executable bin/c10_optional_test +#10 570.6 [4754/6823] Linking CXX executable bin/c10_Metaprogramming_test +#10 570.6 [4755/6823] Generating include/renamecuda.h +#10 570.6 Generating renamecuda.h: mkrename finz_ 1 1 cuda +#10 570.6 [4756/6823] Generating ../../../include/sleef.h +#10 570.6 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ +#10 570.6 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ sse2 +#10 570.6 Generating sleef.h: mkrename cinz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ sse4 +#10 570.6 Generating sleef.h: mkrename cinz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ +#10 570.6 Generating sleef.h: mkrename cinz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ avx +#10 570.6 Generating sleef.h: mkrename finz_ 4 8 __m256d __m256 __m128i struct\ {\ __m128i\ x,\ y;\ } __AVX__ fma4 +#10 570.6 Generating sleef.h: mkrename finz_ 4 8 __m256d __m256 __m128i __m256i __AVX__ avx2 +#10 570.6 Generating sleef.h: mkrename finz_ 2 4 __m128d __m128 __m128i __m128i __SSE2__ avx2128 +#10 570.6 Generating sleef.h: mkrename finz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ +#10 570.6 Generating sleef.h: mkrename finz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ avx512f +#10 570.6 Generating sleef.h: mkrename cinz_ 8 16 __m512d __m512 __m256i __m512i __AVX512F__ avx512fnofma +#10 570.6 Generating sleef.h: mkrename cinz_ 1 1 double float int32_t int32_t __STDC__ purec +#10 570.6 Generating sleef.h: mkrename finz_ 1 1 double float int32_t int32_t FP_FAST_FMA purecfma +#10 570.7 [4757/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimddp.c.o +#10 570.7 [4758/6823] Generating include/renamepurecfma_scalar.h +#10 570.7 Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma +#10 570.7 [4759/6823] Generating include/renamesse2.h +#10 570.7 Generating renamesse2.h: mkrename cinz_ 2 4 sse2 +#10 570.7 [4760/6823] Generating include/renamepurec_scalar.h +#10 570.7 Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec +#10 570.9 [4761/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2.dir/sleefsimdsp.c.o +#10 571.2 [4762/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse4.dir/sleefsimdsp.c.o +#10 571.4 [4763/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512fnofma.dir/sleefsimddp.c.o +#10 571.4 [4764/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o +#10 571.5 [4765/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o +#10 571.5 [4766/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse4.dir/sleefsimddp.c.o +#10 571.5 [4767/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512fnofma.dir/sleefsimdsp.c.o +#10 571.9 [4768/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o +#10 572.0 [4769/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o +#10 572.0 [4770/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512fnofma.dir/sleefsimddp.c.o +#10 572.1 [4771/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o +#10 572.3 [4772/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o +#10 572.3 [4773/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimdsp.c.o +#10 572.5 [4774/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2128.dir/sleefsimdsp.c.o +#10 572.5 [4775/6823] Generating renamedsp128.h +#10 572.7 [4776/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx2128.dir/sleefsimddp.c.o +#10 572.7 [4777/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse4.dir/sleefsimddp.c.o +#10 573.3 [4778/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx.dir/sleefsimdsp.c.o +#10 573.3 [4779/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimdsp.c.o +#10 573.5 [4780/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx2128.dir/sleefsimddp.c.o +#10 573.5 [4781/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o +#10 573.6 [4782/6823] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o +#10 573.7 [4783/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetfma4.dir/sleefsimdsp.c.o +#10 573.8 [4784/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx.dir/sleefsimddp.c.o +#10 573.8 [4785/6823] Generating alias_avx512f.h +#10 573.9 [4786/6823] Generating dispavx.c +#10 574.0 [4787/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetfma4.dir/sleefsimddp.c.o +#10 574.5 [4788/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimdsp.c.o +#10 574.6 [4789/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512f.dir/sleefsimdsp.c.o +#10 574.6 [4790/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimdsp.c.o +#10 574.6 [4791/6823] Generating renamedsp256.h +#10 574.7 [4792/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx.dir/sleefsimddp.c.o +#10 574.8 [4793/6823] Building C object sleef/src/libm/CMakeFiles/dispsse_obj.dir/dispsse.c.o +#10 574.9 [4794/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetsse2.dir/sleefsimddp.c.o +#10 575.1 [4795/6823] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimdsp.c.o +#10 575.1 [4796/6823] Building C object sleef/src/libm/CMakeFiles/sleefdetavx512f.dir/sleefsimddp.c.o +#10 575.3 [4797/6823] Building C object sleef/src/libm/CMakeFiles/sleeffma4.dir/sleefsimddp.c.o +#10 575.4 [4798/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimdsp.c.o +#10 575.4 [4799/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o +#10 575.6 [4800/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefld.c.o +#10 575.6 [4801/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefqp.c.o +#10 575.9 [4802/6823] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o +#10 575.9 [4803/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_AVX2.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 575.9 [4804/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512f.dir/sleefsimdsp.c.o +#10 576.0 [4805/6823] Linking C executable sleef/bin/addSuffix +#10 576.0 [4806/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_DEFAULT.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 576.0 [4807/6823] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o +#10 576.0 [4808/6823] Running C++/Python protocol buffer compiler on /pytorch/caffe2/proto/torch.proto +#10 576.1 [4809/6823] Running C++/Python protocol buffer compiler on /pytorch/caffe2/proto/caffe2.proto +#10 576.2 [4810/6823] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o +#10 576.2 [4811/6823] Building C object sleef/src/libm/CMakeFiles/sleefavx512f.dir/sleefsimddp.c.o +#10 576.4 [4812/6823] Generating ../../../torch/utils/data/datapipes/datapipe.pyi +#10 576.4 [4813/6823] Building C object sleef/src/libm/CMakeFiles/sleefsse2.dir/sleefsimddp.c.o +#10 576.5 [4814/6823] Stringify NVFUSER runtime source file +#10 576.6 [4815/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefsp.c.o +#10 576.6 [4816/6823] Stringify NVFUSER runtime source file +#10 576.7 [4817/6823] Stringify NVFUSER runtime source file +#10 576.7 [4818/6823] Stringify NVFUSER runtime source file +#10 576.7 [4819/6823] Generating ../../../torch/version.py +#10 576.7 [4820/6823] Stringify NVFUSER runtime source file +#10 576.8 [4821/6823] Stringify NVFUSER runtime source file +#10 576.8 [4822/6823] Stringify NVFUSER runtime source file +#10 576.8 [4823/6823] Stringify NVFUSER runtime source file +#10 576.8 [4824/6823] Building C object sleef/src/libm/CMakeFiles/sleef.dir/sleefdp.c.o +#10 576.9 [4825/6823] Stringify NVFUSER runtime source file +#10 576.9 [4826/6823] Stringify NVFUSER runtime source file +#10 576.9 [4827/6823] Stringify NVFUSER runtime source file +#10 576.9 [4828/6823] Stringify NVFUSER runtime source file +#10 576.9 [4829/6823] Stringify NVFUSER runtime source file +#10 576.9 [4830/6823] Stringify NVFUSER runtime source file +#10 577.0 [4831/6823] Stringify NVFUSER runtime source file +#10 577.0 [4832/6823] Stringify NVFUSER runtime source file +#10 577.0 [4833/6823] Stringify NVFUSER runtime source file +#10 577.0 [4834/6823] Stringify NVFUSER runtime source file +#10 577.0 [4835/6823] Stringify NVFUSER runtime source file +#10 577.1 [4836/6823] Stringify NVFUSER runtime source file +#10 577.1 [4837/6823] Stringify NVFUSER runtime source file +#10 577.1 [4838/6823] Stringify NVFUSER runtime source file +#10 577.1 [4839/6823] Stringify NVFUSER runtime source file +#10 577.1 [4840/6823] Stringify NVFUSER runtime source file +#10 577.1 [4841/6823] Stringify NVFUSER runtime source file +#10 577.2 [4842/6823] Stringify NVFUSER runtime source file +#10 577.2 [4843/6823] Stringify NVFUSER runtime source file +#10 577.2 [4844/6823] Stringify NVFUSER runtime source file +#10 577.2 [4845/6823] Stringify NVFUSER runtime source file +#10 577.2 [4846/6823] Stringify NVFUSER runtime source file +#10 577.7 [4847/6823] Building C object sleef/src/libm/CMakeFiles/dispavx_obj.dir/dispavx.c.o +#10 577.7 [4848/6823] Linking C static library sleef/lib/libsleef.a +#10 577.9 [4849/6823] Generating sources +#10 578.7 [4850/6823] Building CXX object c10/hip/CMakeFiles/c10_hip.dir/HIPCachingAllocator.cpp.o +#10 578.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#10 578.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#10 578.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#10 578.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#10 578.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#10 578.8 [4851/6823] Linking CXX shared library lib/libc10_hip.so +#10 579.0 [4852/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_1_var_test +#10 579.0 [4853/6823] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/torch.pb.cc.o +#10 579.0 [4854/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_same_block +#10 579.0 [4855/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_catches_thread_and_block_and_device +#10 579.0 [4856/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_multiple_blocks +#10 579.0 [4857/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_from_2_processes +#10 579.0 [4858/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_multiple_writes_from_blocks_and_threads +#10 579.1 [4859/6823] Linking CXX executable bin/c10_hip_HIPAssertionsTest_catches_stream +#10 579.1 [4860/6823] Linking CXX executable bin/c10_hip_HIPTest +#10 579.4 [4861/6823] Generating ../../torch/csrc/autograd/generated/Functions.cpp, ../../torch/csrc/autograd/generated/VariableType_0.cpp, ../../torch/csrc/autograd/generated/VariableType_1.cpp, ../../torch/csrc/autograd/generated/VariableType_2.cpp, ../../torch/csrc/autograd/generated/VariableType_3.cpp, ../../torch/csrc/autograd/generated/VariableType_4.cpp, ../../torch/csrc/autograd/generated/TraceType_0.cpp, ../../torch/csrc/autograd/generated/TraceType_1.cpp, ../../torch/csrc/autograd/generated/TraceType_2.cpp, ../../torch/csrc/autograd/generated/TraceType_3.cpp, ../../torch/csrc/autograd/generated/TraceType_4.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, ../../torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, ../../torch/csrc/lazy/generated/LazyNativeFunctions.cpp, ../../torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, ../../torch/csrc/lazy/generated/RegisterLazy.cpp, ../../torch/csrc/autograd/generated/Functions.h, ../../torch/csrc/autograd/generated/variable_factories.h, ../../torch/csrc/autograd/generated/VariableType.h, ../../torch/csrc/lazy/generated/LazyIr.h, ../../torch/csrc/lazy/generated/LazyNonNativeIr.h, ../../torch/csrc/lazy/generated/LazyNativeFunctions.h, ../../torch/csrc/autograd/generated/python_functions_0.cpp, ../../torch/csrc/autograd/generated/python_functions_1.cpp, ../../torch/csrc/autograd/generated/python_functions_2.cpp, ../../torch/csrc/autograd/generated/python_functions_3.cpp, ../../torch/csrc/autograd/generated/python_functions_4.cpp, ../../torch/csrc/autograd/generated/python_variable_methods.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_0.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_1.cpp, ../../torch/csrc/autograd/generated/python_torch_functions_2.cpp, ../../torch/csrc/autograd/generated/python_nn_functions.cpp, ../../torch/csrc/autograd/generated/python_fft_functions.cpp, ../../torch/csrc/autograd/generated/python_linalg_functions.cpp, ../../torch/csrc/autograd/generated/python_nested_functions.cpp, ../../torch/csrc/autograd/generated/python_sparse_functions.cpp, ../../torch/csrc/autograd/generated/python_special_functions.cpp, ../../torch/csrc/autograd/generated/python_return_types.cpp, ../../torch/csrc/autograd/generated/python_enum_tag.cpp, ../../torch/csrc/autograd/generated/python_functions.h, ../../torch/testing/_internal/generated/annotated_fn_args.py +#10 579.8 [4862/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o +#10 580.3 [4863/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o +#10 582.2 [4864/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o +#10 582.6 [4865/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o +#10 582.6 [4866/6823] Building CXX object caffe2/proto/CMakeFiles/Caffe2_PROTO.dir/caffe2.pb.cc.o +#10 582.8 [4867/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o +#10 583.1 [4868/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o +#10 583.9 [4869/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o +#10 585.2 [4870/6823] Generating ../../../torch/_C/__init__.pyi, ../../../torch/_C/_VariableFunctions.pyi, ../../../torch/nn/functional.pyi +#10 585.5 [4871/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o +#10 586.3 [4872/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o +#10 586.7 [4873/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o +#10 587.0 [4874/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o +#10 587.6 [4875/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o +#10 589.0 [4876/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o +#10 589.2 [4877/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o +#10 589.3 [4878/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNativeTBB.cpp.o +#10 589.4 [4879/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o +#10 589.5 [4880/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o +#10 590.4 [4881/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o +#10 591.3 [4882/6823] Building CXX object c10/test/CMakeFiles/c10_SmallVectorTest.dir/util/SmallVectorTest.cpp.o +#10 591.5 [4883/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o +#10 591.6 [4884/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o +#10 591.6 [4885/6823] Linking CXX executable bin/c10_SmallVectorTest +#10 591.7 [4886/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o +#10 591.9 [4887/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o +#10 592.4 [4888/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o +#10 593.1 [4889/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o +#10 593.1 [4890/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o +#10 594.2 [4891/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o +#10 595.1 [4892/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o +#10 596.4 [4893/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o +#10 596.6 [4894/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o +#10 596.9 [4895/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o +#10 596.9 In file included from ../c10/core/ScalarType.h:3, +#10 596.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 596.9 from ../aten/src/ATen/Dispatch.h:3, +#10 596.9 from ../aten/src/ATen/ScalarOps.cpp:2: +#10 596.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 596.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 596.9 37 | res = *tempRes; +#10 596.9 | ~~~~^~~~~~~~~~ +#10 596.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 596.9 28 | uint32_t tmp = src; +#10 596.9 | ^~~ +#10 597.0 [4896/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o +#10 597.1 [4897/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o +#10 598.4 [4898/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o +#10 599.0 [4899/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o +#10 600.3 [4900/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o +#10 601.2 [4901/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o +#10 601.5 [4902/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o +#10 601.7 [4903/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o +#10 601.9 [4904/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o +#10 602.0 [4905/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorUtils.cpp.o +#10 602.4 [4906/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o +#10 602.5 [4907/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o +#10 602.7 [4908/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o +#10 602.9 [4909/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o +#10 603.3 [4910/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o +#10 603.7 [4911/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o +#10 604.1 [4912/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o +#10 604.6 [4913/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/ORTHooksInterface.cpp.o +#10 604.6 [4914/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o +#10 604.9 [4915/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o +#10 605.1 [4916/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o +#10 607.9 [4917/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o +#10 608.3 [4918/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o +#10 608.3 In file included from ../c10/core/ScalarType.h:3, +#10 608.3 from ../c10/core/StorageImpl.h:4, +#10 608.3 from ../c10/core/Storage.h:3, +#10 608.3 from ../c10/core/TensorImpl.h:8, +#10 608.3 from ../c10/core/GeneratorImpl.h:8, +#10 608.3 from ../aten/src/ATen/core/Generator.h:22, +#10 608.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 608.3 from ../aten/src/ATen/Context.h:3, +#10 608.3 from ../aten/src/ATen/Utils.cpp:1: +#10 608.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 608.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 608.3 37 | res = *tempRes; +#10 608.3 | ~~~~^~~~~~~~~~ +#10 608.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 608.3 28 | uint32_t tmp = src; +#10 608.3 | ^~~ +#10 609.4 [4919/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o +#10 610.9 [4920/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o +#10 617.9 [4921/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o +#10 618.2 [4922/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o +#10 620.3 [4923/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o +#10 620.5 [4924/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o +#10 621.4 [4925/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o +#10 623.0 [4926/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o +#10 624.2 [4927/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o +#10 624.5 [4928/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o +#10 624.6 [4929/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o +#10 624.9 [4930/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o +#10 628.4 [4931/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o +#10 629.8 [4932/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o +#10 630.1 [4933/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o +#10 630.8 [4934/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o +#10 632.6 [4935/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o +#10 634.2 [4936/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o +#10 636.3 [4937/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o +#10 637.1 [4938/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o +#10 637.7 [4939/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o +#10 638.6 [4940/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o +#10 638.8 [4941/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o +#10 638.9 [4942/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o +#10 639.0 [4943/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o +#10 639.2 [4944/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o +#10 641.4 [4945/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o +#10 641.5 [4946/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o +#10 641.8 [4947/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o +#10 642.1 [4948/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o +#10 642.1 [4949/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o +#10 643.1 [4950/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o +#10 643.2 [4951/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o +#10 643.9 [4952/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o +#10 646.0 [4953/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o +#10 646.1 [4954/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o +#10 646.1 [4955/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o +#10 646.3 [4956/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o +#10 646.4 [4957/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o +#10 646.7 [4958/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o +#10 647.8 [4959/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o +#10 648.2 [4960/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o +#10 648.4 [4961/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o +#10 648.8 [4962/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o +#10 649.2 [4963/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o +#10 649.8 [4964/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o +#10 650.3 [4965/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o +#10 650.5 [4966/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o +#10 650.6 [4967/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o +#10 651.0 [4968/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o +#10 651.7 [4969/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o +#10 651.7 [4970/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o +#10 651.9 [4971/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o +#10 652.1 [4972/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o +#10 652.3 [4973/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o +#10 653.2 [4974/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o +#10 654.6 [4975/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o +#10 654.7 [4976/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_AVX2.dir/__/aten/src/ATen/test/vec_test_all_types.cpp.o +#10 655.1 [4977/6823] Linking CXX executable bin/vec_test_all_types_AVX2 +#10 655.6 [4978/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o +#10 656.5 [4979/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o +#10 656.6 [4980/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o +#10 657.2 [4981/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o +#10 659.0 [4982/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o +#10 659.0 [4983/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o +#10 659.1 [4984/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o +#10 659.2 [4985/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o +#10 659.2 [4986/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o +#10 659.5 [4987/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o +#10 660.3 [4988/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o +#10 660.3 [4989/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o +#10 661.1 [4990/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o +#10 661.2 [4991/6823] Building CXX object caffe2/CMakeFiles/vec_test_all_types_DEFAULT.dir/__/aten/src/ATen/test/vec_test_all_types.cpp.o +#10 661.4 [4992/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o +#10 661.5 [4993/6823] Linking CXX executable bin/vec_test_all_types_DEFAULT +#10 661.7 [4994/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o +#10 662.0 [4995/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o +#10 662.0 [4996/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o +#10 663.4 [4997/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o +#10 665.2 [4998/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o +#10 665.6 [4999/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o +#10 665.8 [5000/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o +#10 666.2 [5001/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o +#10 666.9 [5002/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o +#10 667.0 [5003/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o +#10 667.2 [5004/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o +#10 667.7 [5005/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o +#10 668.1 [5006/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o +#10 668.2 [5007/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o +#10 668.3 [5008/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o +#10 669.0 [5009/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o +#10 669.0 In file included from ../c10/core/ScalarType.h:3, +#10 669.0 from ../aten/src/ATen/native/BlasKernel.cpp:6: +#10 669.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 669.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 669.0 37 | res = *tempRes; +#10 669.0 | ~~~~^~~~~~~~~~ +#10 669.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 669.0 28 | uint32_t tmp = src; +#10 669.0 | ^~~ +#10 669.1 [5010/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o +#10 669.9 [5011/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o +#10 671.0 [5012/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o +#10 671.2 [5013/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o +#10 671.2 In file included from ../c10/core/ScalarType.h:3, +#10 671.2 from ../c10/core/Scalar.h:11, +#10 671.2 from aten/src/ATen/core/TensorBody.h:16, +#10 671.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 671.2 from ../aten/src/ATen/native/Activation.cpp:4: +#10 671.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 671.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 671.2 37 | res = *tempRes; +#10 671.2 | ~~~~^~~~~~~~~~ +#10 671.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 671.2 28 | uint32_t tmp = src; +#10 671.2 | ^~~ +#10 673.4 [5014/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o +#10 673.4 In file included from ../c10/core/ScalarType.h:3, +#10 673.4 from ../c10/core/Scalar.h:11, +#10 673.4 from aten/src/ATen/core/TensorBody.h:16, +#10 673.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 673.4 from ../aten/src/ATen/native/Blas.cpp:2: +#10 673.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 673.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 673.4 37 | res = *tempRes; +#10 673.4 | ~~~~^~~~~~~~~~ +#10 673.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 673.4 28 | uint32_t tmp = src; +#10 673.4 | ^~~ +#10 673.8 [5015/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o +#10 673.8 In file included from ../c10/core/ScalarType.h:3, +#10 673.8 from ../aten/src/ATen/OpMathType.h:3, +#10 673.8 from ../aten/src/ATen/native/CPUBlas.h:3, +#10 673.8 from ../aten/src/ATen/native/CPUBlas.cpp:2: +#10 673.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 673.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 673.8 37 | res = *tempRes; +#10 673.8 | ~~~~^~~~~~~~~~ +#10 673.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 673.8 28 | uint32_t tmp = src; +#10 673.8 | ^~~ +#10 674.3 [5016/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o +#10 674.7 [5017/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o +#10 674.9 [5018/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o +#10 675.2 [5019/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o +#10 675.2 In file included from ../c10/core/ScalarType.h:3, +#10 675.2 from ../c10/core/Scalar.h:11, +#10 675.2 from aten/src/ATen/core/TensorBody.h:16, +#10 675.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 675.2 from ../aten/src/ATen/native/Bucketization.cpp:2: +#10 675.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 675.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 675.2 37 | res = *tempRes; +#10 675.2 | ~~~~^~~~~~~~~~ +#10 675.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 675.2 28 | uint32_t tmp = src; +#10 675.2 | ^~~ +#10 675.6 [5020/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o +#10 675.6 In file included from ../c10/core/ScalarType.h:3, +#10 675.6 from ../c10/core/Scalar.h:11, +#10 675.6 from aten/src/ATen/core/TensorBody.h:16, +#10 675.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 675.6 from ../aten/src/ATen/native/ConvolutionMM2d.cpp:2: +#10 675.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 675.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 675.6 37 | res = *tempRes; +#10 675.6 | ~~~~^~~~~~~~~~ +#10 675.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 675.6 28 | uint32_t tmp = src; +#10 675.6 | ^~~ +#10 676.3 [5021/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o +#10 676.5 [5022/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o +#10 676.9 [5023/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o +#10 677.2 [5024/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o +#10 677.4 [5025/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o +#10 677.4 In file included from ../c10/core/ScalarType.h:3, +#10 677.4 from ../c10/core/Scalar.h:11, +#10 677.4 from aten/src/ATen/core/TensorBody.h:16, +#10 677.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 677.4 from ../aten/src/ATen/native/Col2Im.cpp:2: +#10 677.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 677.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 677.4 37 | res = *tempRes; +#10 677.4 | ~~~~^~~~~~~~~~ +#10 677.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 677.4 28 | uint32_t tmp = src; +#10 677.4 | ^~~ +#10 678.0 [5026/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o +#10 678.3 [5027/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o +#10 679.1 [5028/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o +#10 679.4 [5029/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o +#10 681.2 [5030/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o +#10 681.8 [5031/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o +#10 681.9 [5032/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o +#10 682.2 [5033/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o +#10 682.2 [5034/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o +#10 682.6 [5035/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o +#10 682.6 [5036/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o +#10 684.2 [5037/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o +#10 684.5 [5038/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o +#10 685.5 [5039/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o +#10 685.5 [5040/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o +#10 685.5 [5041/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBridge.cpp.o +#10 686.4 [5042/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o +#10 686.4 In file included from ../c10/core/ScalarType.h:3, +#10 686.4 from ../c10/core/Scalar.h:11, +#10 686.4 from aten/src/ATen/core/TensorBody.h:16, +#10 686.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 686.4 from ../aten/src/ATen/native/ForeachOpsKernels.cpp:2: +#10 686.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 686.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 686.4 37 | res = *tempRes; +#10 686.4 | ~~~~^~~~~~~~~~ +#10 686.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 686.4 28 | uint32_t tmp = src; +#10 686.4 | ^~~ +#10 687.2 [5043/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o +#10 687.2 In file included from ../c10/core/ScalarType.h:3, +#10 687.2 from ../c10/core/Scalar.h:11, +#10 687.2 from aten/src/ATen/core/TensorBody.h:16, +#10 687.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 687.2 from ../aten/src/ATen/native/Distributions.cpp:2: +#10 687.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 687.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 687.2 37 | res = *tempRes; +#10 687.2 | ~~~~^~~~~~~~~~ +#10 687.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 687.2 28 | uint32_t tmp = src; +#10 687.2 | ^~~ +#10 687.7 [5044/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o +#10 687.8 [5045/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o +#10 688.6 [5046/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o +#10 688.8 [5047/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o +#10 688.8 [5048/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o +#10 688.8 [5049/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o +#10 689.6 [5050/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o +#10 689.7 [5051/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o +#10 689.7 In file included from ../c10/core/ScalarType.h:3, +#10 689.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 689.7 from ../aten/src/ATen/Dispatch.h:3, +#10 689.7 from ../aten/src/ATen/native/EmbeddingBag.cpp:2: +#10 689.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 689.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 689.7 37 | res = *tempRes; +#10 689.7 | ~~~~^~~~~~~~~~ +#10 689.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 689.7 28 | uint32_t tmp = src; +#10 689.7 | ^~~ +#10 690.6 [5052/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o +#10 692.5 [5053/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o +#10 692.5 [5054/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o +#10 692.6 [5055/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o +#10 693.2 [5056/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o +#10 693.3 [5057/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o +#10 693.8 [5058/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o +#10 693.9 [5059/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o +#10 694.1 [5060/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o +#10 695.1 [5061/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o +#10 695.8 [5062/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o +#10 696.9 [5063/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o +#10 696.9 In file included from ../c10/core/ScalarType.h:3, +#10 696.9 from ../c10/core/Scalar.h:11, +#10 696.9 from aten/src/ATen/core/TensorBody.h:16, +#10 696.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 696.9 from ../aten/src/ATen/native/LossNLL2d.cpp:2: +#10 696.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 696.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 696.9 37 | res = *tempRes; +#10 696.9 | ~~~~^~~~~~~~~~ +#10 696.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 696.9 28 | uint32_t tmp = src; +#10 696.9 | ^~~ +#10 698.3 [5064/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o +#10 698.9 [5065/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o +#10 699.0 [5066/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o +#10 699.0 In file included from ../c10/core/ScalarType.h:3, +#10 699.0 from ../c10/core/Scalar.h:11, +#10 699.0 from aten/src/ATen/core/TensorBody.h:16, +#10 699.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 699.0 from ../aten/src/ATen/native/LossNLL.cpp:2: +#10 699.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 699.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 699.0 37 | res = *tempRes; +#10 699.0 | ~~~~^~~~~~~~~~ +#10 699.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 699.0 28 | uint32_t tmp = src; +#10 699.0 | ^~~ +#10 699.3 [5067/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o +#10 700.2 [5068/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o +#10 700.7 [5069/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o +#10 700.7 In file included from ../c10/core/ScalarType.h:3, +#10 700.7 from ../c10/core/Scalar.h:11, +#10 700.7 from aten/src/ATen/core/TensorBody.h:16, +#10 700.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 700.7 from ../aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp:2: +#10 700.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 700.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 700.7 37 | res = *tempRes; +#10 700.7 | ~~~~^~~~~~~~~~ +#10 700.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 700.7 28 | uint32_t tmp = src; +#10 700.7 | ^~~ +#10 700.9 [5070/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o +#10 700.9 In file included from ../c10/core/ScalarType.h:3, +#10 700.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 700.9 from ../aten/src/ATen/Dispatch.h:3, +#10 700.9 from ../aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp:2: +#10 700.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 700.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 700.9 37 | res = *tempRes; +#10 700.9 | ~~~~^~~~~~~~~~ +#10 700.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 700.9 28 | uint32_t tmp = src; +#10 700.9 | ^~~ +#10 700.9 [5071/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o +#10 701.0 [5072/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o +#10 701.8 [5073/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o +#10 701.8 In file included from ../c10/core/ScalarType.h:3, +#10 701.8 from ../c10/core/Scalar.h:11, +#10 701.8 from aten/src/ATen/core/TensorBody.h:16, +#10 701.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 701.8 from ../aten/src/ATen/native/LinearAlgebra.cpp:2: +#10 701.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 701.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 701.8 37 | res = *tempRes; +#10 701.8 | ~~~~^~~~~~~~~~ +#10 701.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 701.8 28 | uint32_t tmp = src; +#10 701.8 | ^~~ +#10 701.8 [5074/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o +#10 702.1 [5075/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o +#10 703.4 [5076/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o +#10 703.4 In file included from ../c10/core/ScalarType.h:3, +#10 703.4 from ../c10/core/Scalar.h:11, +#10 703.4 from aten/src/ATen/core/TensorBody.h:16, +#10 703.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 703.4 from ../aten/src/ATen/native/NaiveDilatedConvolution.cpp:2: +#10 703.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 703.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 703.4 37 | res = *tempRes; +#10 703.4 | ~~~~^~~~~~~~~~ +#10 703.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 703.4 28 | uint32_t tmp = src; +#10 703.4 | ^~~ +#10 704.7 [5077/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o +#10 704.8 [5078/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o +#10 705.1 [5079/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o +#10 705.9 [5080/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o +#10 705.9 In file included from ../c10/core/ScalarType.h:3, +#10 705.9 from ../c10/core/Scalar.h:11, +#10 705.9 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 705.9 from ../aten/src/ATen/native/RangeFactories.cpp:2: +#10 705.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 705.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 705.9 37 | res = *tempRes; +#10 705.9 | ~~~~^~~~~~~~~~ +#10 705.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 705.9 28 | uint32_t tmp = src; +#10 705.9 | ^~~ +#10 707.4 [5081/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o +#10 707.4 [5082/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o +#10 707.4 In file included from ../c10/core/ScalarType.h:3, +#10 707.4 from ../c10/core/Scalar.h:11, +#10 707.4 from aten/src/ATen/core/TensorBody.h:16, +#10 707.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 707.4 from ../aten/src/ATen/native/Normalization.cpp:2: +#10 707.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 707.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 707.4 37 | res = *tempRes; +#10 707.4 | ~~~~^~~~~~~~~~ +#10 707.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 707.4 28 | uint32_t tmp = src; +#10 707.4 | ^~~ +#10 707.7 [5083/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o +#10 707.9 [5084/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o +#10 708.8 [5085/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o +#10 709.4 [5086/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o +#10 709.5 [5087/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o +#10 710.0 [5088/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o +#10 710.0 In file included from ../c10/core/ScalarType.h:3, +#10 710.0 from ../c10/core/Scalar.h:11, +#10 710.0 from aten/src/ATen/core/TensorBody.h:16, +#10 710.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 710.0 from ../aten/src/ATen/native/Scalar.cpp:2: +#10 710.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 710.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 710.0 37 | res = *tempRes; +#10 710.0 | ~~~~^~~~~~~~~~ +#10 710.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 710.0 28 | uint32_t tmp = src; +#10 710.0 | ^~~ +#10 711.0 [5089/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o +#10 712.9 [5090/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o +#10 712.9 In file included from ../c10/core/ScalarType.h:3, +#10 712.9 from ../c10/core/Scalar.h:11, +#10 712.9 from aten/src/ATen/core/TensorBody.h:16, +#10 712.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 712.9 from ../aten/src/ATen/native/ReflectionPad.cpp:2: +#10 712.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 712.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 712.9 37 | res = *tempRes; +#10 712.9 | ~~~~^~~~~~~~~~ +#10 712.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 712.9 28 | uint32_t tmp = src; +#10 712.9 | ^~~ +#10 713.1 [5091/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o +#10 713.1 In file included from ../c10/core/ScalarType.h:3, +#10 713.1 from ../c10/core/Scalar.h:11, +#10 713.1 from aten/src/ATen/core/TensorBody.h:16, +#10 713.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 713.1 from ../aten/src/ATen/native/ReduceOps.cpp:4: +#10 713.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 713.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 713.1 37 | res = *tempRes; +#10 713.1 | ~~~~^~~~~~~~~~ +#10 713.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 713.1 28 | uint32_t tmp = src; +#10 713.1 | ^~~ +#10 714.5 [5092/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o +#10 714.9 [5093/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o +#10 715.1 [5094/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o +#10 715.1 In file included from ../c10/core/ScalarType.h:3, +#10 715.1 from ../c10/core/Scalar.h:11, +#10 715.1 from aten/src/ATen/core/TensorBody.h:16, +#10 715.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 715.1 from ../aten/src/ATen/native/SoftMax.cpp:2: +#10 715.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 715.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 715.1 37 | res = *tempRes; +#10 715.1 | ~~~~^~~~~~~~~~ +#10 715.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 715.1 28 | uint32_t tmp = src; +#10 715.1 | ^~~ +#10 715.1 [5095/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o +#10 715.1 In file included from ../c10/core/ScalarType.h:3, +#10 715.1 from ../c10/core/Scalar.h:11, +#10 715.1 from ../aten/src/ATen/native/ReductionType.h:3, +#10 715.1 from ../aten/src/ATen/native/SegmentReduce.h:4, +#10 715.1 from ../aten/src/ATen/native/SegmentReduce.cpp:2: +#10 715.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 715.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 715.1 37 | res = *tempRes; +#10 715.1 | ~~~~^~~~~~~~~~ +#10 715.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 715.1 28 | uint32_t tmp = src; +#10 715.1 | ^~~ +#10 716.1 [5096/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o +#10 716.1 In file included from ../c10/core/ScalarType.h:3, +#10 716.1 from ../c10/core/Scalar.h:11, +#10 716.1 from aten/src/ATen/core/TensorBody.h:16, +#10 716.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 716.1 from ../aten/src/ATen/native/TensorCompare.cpp:2: +#10 716.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 716.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 716.1 37 | res = *tempRes; +#10 716.1 | ~~~~^~~~~~~~~~ +#10 716.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 716.1 28 | uint32_t tmp = src; +#10 716.1 | ^~~ +#10 716.2 [5097/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o +#10 716.5 [5098/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o +#10 716.6 [5099/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o +#10 718.4 [5100/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o +#10 718.7 [5101/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o +#10 718.7 In file included from ../c10/core/ScalarType.h:3, +#10 718.7 from ../c10/core/Scalar.h:11, +#10 718.7 from aten/src/ATen/core/TensorBody.h:16, +#10 718.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 718.7 from ../aten/src/ATen/native/Sorting.cpp:2: +#10 718.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 718.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 718.7 37 | res = *tempRes; +#10 718.7 | ~~~~^~~~~~~~~~ +#10 718.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 718.7 28 | uint32_t tmp = src; +#10 718.7 | ^~~ +#10 719.6 [5102/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o +#10 719.9 [5103/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o +#10 720.0 [5104/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o +#10 720.4 [5105/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o +#10 720.4 [5106/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o +#10 721.0 [5107/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o +#10 721.1 [5108/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o +#10 721.1 In file included from ../c10/core/ScalarType.h:3, +#10 721.1 from ../c10/core/Scalar.h:11, +#10 721.1 from aten/src/ATen/core/TensorBody.h:16, +#10 721.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 721.1 from ../aten/src/ATen/native/Unfold3d.cpp:2: +#10 721.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 721.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 721.1 37 | res = *tempRes; +#10 721.1 | ~~~~^~~~~~~~~~ +#10 721.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 721.1 28 | uint32_t tmp = src; +#10 721.1 | ^~~ +#10 723.5 [5109/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o +#10 724.8 [5110/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o +#10 724.9 [5111/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o +#10 725.0 [5112/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o +#10 725.0 [5113/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o +#10 726.1 [5114/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o +#10 726.3 [5115/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o +#10 726.3 In file included from ../c10/core/ScalarType.h:3, +#10 726.3 from ../c10/core/Scalar.h:11, +#10 726.3 from aten/src/ATen/core/TensorBody.h:16, +#10 726.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 726.3 from ../aten/src/ATen/native/UpSampleBicubic2d.cpp:2: +#10 726.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 726.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 726.3 37 | res = *tempRes; +#10 726.3 | ~~~~^~~~~~~~~~ +#10 726.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 726.3 28 | uint32_t tmp = src; +#10 726.3 | ^~~ +#10 726.8 [5116/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o +#10 727.4 [5117/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o +#10 727.7 [5118/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o +#10 727.7 [5119/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o +#10 728.3 [5120/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o +#10 729.0 [5121/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o +#10 729.3 [5122/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o +#10 729.6 [5123/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o +#10 730.5 [5124/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o +#10 731.5 [5125/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o +#10 732.1 [5126/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o +#10 732.1 In file included from ../c10/core/ScalarType.h:3, +#10 732.1 from ../c10/core/StorageImpl.h:4, +#10 732.1 from ../c10/core/Storage.h:3, +#10 732.1 from ../c10/core/TensorImpl.h:8, +#10 732.1 from ../c10/core/GeneratorImpl.h:8, +#10 732.1 from ../aten/src/ATen/core/Generator.h:22, +#10 732.1 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 732.1 from ../aten/src/ATen/Context.h:3, +#10 732.1 from ../aten/src/ATen/ATen.h:7, +#10 732.1 from ../aten/src/ATen/native/TensorAdvancedIndexing.cpp:51: +#10 732.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 732.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 732.1 37 | res = *tempRes; +#10 732.1 | ~~~~^~~~~~~~~~ +#10 732.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 732.1 28 | uint32_t tmp = src; +#10 732.1 | ^~~ +#10 732.4 [5127/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o +#10 732.4 In file included from ../c10/core/ScalarType.h:3, +#10 732.4 from ../c10/core/Scalar.h:11, +#10 732.4 from aten/src/ATen/core/TensorBody.h:16, +#10 732.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 732.4 from ../aten/src/ATen/native/Unique.cpp:4: +#10 732.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 732.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 732.4 37 | res = *tempRes; +#10 732.4 | ~~~~^~~~~~~~~~ +#10 732.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 732.4 28 | uint32_t tmp = src; +#10 732.4 | ^~~ +#10 732.6 [5128/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o +#10 734.8 [5129/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o +#10 734.9 [5130/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o +#10 735.4 [5131/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o +#10 736.3 [5132/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o +#10 737.0 [5133/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o +#10 737.2 [5134/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o +#10 737.4 [5135/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o +#10 737.4 [5136/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o +#10 737.8 [5137/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o +#10 738.1 [5138/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o +#10 739.0 [5139/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o +#10 739.2 [5140/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o +#10 741.5 [5141/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o +#10 741.5 In file included from ../c10/core/ScalarType.h:3, +#10 741.5 from ../c10/core/Scalar.h:11, +#10 741.5 from aten/src/ATen/core/TensorBody.h:16, +#10 741.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 741.5 from ../aten/src/ATen/native/sparse/SparseTensor.cpp:4: +#10 741.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 741.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 741.5 37 | res = *tempRes; +#10 741.5 | ~~~~^~~~~~~~~~ +#10 741.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 741.5 28 | uint32_t tmp = src; +#10 741.5 | ^~~ +#10 742.8 [5142/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o +#10 743.8 [5143/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o +#10 745.3 [5144/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o +#10 745.3 [5145/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o +#10 745.4 [5146/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o +#10 746.5 [5147/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o +#10 749.2 [5148/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o +#10 749.2 [5149/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o +#10 749.3 [5150/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o +#10 749.8 [5151/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o +#10 750.0 [5152/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o +#10 750.1 [5153/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o +#10 752.1 [5154/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o +#10 752.1 In file included from ../c10/core/ScalarType.h:3, +#10 752.1 from ../c10/core/Scalar.h:11, +#10 752.1 from aten/src/ATen/core/TensorBody.h:16, +#10 752.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 752.1 from ../aten/src/ATen/Tensor.h:3, +#10 752.1 from ../aten/src/ATen/NestedTensorImpl.h:3, +#10 752.1 from ../aten/src/ATen/native/nested/NestedTensorMath.h:4, +#10 752.1 from ../aten/src/ATen/native/nested/NestedTensorMath.cpp:1: +#10 752.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 752.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 752.1 37 | res = *tempRes; +#10 752.1 | ~~~~^~~~~~~~~~ +#10 752.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 752.1 28 | uint32_t tmp = src; +#10 752.1 | ^~~ +#10 752.2 [5155/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o +#10 752.2 In file included from ../c10/core/ScalarType.h:3, +#10 752.2 from ../c10/core/StorageImpl.h:4, +#10 752.2 from ../c10/core/Storage.h:3, +#10 752.2 from ../c10/core/TensorImpl.h:8, +#10 752.2 from ../c10/core/GeneratorImpl.h:8, +#10 752.2 from ../aten/src/ATen/core/Generator.h:22, +#10 752.2 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 752.2 from ../aten/src/ATen/Context.h:3, +#10 752.2 from aten/src/ATen/ops/view.h:5, +#10 752.2 from ../aten/src/ATen/ExpandUtils.h:6, +#10 752.2 from ../aten/src/ATen/TensorIndexing.h:3, +#10 752.2 from ../aten/src/ATen/native/sparse/SparseTensorMath.cpp:2: +#10 752.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 752.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 752.2 37 | res = *tempRes; +#10 752.2 | ~~~~^~~~~~~~~~ +#10 752.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 752.2 28 | uint32_t tmp = src; +#10 752.2 | ^~~ +#10 752.3 [5156/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o +#10 752.6 [5157/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o +#10 753.5 [5158/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o +#10 754.7 [5159/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o +#10 754.7 In file included from ../c10/core/ScalarType.h:3, +#10 754.7 from ../c10/core/Scalar.h:11, +#10 754.7 from aten/src/ATen/core/TensorBody.h:16, +#10 754.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 754.7 from ../aten/src/ATen/Tensor.h:3, +#10 754.7 from ../aten/src/ATen/native/sparse/SparseBinaryOpIntersectionCommon.h:3, +#10 754.7 from ../aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp:3: +#10 754.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 754.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 754.7 37 | res = *tempRes; +#10 754.7 | ~~~~^~~~~~~~~~ +#10 754.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 754.7 28 | uint32_t tmp = src; +#10 754.7 | ^~~ +#10 755.6 [5160/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o +#10 756.3 [5161/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o +#10 756.3 In file included from ../c10/core/ScalarType.h:3, +#10 756.3 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 756.3 from ../aten/src/ATen/Dispatch.h:3, +#10 756.3 from ../aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp:2: +#10 756.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 756.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 756.3 37 | res = *tempRes; +#10 756.3 | ~~~~^~~~~~~~~~ +#10 756.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 756.3 28 | uint32_t tmp = src; +#10 756.3 | ^~~ +#10 758.5 [5162/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o +#10 758.6 [5163/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o +#10 758.7 [5164/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o +#10 759.1 [5165/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o +#10 759.1 [5166/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o +#10 759.3 [5167/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o +#10 759.5 [5168/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o +#10 759.7 [5169/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o +#10 759.9 [5170/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o +#10 760.3 [5171/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o +#10 760.4 [5172/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o +#10 760.7 [5173/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o +#10 762.1 [5174/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o +#10 762.9 [5175/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o +#10 763.8 [5176/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o +#10 764.6 [5177/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o +#10 765.0 [5178/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o +#10 766.2 [5179/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o +#10 766.4 [5180/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o +#10 766.4 [5181/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o +#10 766.6 [5182/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o +#10 767.1 [5183/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o +#10 768.0 [5184/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o +#10 768.5 [5185/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o +#10 768.5 [5186/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o +#10 769.5 [5187/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o +#10 771.1 [5188/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o +#10 772.0 [5189/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o +#10 773.6 [5190/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o +#10 773.9 [5191/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o +#10 774.7 [5192/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o +#10 775.9 [5193/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o +#10 776.6 [5194/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o +#10 778.7 [5195/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o +#10 778.8 [5196/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o +#10 779.5 [5197/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o +#10 781.1 [5198/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o +#10 781.1 [5199/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o +#10 782.3 [5200/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o +#10 784.6 [5201/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o +#10 784.8 [5202/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o +#10 785.2 [5203/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o +#10 785.7 [5204/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o +#10 786.7 [5205/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o +#10 787.1 [5206/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o +#10 787.4 [5207/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o +#10 787.6 [5208/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o +#10 787.9 [5209/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o +#10 788.6 [5210/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o +#10 789.1 [5211/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o +#10 789.2 [5212/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o +#10 789.3 [5213/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o +#10 789.6 [5214/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o +#10 790.0 [5215/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o +#10 790.8 [5216/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o +#10 791.9 [5217/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o +#10 793.8 [5218/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o +#10 795.0 [5219/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o +#10 795.1 [5220/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o +#10 796.0 [5221/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o +#10 797.2 [5222/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o +#10 797.4 [5223/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o +#10 798.0 [5224/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o +#10 799.9 [5225/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o +#10 802.3 [5226/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o +#10 802.4 [5227/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o +#10 802.4 [5228/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o +#10 803.5 [5229/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o +#10 803.5 [5230/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o +#10 803.9 [5231/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o +#10 804.0 [5232/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o +#10 805.2 [5233/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o +#10 806.2 [5234/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o +#10 807.3 [5235/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o +#10 807.3 [5236/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o +#10 808.2 [5237/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o +#10 808.6 [5238/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o +#10 809.3 [5239/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o +#10 809.3 [5240/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o +#10 809.4 [5241/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o +#10 809.7 [5242/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o +#10 809.8 [5243/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o +#10 809.8 [5244/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o +#10 811.0 [5245/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o +#10 811.3 [5246/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o +#10 811.4 [5247/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o +#10 811.5 [5248/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o +#10 811.7 [5249/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o +#10 814.3 [5250/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o +#10 814.3 [5251/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o +#10 814.6 [5252/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o +#10 814.6 In file included from ../c10/core/ScalarType.h:3, +#10 814.6 from ../c10/core/StorageImpl.h:4, +#10 814.6 from ../c10/core/Storage.h:3, +#10 814.6 from ../c10/core/TensorImpl.h:8, +#10 814.6 from ../c10/core/GeneratorImpl.h:8, +#10 814.6 from ../aten/src/ATen/core/Generator.h:22, +#10 814.6 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 814.6 from ../aten/src/ATen/Context.h:3, +#10 814.6 from ../aten/src/ATen/ATen.h:7, +#10 814.6 from ../aten/src/ATen/native/transformers/attention.cpp:3: +#10 814.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 814.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 814.6 37 | res = *tempRes; +#10 814.6 | ~~~~^~~~~~~~~~ +#10 814.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 814.6 28 | uint32_t tmp = src; +#10 814.6 | ^~~ +#10 814.7 [5253/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o +#10 816.0 [5254/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o +#10 817.8 [5255/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o +#10 820.3 [5256/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o +#10 821.7 [5257/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o +#10 823.5 [5258/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor.cpp.o +#10 828.3 [5259/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o +#10 829.6 [5260/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o +#10 869.5 [5261/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o +#10 869.6 [5262/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional.cpp.o +#10 870.9 [5263/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd.cpp.o +#10 872.2 [5264/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o +#10 873.6 [5265/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd.cpp.o +#10 876.3 [5266/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta.cpp.o +#10 877.7 [5267/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o +#10 879.7 [5268/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU.cpp.o +#10 880.6 [5269/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o +#10 880.8 [5270/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o +#10 881.7 [5271/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU.cpp.o +#10 881.7 [5272/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta.cpp.o +#10 884.0 [5273/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o +#10 885.9 [5274/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU.cpp.o +#10 887.6 [5275/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o +#10 887.6 In file included from ../c10/core/ScalarType.h:3, +#10 887.6 from ../c10/core/Scalar.h:11, +#10 887.6 from aten/src/ATen/core/TensorMethods.cpp:1: +#10 887.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 887.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 887.6 37 | res = *tempRes; +#10 887.6 | ~~~~^~~~~~~~~~ +#10 887.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 887.6 28 | uint32_t tmp = src; +#10 887.6 | ^~~ +#10 888.3 [5276/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor.cpp.o +#10 889.4 [5277/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta.cpp.o +#10 889.5 [5278/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o +#10 889.7 [5279/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o +#10 890.6 [5280/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o +#10 891.0 [5281/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o +#10 891.6 [5282/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o +#10 891.8 [5283/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU.cpp.o +#10 893.1 [5284/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU.cpp.o +#10 894.4 [5285/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o +#10 894.5 [5286/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o +#10 895.6 [5287/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o +#10 895.7 [5288/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o +#10 895.7 [5289/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o +#10 897.7 [5290/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o +#10 898.6 [5291/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o +#10 898.6 In file included from ../c10/core/ScalarType.h:3, +#10 898.6 from ../aten/src/ATen/AccumulateType.h:3, +#10 898.6 from ../aten/src/ATen/native/Math.h:3, +#10 898.6 from ../aten/src/ATen/cpu/vec/vec_base.h:25, +#10 898.6 from ../aten/src/ATen/cpu/vec/vec256/vec256.h:8, +#10 898.6 from ../aten/src/ATen/cpu/vec/vec.h:6, +#10 898.6 from ../aten/src/ATen/cpu/vec/functional_base.h:6, +#10 898.6 from ../aten/src/ATen/cpu/vec/functional.h:3, +#10 898.6 from ../aten/src/ATen/native/ufunc/add.h:6, +#10 898.6 from /pytorch/build/aten/src/ATen/UfuncCPUKernel_add.cpp:3, +#10 898.6 from aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp:1: +#10 898.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 898.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 898.6 37 | res = *tempRes; +#10 898.6 | ~~~~^~~~~~~~~~ +#10 898.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 898.6 28 | uint32_t tmp = src; +#10 898.6 | ^~~ +#10 899.1 [5292/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o +#10 900.8 [5293/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o +#10 901.9 [5294/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta.cpp.o +#10 902.4 [5295/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o +#10 903.3 [5296/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o +#10 903.3 In file included from ../c10/core/ScalarType.h:3, +#10 903.3 from ../aten/src/ATen/core/TensorBase.h:6, +#10 903.3 from /pytorch/aten/src/ATen/native/cpu/WeightNormKernel.cpp:2, +#10 903.3 from aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp:1: +#10 903.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 903.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 903.3 37 | res = *tempRes; +#10 903.3 | ~~~~^~~~~~~~~~ +#10 903.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 903.3 28 | uint32_t tmp = src; +#10 903.3 | ^~~ +#10 905.3 [5297/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o +#10 906.0 [5298/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o +#10 906.0 In file included from ../c10/core/ScalarType.h:3, +#10 906.0 from ../c10/core/Scalar.h:11, +#10 906.0 from aten/src/ATen/core/TensorBody.h:16, +#10 906.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 906.0 from /pytorch/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp:2, +#10 906.0 from aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp:1: +#10 906.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 906.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 906.0 37 | res = *tempRes; +#10 906.0 | ~~~~^~~~~~~~~~ +#10 906.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 906.0 28 | uint32_t tmp = src; +#10 906.0 | ^~~ +#10 908.1 [5299/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o +#10 908.1 In file included from ../c10/core/ScalarType.h:3, +#10 908.1 from ../c10/core/Scalar.h:11, +#10 908.1 from aten/src/ATen/core/TensorBody.h:16, +#10 908.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 908.1 from ../aten/src/ATen/native/batch_norm.h:3, +#10 908.1 from /pytorch/aten/src/ATen/native/cpu/batch_norm_kernel.cpp:2, +#10 908.1 from aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp:1: +#10 908.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 908.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 908.1 37 | res = *tempRes; +#10 908.1 | ~~~~^~~~~~~~~~ +#10 908.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 908.1 28 | uint32_t tmp = src; +#10 908.1 | ^~~ +#10 908.6 [5300/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o +#10 908.6 In file included from ../c10/core/ScalarType.h:3, +#10 908.6 from ../c10/core/Scalar.h:11, +#10 908.6 from aten/src/ATen/core/TensorBody.h:16, +#10 908.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 908.6 from /pytorch/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp:4, +#10 908.6 from aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp:1: +#10 908.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 908.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 908.6 37 | res = *tempRes; +#10 908.6 | ~~~~^~~~~~~~~~ +#10 908.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 908.6 28 | uint32_t tmp = src; +#10 908.6 | ^~~ +#10 909.6 [5301/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o +#10 909.6 In file included from ../c10/core/ScalarType.h:3, +#10 909.6 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 909.6 from ../aten/src/ATen/Dispatch.h:3, +#10 909.6 from /pytorch/aten/src/ATen/native/cpu/Unfold2d.cpp:2, +#10 909.6 from aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp:1: +#10 909.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 909.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 909.6 37 | res = *tempRes; +#10 909.6 | ~~~~^~~~~~~~~~ +#10 909.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 909.6 28 | uint32_t tmp = src; +#10 909.6 | ^~~ +#10 910.4 [5302/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o +#10 911.2 [5303/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o +#10 911.2 In file included from ../c10/core/ScalarType.h:3, +#10 911.2 from ../c10/core/Scalar.h:11, +#10 911.2 from aten/src/ATen/core/TensorBody.h:16, +#10 911.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 911.2 from ../aten/src/ATen/native/layer_norm.h:3, +#10 911.2 from /pytorch/aten/src/ATen/native/cpu/layer_norm_kernel.cpp:2, +#10 911.2 from aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp:1: +#10 911.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 911.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 911.2 37 | res = *tempRes; +#10 911.2 | ~~~~^~~~~~~~~~ +#10 911.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 911.2 28 | uint32_t tmp = src; +#10 911.2 | ^~~ +#10 913.0 [5304/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o +#10 913.4 [5305/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU.cpp.o +#10 914.2 [5306/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o +#10 914.2 In file included from ../c10/core/ScalarType.h:3, +#10 914.2 from ../c10/core/Scalar.h:11, +#10 914.2 from aten/src/ATen/core/TensorBody.h:16, +#10 914.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 914.2 from /pytorch/aten/src/ATen/native/cpu/UpSampleKernel.cpp:2, +#10 914.2 from aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp:1: +#10 914.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 914.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 914.2 37 | res = *tempRes; +#10 914.2 | ~~~~^~~~~~~~~~ +#10 914.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 914.2 28 | uint32_t tmp = src; +#10 914.2 | ^~~ +#10 915.0 [5307/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o +#10 916.4 [5308/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o +#10 916.4 In file included from ../c10/core/ScalarType.h:3, +#10 916.4 from ../c10/core/Scalar.h:11, +#10 916.4 from aten/src/ATen/core/TensorBody.h:16, +#10 916.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 916.4 from /pytorch/aten/src/ATen/native/cpu/group_norm_kernel.cpp:8, +#10 916.4 from aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp:1: +#10 916.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 916.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 916.4 37 | res = *tempRes; +#10 916.4 | ~~~~^~~~~~~~~~ +#10 916.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 916.4 28 | uint32_t tmp = src; +#10 916.4 | ^~~ +#10 917.5 [5309/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o +#10 917.5 In file included from ../c10/core/ScalarType.h:3, +#10 917.5 from ../c10/core/Scalar.h:11, +#10 917.5 from aten/src/ATen/core/TensorBody.h:16, +#10 917.5 from ../aten/src/ATen/core/Tensor.h:3, +#10 917.5 from /pytorch/aten/src/ATen/native/cpu/MaxPooling.cpp:2, +#10 917.5 from aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp:1: +#10 917.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 917.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 917.5 37 | res = *tempRes; +#10 917.5 | ~~~~^~~~~~~~~~ +#10 917.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 917.5 28 | uint32_t tmp = src; +#10 917.5 | ^~~ +#10 918.2 [5310/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o +#10 918.2 In file included from ../c10/core/ScalarType.h:3, +#10 918.2 from ../aten/src/ATen/AccumulateType.h:3, +#10 918.2 from /pytorch/aten/src/ATen/native/cpu/SumKernel.cpp:2, +#10 918.2 from aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp:1: +#10 918.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 918.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 918.2 37 | res = *tempRes; +#10 918.2 | ~~~~^~~~~~~~~~ +#10 918.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 918.2 28 | uint32_t tmp = src; +#10 918.2 | ^~~ +#10 918.9 [5311/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o +#10 921.7 [5312/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o +#10 921.7 In file included from ../c10/core/ScalarType.h:3, +#10 921.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 921.7 from ../aten/src/ATen/Dispatch.h:3, +#10 921.7 from /pytorch/aten/src/ATen/native/cpu/SoftMaxKernel.cpp:8, +#10 921.7 from aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp:1: +#10 921.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 921.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 921.7 37 | res = *tempRes; +#10 921.7 | ~~~~^~~~~~~~~~ +#10 921.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 921.7 28 | uint32_t tmp = src; +#10 921.7 | ^~~ +#10 922.3 [5313/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o +#10 922.3 In file included from ../c10/core/ScalarType.h:3, +#10 922.3 from ../c10/core/Scalar.h:11, +#10 922.3 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 922.3 from /pytorch/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp:2, +#10 922.3 from aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp:1: +#10 922.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 922.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 922.3 37 | res = *tempRes; +#10 922.3 | ~~~~^~~~~~~~~~ +#10 922.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 922.3 28 | uint32_t tmp = src; +#10 922.3 | ^~~ +#10 924.1 [5314/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o +#10 924.1 In file included from ../c10/core/ScalarType.h:3, +#10 924.1 from ../aten/src/ATen/core/TensorBase.h:6, +#10 924.1 from /pytorch/aten/src/ATen/native/cpu/SortingKernel.cpp:3, +#10 924.1 from aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp:1: +#10 924.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 924.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 924.1 37 | res = *tempRes; +#10 924.1 | ~~~~^~~~~~~~~~ +#10 924.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 924.1 28 | uint32_t tmp = src; +#10 924.1 | ^~~ +#10 925.8 [5315/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o +#10 925.8 In file included from ../c10/core/ScalarType.h:3, +#10 925.8 from ../c10/core/Scalar.h:11, +#10 925.8 from aten/src/ATen/core/TensorBody.h:16, +#10 925.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 925.8 from /pytorch/aten/src/ATen/native/cpu/MultinomialKernel.cpp:2, +#10 925.8 from aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp:1: +#10 925.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 925.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 925.8 37 | res = *tempRes; +#10 925.8 | ~~~~^~~~~~~~~~ +#10 925.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 925.8 28 | uint32_t tmp = src; +#10 925.8 | ^~~ +#10 926.2 [5316/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o +#10 926.2 In file included from ../c10/core/ScalarType.h:3, +#10 926.2 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 926.2 from ../aten/src/ATen/Dispatch.h:3, +#10 926.2 from /pytorch/aten/src/ATen/native/cpu/PowKernel.cpp:3, +#10 926.2 from aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp:1: +#10 926.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 926.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 926.2 37 | res = *tempRes; +#10 926.2 | ~~~~^~~~~~~~~~ +#10 926.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 926.2 28 | uint32_t tmp = src; +#10 926.2 | ^~~ +#10 926.9 [5317/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o +#10 926.9 In file included from ../c10/core/ScalarType.h:3, +#10 926.9 from ../c10/core/Scalar.h:11, +#10 926.9 from aten/src/ATen/core/TensorBody.h:16, +#10 926.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 926.9 from /pytorch/aten/src/ATen/native/cpu/TensorCompareKernel.cpp:2, +#10 926.9 from aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp:1: +#10 926.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 926.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 926.9 37 | res = *tempRes; +#10 926.9 | ~~~~^~~~~~~~~~ +#10 926.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 926.9 28 | uint32_t tmp = src; +#10 926.9 | ^~~ +#10 927.4 [5318/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o +#10 927.4 In file included from ../c10/core/ScalarType.h:3, +#10 927.4 from ../c10/core/Scalar.h:11, +#10 927.4 from aten/src/ATen/core/TensorBody.h:16, +#10 927.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 927.4 from /pytorch/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp:2, +#10 927.4 from aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp:1: +#10 927.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 927.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 927.4 37 | res = *tempRes; +#10 927.4 | ~~~~^~~~~~~~~~ +#10 927.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 927.4 28 | uint32_t tmp = src; +#10 927.4 | ^~~ +#10 927.5 [5319/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o +#10 928.1 [5320/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o +#10 928.5 [5321/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o +#10 930.9 [5322/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o +#10 930.9 In file included from ../c10/core/ScalarType.h:3, +#10 930.9 from ../c10/core/Scalar.h:11, +#10 930.9 from aten/src/ATen/core/TensorBody.h:16, +#10 930.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 930.9 from ../aten/src/ATen/native/AdaptivePooling.h:3, +#10 930.9 from /pytorch/aten/src/ATen/native/cpu/MaxPoolKernel.cpp:2, +#10 930.9 from aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp:1: +#10 930.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 930.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 930.9 37 | res = *tempRes; +#10 930.9 | ~~~~^~~~~~~~~~ +#10 930.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 930.9 28 | uint32_t tmp = src; +#10 930.9 | ^~~ +#10 931.0 [5323/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o +#10 931.0 In file included from ../c10/core/ScalarType.h:3, +#10 931.0 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 931.0 from ../aten/src/ATen/Dispatch.h:3, +#10 931.0 from /pytorch/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp:4, +#10 931.0 from aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp:1: +#10 931.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 931.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 931.0 37 | res = *tempRes; +#10 931.0 | ~~~~^~~~~~~~~~ +#10 931.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 931.0 28 | uint32_t tmp = src; +#10 931.0 | ^~~ +#10 931.9 [5324/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o +#10 931.9 In file included from ../c10/core/ScalarType.h:3, +#10 931.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 931.9 from ../aten/src/ATen/Dispatch.h:3, +#10 931.9 from /pytorch/aten/src/ATen/native/cpu/FillKernel.cpp:2, +#10 931.9 from aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp:1: +#10 931.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 931.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 931.9 37 | res = *tempRes; +#10 931.9 | ~~~~^~~~~~~~~~ +#10 931.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 931.9 28 | uint32_t tmp = src; +#10 931.9 | ^~~ +#10 932.4 [5325/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o +#10 932.4 In file included from ../c10/core/ScalarType.h:3, +#10 932.4 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 932.4 from ../aten/src/ATen/Dispatch.h:3, +#10 932.4 from /pytorch/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp:3, +#10 932.4 from aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp:1: +#10 932.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 932.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 932.4 37 | res = *tempRes; +#10 932.4 | ~~~~^~~~~~~~~~ +#10 932.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 932.4 28 | uint32_t tmp = src; +#10 932.4 | ^~~ +#10 933.8 [5326/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o +#10 933.8 In file included from ../c10/core/ScalarType.h:3, +#10 933.8 from ../aten/src/ATen/core/TensorBase.h:6, +#10 933.8 from ../aten/src/ATen/native/NonEmptyUtils.h:1, +#10 933.8 from /pytorch/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp:2, +#10 933.8 from aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp:1: +#10 933.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 933.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 933.8 37 | res = *tempRes; +#10 933.8 | ~~~~^~~~~~~~~~ +#10 933.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 933.8 28 | uint32_t tmp = src; +#10 933.8 | ^~~ +#10 934.0 [5327/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o +#10 934.0 In file included from ../c10/core/ScalarType.h:3, +#10 934.0 from ../aten/src/ATen/OpMathType.h:3, +#10 934.0 from ../aten/src/ATen/native/Lerp.h:4, +#10 934.0 from /pytorch/aten/src/ATen/native/cpu/LerpKernel.cpp:2, +#10 934.0 from aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp:1: +#10 934.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 934.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 934.0 37 | res = *tempRes; +#10 934.0 | ~~~~^~~~~~~~~~ +#10 934.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 934.0 28 | uint32_t tmp = src; +#10 934.0 | ^~~ +#10 934.9 [5328/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o +#10 934.9 In file included from ../c10/core/ScalarType.h:3, +#10 934.9 from ../c10/core/Scalar.h:11, +#10 934.9 from aten/src/ATen/core/TensorBody.h:16, +#10 934.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 934.9 from /pytorch/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp:3, +#10 934.9 from aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp:1: +#10 934.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 934.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 934.9 37 | res = *tempRes; +#10 934.9 | ~~~~^~~~~~~~~~ +#10 934.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 934.9 28 | uint32_t tmp = src; +#10 934.9 | ^~~ +#10 935.2 [5329/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o +#10 935.2 In file included from ../c10/core/ScalarType.h:3, +#10 935.2 from ../c10/core/Scalar.h:11, +#10 935.2 from aten/src/ATen/core/TensorBody.h:16, +#10 935.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 935.2 from ../aten/src/ATen/native/Histogram.h:3, +#10 935.2 from /pytorch/aten/src/ATen/native/cpu/HistogramKernel.cpp:2, +#10 935.2 from aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp:1: +#10 935.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 935.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 935.2 37 | res = *tempRes; +#10 935.2 | ~~~~^~~~~~~~~~ +#10 935.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 935.2 28 | uint32_t tmp = src; +#10 935.2 | ^~~ +#10 937.2 [5330/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o +#10 937.2 In file included from ../c10/core/ScalarType.h:3, +#10 937.2 from ../c10/core/Scalar.h:11, +#10 937.2 from aten/src/ATen/core/TensorBody.h:16, +#10 937.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 937.2 from /pytorch/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp:2, +#10 937.2 from aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp:1: +#10 937.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 937.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 937.2 37 | res = *tempRes; +#10 937.2 | ~~~~^~~~~~~~~~ +#10 937.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 937.2 28 | uint32_t tmp = src; +#10 937.2 | ^~~ +#10 937.3 [5331/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o +#10 937.4 [5332/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o +#10 937.4 In file included from ../c10/core/ScalarType.h:3, +#10 937.4 from ../c10/core/Scalar.h:11, +#10 937.4 from aten/src/ATen/core/TensorBody.h:16, +#10 937.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 937.4 from /pytorch/aten/src/ATen/native/cpu/CrossKernel.cpp:9, +#10 937.4 from aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp:1: +#10 937.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 937.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 937.4 37 | res = *tempRes; +#10 937.4 | ~~~~^~~~~~~~~~ +#10 937.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 937.4 28 | uint32_t tmp = src; +#10 937.4 | ^~~ +#10 940.1 [5333/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o +#10 940.5 [5334/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o +#10 941.0 [5335/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o +#10 941.0 In file included from ../c10/core/ScalarType.h:3, +#10 941.0 from ../c10/core/Scalar.h:11, +#10 941.0 from aten/src/ATen/core/TensorBody.h:16, +#10 941.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 941.0 from /pytorch/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp:4, +#10 941.0 from aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp:1: +#10 941.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 941.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 941.0 37 | res = *tempRes; +#10 941.0 | ~~~~^~~~~~~~~~ +#10 941.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 941.0 28 | uint32_t tmp = src; +#10 941.0 | ^~~ +#10 941.0 [5336/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o +#10 941.3 [5337/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o +#10 942.0 [5338/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o +#10 942.0 In file included from ../c10/core/ScalarType.h:3, +#10 942.0 from ../c10/core/StorageImpl.h:4, +#10 942.0 from ../c10/core/Storage.h:3, +#10 942.0 from ../c10/core/TensorImpl.h:8, +#10 942.0 from ../c10/core/GeneratorImpl.h:8, +#10 942.0 from ../aten/src/ATen/core/Generator.h:22, +#10 942.0 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 942.0 from /pytorch/aten/src/ATen/native/cpu/DistributionKernels.cpp:2, +#10 942.0 from aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp:1: +#10 942.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 942.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 942.0 37 | res = *tempRes; +#10 942.0 | ~~~~^~~~~~~~~~ +#10 942.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 942.0 28 | uint32_t tmp = src; +#10 942.0 | ^~~ +#10 943.5 [5339/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o +#10 943.5 In file included from ../c10/core/ScalarType.h:3, +#10 943.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 943.5 from ../aten/src/ATen/Dispatch.h:3, +#10 943.5 from /pytorch/aten/src/ATen/native/cpu/BlasKernel.cpp:2, +#10 943.5 from aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp:1: +#10 943.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 943.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 943.5 37 | res = *tempRes; +#10 943.5 | ~~~~^~~~~~~~~~ +#10 943.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 943.5 28 | uint32_t tmp = src; +#10 943.5 | ^~~ +#10 945.2 [5340/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o +#10 946.7 [5341/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o +#10 946.7 [5342/6823] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-2.1.0/miniz.c.o +#10 946.7 ../third_party/miniz-2.1.0/miniz.c:3157:9: note: ‘#pragma message: Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.’ +#10 946.7 3157 | #pragma message("Using fopen, ftello, fseeko, stat() etc. path for file I/O - this path may not support large files.") +#10 946.7 | ^~~~~~~ +#10 946.8 [5343/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o +#10 947.2 [5344/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o +#10 947.3 [5345/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o +#10 947.4 [5346/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o +#10 947.4 In file included from ../c10/core/ScalarType.h:3, +#10 947.4 from ../c10/core/Scalar.h:11, +#10 947.4 from aten/src/ATen/core/TensorBody.h:16, +#10 947.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 947.4 from /pytorch/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp:2, +#10 947.4 from aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp:1: +#10 947.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 947.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 947.4 37 | res = *tempRes; +#10 947.4 | ~~~~^~~~~~~~~~ +#10 947.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 947.4 28 | uint32_t tmp = src; +#10 947.4 | ^~~ +#10 947.7 [5347/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o +#10 947.8 [5348/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o +#10 947.8 In file included from ../c10/core/ScalarType.h:3, +#10 947.8 from ../c10/core/Scalar.h:11, +#10 947.8 from aten/src/ATen/core/TensorBody.h:16, +#10 947.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 947.8 from /pytorch/aten/src/ATen/native/cpu/AvgPoolKernel.cpp:2, +#10 947.8 from aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp:1: +#10 947.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 947.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 947.8 37 | res = *tempRes; +#10 947.8 | ~~~~^~~~~~~~~~ +#10 947.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 947.8 28 | uint32_t tmp = src; +#10 947.8 | ^~~ +#10 948.1 [5349/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o +#10 948.2 [5350/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o +#10 948.3 [5351/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o +#10 948.7 [5352/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o +#10 948.7 In file included from ../c10/core/ScalarType.h:3, +#10 948.7 from ../c10/core/Scalar.h:11, +#10 948.7 from aten/src/ATen/core/TensorBody.h:16, +#10 948.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 948.7 from /pytorch/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp:2, +#10 948.7 from aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp:1: +#10 948.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 948.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 948.7 37 | res = *tempRes; +#10 948.7 | ~~~~^~~~~~~~~~ +#10 948.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 948.7 28 | uint32_t tmp = src; +#10 948.7 | ^~~ +#10 948.9 [5353/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o +#10 948.9 [5354/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o +#10 948.9 [5355/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o +#10 949.1 [5356/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o +#10 950.1 [5357/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o +#10 950.1 In file included from ../c10/core/ScalarType.h:3, +#10 950.1 from ../c10/core/StorageImpl.h:4, +#10 950.1 from ../c10/core/Storage.h:3, +#10 950.1 from ../c10/core/TensorImpl.h:8, +#10 950.1 from ../c10/core/GeneratorImpl.h:8, +#10 950.1 from ../aten/src/ATen/core/Generator.h:22, +#10 950.1 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 950.1 from ../aten/src/ATen/Context.h:3, +#10 950.1 from /pytorch/aten/src/ATen/native/cpu/IndexKernel.cpp:7, +#10 950.1 from aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp:1: +#10 950.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 950.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 950.1 37 | res = *tempRes; +#10 950.1 | ~~~~^~~~~~~~~~ +#10 950.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 950.1 28 | uint32_t tmp = src; +#10 950.1 | ^~~ +#10 950.6 [5358/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o +#10 954.3 [5359/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o +#10 954.7 [5360/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o +#10 954.7 In file included from ../c10/core/ScalarType.h:3, +#10 954.7 from ../c10/core/StorageImpl.h:4, +#10 954.7 from ../c10/core/Storage.h:3, +#10 954.7 from ../c10/core/TensorImpl.h:8, +#10 954.7 from ../c10/core/GeneratorImpl.h:8, +#10 954.7 from ../aten/src/ATen/core/Generator.h:22, +#10 954.7 from ../aten/src/ATen/Generator.h:2, +#10 954.7 from ../aten/src/ATen/native/UnaryOps.h:4, +#10 954.7 from /pytorch/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp:2, +#10 954.7 from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp:1: +#10 954.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 954.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 954.7 37 | res = *tempRes; +#10 954.7 | ~~~~^~~~~~~~~~ +#10 954.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 954.7 28 | uint32_t tmp = src; +#10 954.7 | ^~~ +#10 959.6 [5361/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/defer_size_check.cpp.o +#10 960.1 [5362/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/register_interface.cpp.o +#10 960.5 [5363/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o +#10 960.5 In file included from ../c10/core/ScalarType.h:3, +#10 960.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 960.5 from ../aten/src/ATen/Dispatch.h:3, +#10 960.5 from /pytorch/aten/src/ATen/native/cpu/CopyKernel.cpp:2, +#10 960.5 from aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp:1: +#10 960.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 960.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 960.5 37 | res = *tempRes; +#10 960.5 | ~~~~^~~~~~~~~~ +#10 960.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 960.5 28 | uint32_t tmp = src; +#10 960.5 | ^~~ +#10 960.5 [5364/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_fuser.cpp.o +#10 961.2 [5365/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.cpp.o +#10 961.5 [5366/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_rewriter.cpp.o +#10 962.6 [5367/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/decompose_silu.cpp.o +#10 963.3 [5368/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/interface.cpp.o +#10 963.3 ../torch/csrc/jit/codegen/onednn/interface.cpp: In function ‘torch::jit::Operation torch::jit::createLlgaKernel(const torch::jit::Node*)’: +#10 963.3 ../torch/csrc/jit/codegen/onednn/interface.cpp:106:3: warning: ‘torch::jit::Operation::Operation(F&&) [with F = torch::jit::createLlgaKernel(const torch::jit::Node*)::; typename std::enable_if*)>, F&&>::value, int>::type = 0]’ is deprecated: Please use void(Stack&) to register operator instead. [-Wdeprecated-declarations] +#10 963.3 106 | }; +#10 963.3 | ^ +#10 963.3 In file included from ../aten/src/ATen/core/boxing/KernelFunction.h:5, +#10 963.3 from ../aten/src/ATen/core/dispatch/Dispatcher.h:4, +#10 963.3 from ../torch/csrc/jit/runtime/operator.h:6, +#10 963.3 from ../torch/csrc/jit/ir/ir.h:7, +#10 963.3 from ../torch/csrc/jit/codegen/onednn/decompose_silu.h:3, +#10 963.3 from ../torch/csrc/jit/codegen/onednn/interface.cpp:2: +#10 963.3 ../aten/src/ATen/core/stack.h:25:3: note: declared here +#10 963.3 25 | Operation(F&& raw): op_([raw = std::forward(raw)](Stack& stack) { +#10 963.3 | ^~~~~~~~~ +#10 963.3 ../torch/csrc/jit/codegen/onednn/interface.cpp: In function ‘torch::jit::Operation torch::jit::createLlgaGuardKernel(const torch::jit::Node*)’: +#10 963.3 ../torch/csrc/jit/codegen/onednn/interface.cpp:171:3: warning: ‘torch::jit::Operation::Operation(F&&) [with F = torch::jit::createLlgaGuardKernel(const torch::jit::Node*)::; typename std::enable_if*)>, F&&>::value, int>::type = 0]’ is deprecated: Please use void(Stack&) to register operator instead. [-Wdeprecated-declarations] +#10 963.3 171 | }; +#10 963.3 | ^ +#10 963.3 In file included from ../aten/src/ATen/core/boxing/KernelFunction.h:5, +#10 963.3 from ../aten/src/ATen/core/dispatch/Dispatcher.h:4, +#10 963.3 from ../torch/csrc/jit/runtime/operator.h:6, +#10 963.3 from ../torch/csrc/jit/ir/ir.h:7, +#10 963.3 from ../torch/csrc/jit/codegen/onednn/decompose_silu.h:3, +#10 963.3 from ../torch/csrc/jit/codegen/onednn/interface.cpp:2: +#10 963.3 ../aten/src/ATen/core/stack.h:25:3: note: declared here +#10 963.3 25 | Operation(F&& raw): op_([raw = std::forward(raw)](Stack& stack) { +#10 963.3 | ^~~~~~~~~ +#10 964.5 [5369/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/graph_helper.cpp.o +#10 966.6 [5370/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/layout_propagation.cpp.o +#10 968.1 [5371/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/prepare_binary.cpp.o +#10 969.3 [5372/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/kernel.cpp.o +#10 969.4 [5373/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/onednn/guard_shape.cpp.o +#10 970.3 [5374/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o +#10 970.3 In file included from ../c10/core/ScalarType.h:3, +#10 970.3 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 970.3 from ../aten/src/ATen/Dispatch.h:3, +#10 970.3 from /pytorch/aten/src/ATen/native/cpu/Activation.cpp:12, +#10 970.3 from aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp:1: +#10 970.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 970.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 970.3 37 | res = *tempRes; +#10 970.3 | ~~~~^~~~~~~~~~ +#10 970.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 970.3 28 | uint32_t tmp = src; +#10 970.3 | ^~~ +#10 974.3 [5375/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o +#10 999.6 [5376/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o +#10 1009.5 [5377/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o +#10 1009.5 In file included from ../c10/core/ScalarType.h:3, +#10 1009.5 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1009.5 from ../aten/src/ATen/native/BinaryOps.h:3, +#10 1009.5 from /pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp:2, +#10 1009.5 from aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp:1: +#10 1009.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1009.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1009.5 37 | res = *tempRes; +#10 1009.5 | ~~~~^~~~~~~~~~ +#10 1009.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1009.5 28 | uint32_t tmp = src; +#10 1009.5 | ^~~ +#10 1010.7 [5378/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o +#10 1016.6 [5379/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o +#10 1017.1 [5380/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o +#10 1019.5 [5381/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o +#10 1022.7 [5382/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o +#10 1024.0 [5383/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o +#10 1025.9 [5384/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o +#10 1027.1 [5385/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o +#10 1027.2 [5386/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o +#10 1029.3 [5387/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o +#10 1029.6 [5388/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o +#10 1030.8 [5389/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o +#10 1030.8 [5390/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o +#10 1032.0 [5391/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o +#10 1033.3 [5392/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o +#10 1033.4 [5393/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o +#10 1033.6 [5394/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o +#10 1033.8 [5395/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o +#10 1034.7 [5396/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o +#10 1036.7 [5397/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o +#10 1037.0 [5398/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o +#10 1037.8 [5399/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o +#10 1038.1 [5400/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o +#10 1039.1 [5401/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o +#10 1039.6 [5402/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o +#10 1039.7 [5403/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o +#10 1040.2 [5404/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o +#10 1041.9 [5405/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o +#10 1041.9 [5406/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o +#10 1043.7 [5407/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o +#10 1044.9 [5408/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o +#10 1046.8 [5409/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o +#10 1047.6 [5410/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o +#10 1048.0 [5411/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o +#10 1048.2 [5412/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o +#10 1049.5 [5413/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o +#10 1050.0 [5414/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o +#10 1050.8 [5415/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o +#10 1052.8 [5416/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o +#10 1052.8 [5417/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o +#10 1054.2 [5418/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o +#10 1054.9 [5419/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o +#10 1054.9 [5420/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o +#10 1056.2 [5421/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o +#10 1056.2 [5422/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o +#10 1059.1 [5423/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o +#10 1059.2 [5424/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o +#10 1060.0 [5425/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o +#10 1060.5 [5426/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o +#10 1061.0 [5427/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o +#10 1061.3 [5428/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o +#10 1061.7 [5429/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o +#10 1061.9 [5430/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o +#10 1062.0 [5431/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o +#10 1062.0 [5432/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o +#10 1063.7 [5433/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o +#10 1064.0 [5434/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o +#10 1064.9 [5435/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o +#10 1066.3 [5436/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o +#10 1069.5 [5437/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o +#10 1070.5 [5438/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o +#10 1071.8 [5439/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o +#10 1072.4 [5440/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o +#10 1072.5 [5441/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o +#10 1073.1 [5442/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o +#10 1073.4 [5443/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o +#10 1074.2 [5444/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o +#10 1074.5 [5445/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o +#10 1074.6 [5446/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o +#10 1074.9 [5447/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o +#10 1075.5 [5448/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o +#10 1075.8 [5449/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o +#10 1080.5 [5450/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o +#10 1080.7 [5451/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o +#10 1080.9 [5452/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o +#10 1081.7 [5453/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o +#10 1081.7 [5454/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o +#10 1082.0 [5455/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o +#10 1082.5 [5456/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o +#10 1083.5 [5457/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o +#10 1083.9 [5458/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o +#10 1084.7 [5459/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o +#10 1086.0 [5460/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o +#10 1086.5 [5461/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o +#10 1087.4 [5462/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o +#10 1087.5 [5463/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o +#10 1087.5 [5464/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o +#10 1087.7 [5465/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o +#10 1088.5 [5466/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o +#10 1088.9 [5467/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o +#10 1089.0 [5468/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o +#10 1089.8 [5469/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o +#10 1090.0 [5470/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o +#10 1090.2 [5471/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o +#10 1091.3 [5472/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o +#10 1092.1 [5473/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o +#10 1093.7 [5474/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o +#10 1094.5 [5475/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o +#10 1095.2 [5476/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o +#10 1095.7 [5477/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o +#10 1096.5 [5478/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o +#10 1097.2 [5479/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o +#10 1098.2 [5480/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o +#10 1098.2 [5481/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o +#10 1100.2 [5482/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o +#10 1100.5 [5483/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o +#10 1101.7 [5484/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o +#10 1103.1 [5485/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o +#10 1103.2 [5486/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o +#10 1103.4 [5487/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o +#10 1103.4 [5488/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o +#10 1104.1 [5489/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o +#10 1105.3 [5490/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o +#10 1106.3 [5491/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o +#10 1108.1 [5492/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o +#10 1109.1 [5493/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/cuda_graph_fuser.cpp.o +#10 1109.2 [5494/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o +#10 1109.7 [5495/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o +#10 1110.3 [5496/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o +#10 1111.9 [5497/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o +#10 1113.0 [5498/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o +#10 1113.8 [5499/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o +#10 1114.5 [5500/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o +#10 1114.6 [5501/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o +#10 1114.7 [5502/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o +#10 1116.3 [5503/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o +#10 1116.7 [5504/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o +#10 1116.8 [5505/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o +#10 1118.9 [5506/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o +#10 1119.2 [5507/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o +#10 1119.2 [5508/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o +#10 1121.2 [5509/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o +#10 1123.5 [5510/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o +#10 1124.1 [5511/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o +#10 1124.5 [5512/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o +#10 1125.1 [5513/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o +#10 1125.8 [5514/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o +#10 1126.2 [5515/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o +#10 1126.2 [5516/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o +#10 1128.7 [5517/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o +#10 1128.8 [5518/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o +#10 1129.2 [5519/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o +#10 1130.2 [5520/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o +#10 1132.5 [5521/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o +#10 1132.6 [5522/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o +#10 1132.6 [5523/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o +#10 1133.1 [5524/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o +#10 1134.6 [5525/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o +#10 1135.7 [5526/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o +#10 1135.9 [5527/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o +#10 1136.2 [5528/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o +#10 1137.1 [5529/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o +#10 1137.2 [5530/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o +#10 1137.2 [5531/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o +#10 1139.9 [5532/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o +#10 1140.5 [5533/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o +#10 1141.4 [5534/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o +#10 1142.5 [5535/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o +#10 1142.6 [5536/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o +#10 1143.5 [5537/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o +#10 1143.7 [5538/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o +#10 1143.8 [5539/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o +#10 1144.3 [5540/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o +#10 1146.1 [5541/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o +#10 1148.2 [5542/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o +#10 1148.9 [5543/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o +#10 1151.4 [5544/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o +#10 1152.2 [5545/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o +#10 1152.2 [5546/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o +#10 1152.2 [5547/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o +#10 1152.5 [5548/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o +#10 1152.6 [5549/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o +#10 1154.9 [5550/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o +#10 1155.0 [5551/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o +#10 1155.2 [5552/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o +#10 1156.1 [5553/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o +#10 1157.6 [5554/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o +#10 1157.9 [5555/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o +#10 1157.9 [5556/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o +#10 1158.5 [5557/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o +#10 1162.1 [5558/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o +#10 1162.5 [5559/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o +#10 1162.6 [5560/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o +#10 1163.3 [5561/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o +#10 1164.5 [5562/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o +#10 1165.1 [5563/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o +#10 1165.2 [5564/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o +#10 1165.9 [5565/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o +#10 1166.2 [5566/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o +#10 1167.1 [5567/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o +#10 1167.8 [5568/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o +#10 1168.5 [5569/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o +#10 1169.4 [5570/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o +#10 1169.4 [5571/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o +#10 1170.4 [5572/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o +#10 1171.9 [5573/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o +#10 1172.2 [5574/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o +#10 1172.9 [5575/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o +#10 1173.0 [5576/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o +#10 1174.5 [5577/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o +#10 1175.4 [5578/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o +#10 1175.4 [5579/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o +#10 1176.1 [5580/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o +#10 1177.0 [5581/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o +#10 1179.5 [5582/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o +#10 1179.5 [5583/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o +#10 1181.2 [5584/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o +#10 1183.2 [5585/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o +#10 1184.8 [5586/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o +#10 1185.5 [5587/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o +#10 1185.8 [5588/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o +#10 1186.5 [5589/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o +#10 1187.6 [5590/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o +#10 1189.8 [5591/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o +#10 1189.8 [5592/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o +#10 1190.8 [5593/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o +#10 1191.5 [5594/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o +#10 1191.5 [5595/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o +#10 1193.8 [5596/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o +#10 1197.1 [5597/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o +#10 1198.0 [5598/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o +#10 1198.2 [5599/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o +#10 1200.1 [5600/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o +#10 1200.5 [5601/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o +#10 1201.7 [5602/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o +#10 1201.7 [5603/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o +#10 1203.3 [5604/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o +#10 1204.3 [5605/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o +#10 1205.6 [5606/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o +#10 1209.0 [5607/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o +#10 1209.9 [5608/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o +#10 1211.8 [5609/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o +#10 1213.2 [5610/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o +#10 1216.2 [5611/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o +#10 1216.5 [5612/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o +#10 1216.8 [5613/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o +#10 1219.7 [5614/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o +#10 1219.7 In file included from ../c10/core/ScalarType.h:3, +#10 1219.7 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1219.7 from ../aten/src/ATen/EmptyTensor.h:2, +#10 1219.7 from ../aten/src/ATen/Utils.h:3, +#10 1219.7 from ../torch/csrc/jit/runtime/static/ops.h:3, +#10 1219.7 from ../torch/csrc/jit/runtime/static/ops.cpp:1: +#10 1219.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1219.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1219.7 37 | res = *tempRes; +#10 1219.7 | ~~~~^~~~~~~~~~ +#10 1219.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1219.7 28 | uint32_t tmp = src; +#10 1219.7 | ^~~ +#10 1221.0 [5615/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o +#10 1221.1 [5616/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o +#10 1221.1 [5617/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o +#10 1221.2 [5618/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o +#10 1221.5 [5619/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o +#10 1221.6 [5620/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o +#10 1223.5 [5621/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o +#10 1224.5 [5622/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o +#10 1224.5 In file included from ../c10/core/ScalarType.h:3, +#10 1224.5 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1224.5 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1224.5 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1224.5 from ../torch/csrc/jit/tensorexpr/bounds_overlap.cpp:1: +#10 1224.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1224.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1224.5 37 | res = *tempRes; +#10 1224.5 | ~~~~^~~~~~~~~~ +#10 1224.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1224.5 28 | uint32_t tmp = src; +#10 1224.5 | ^~~ +#10 1226.2 [5623/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o +#10 1226.3 [5624/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o +#10 1227.2 [5625/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o +#10 1227.3 [5626/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o +#10 1227.6 [5627/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o +#10 1231.4 [5628/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o +#10 1231.4 [5629/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o +#10 1233.0 [5630/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o +#10 1233.0 In file included from ../c10/core/ScalarType.h:3, +#10 1233.0 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1233.0 from ../torch/csrc/jit/tensorexpr/exceptions.h:4, +#10 1233.0 from ../torch/csrc/jit/tensorexpr/ir.h:8, +#10 1233.0 from ../torch/csrc/jit/tensorexpr/ir.cpp:1: +#10 1233.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1233.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1233.0 37 | res = *tempRes; +#10 1233.0 | ~~~~^~~~~~~~~~ +#10 1233.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1233.0 28 | uint32_t tmp = src; +#10 1233.0 | ^~~ +#10 1237.5 [5631/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o +#10 1238.0 [5632/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o +#10 1238.7 [5633/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o +#10 1241.1 [5634/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o +#10 1241.6 [5635/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o +#10 1241.8 [5636/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o +#10 1242.9 [5637/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o +#10 1242.9 In file included from ../c10/core/ScalarType.h:3, +#10 1242.9 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1242.9 from ../torch/csrc/jit/tensorexpr/ir_printer.h:5, +#10 1242.9 from ../torch/csrc/jit/tensorexpr/ir_printer.cpp:1: +#10 1242.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1242.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1242.9 37 | res = *tempRes; +#10 1242.9 | ~~~~^~~~~~~~~~ +#10 1242.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1242.9 28 | uint32_t tmp = src; +#10 1242.9 | ^~~ +#10 1242.9 [5638/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o +#10 1247.1 [5639/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o +#10 1247.1 In file included from ../c10/core/ScalarType.h:3, +#10 1247.1 from ../c10/core/StorageImpl.h:4, +#10 1247.1 from ../c10/core/Storage.h:3, +#10 1247.1 from ../c10/core/TensorImpl.h:8, +#10 1247.1 from ../c10/core/GeneratorImpl.h:8, +#10 1247.1 from ../aten/src/ATen/core/Generator.h:22, +#10 1247.1 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1247.1 from ../aten/src/ATen/Context.h:3, +#10 1247.1 from ../aten/src/ATen/ATen.h:7, +#10 1247.1 from ../torch/csrc/jit/tensorexpr/codegen.h:3, +#10 1247.1 from ../torch/csrc/jit/tensorexpr/eval.h:14, +#10 1247.1 from ../torch/csrc/jit/tensorexpr/eval.cpp:1: +#10 1247.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1247.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1247.1 37 | res = *tempRes; +#10 1247.1 | ~~~~^~~~~~~~~~ +#10 1247.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1247.1 28 | uint32_t tmp = src; +#10 1247.1 | ^~~ +#10 1250.0 [5640/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o +#10 1256.7 [5641/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o +#10 1256.7 In file included from ../c10/core/ScalarType.h:3, +#10 1256.7 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1256.7 from ../torch/csrc/jit/tensorexpr/loopnest.h:9, +#10 1256.7 from ../torch/csrc/jit/tensorexpr/operators/conv2d.cpp:3: +#10 1256.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1256.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1256.7 37 | res = *tempRes; +#10 1256.7 | ~~~~^~~~~~~~~~ +#10 1256.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1256.7 28 | uint32_t tmp = src; +#10 1256.7 | ^~~ +#10 1257.3 [5642/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o +#10 1257.3 In file included from ../c10/core/ScalarType.h:3, +#10 1257.3 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1257.3 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1257.3 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1257.3 from ../torch/csrc/jit/tensorexpr/ir_simplifier.cpp:2: +#10 1257.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1257.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1257.3 37 | res = *tempRes; +#10 1257.3 | ~~~~^~~~~~~~~~ +#10 1257.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1257.3 28 | uint32_t tmp = src; +#10 1257.3 | ^~~ +#10 1258.6 [5643/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o +#10 1258.7 [5644/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o +#10 1259.2 [5645/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o +#10 1259.8 [5646/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o +#10 1259.8 In file included from ../c10/core/ScalarType.h:3, +#10 1259.8 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1259.8 from ../torch/csrc/jit/tensorexpr/loopnest.h:9, +#10 1259.8 from ../torch/csrc/jit/tensorexpr/loopnest.cpp:1: +#10 1259.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1259.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1259.8 37 | res = *tempRes; +#10 1259.8 | ~~~~^~~~~~~~~~ +#10 1259.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1259.8 28 | uint32_t tmp = src; +#10 1259.8 | ^~~ +#10 1260.2 [5647/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o +#10 1260.8 [5648/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o +#10 1261.4 [5649/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o +#10 1262.2 [5650/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o +#10 1262.2 In file included from ../c10/core/ScalarType.h:3, +#10 1262.2 from ../torch/csrc/jit/tensorexpr/mem_dependency_checker.h:2, +#10 1262.2 from ../torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp:1: +#10 1262.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1262.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1262.2 37 | res = *tempRes; +#10 1262.2 | ~~~~^~~~~~~~~~ +#10 1262.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1262.2 28 | uint32_t tmp = src; +#10 1262.2 | ^~~ +#10 1262.2 [5651/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o +#10 1262.2 In file included from ../c10/core/ScalarType.h:3, +#10 1262.2 from ../c10/core/Scalar.h:11, +#10 1262.2 from aten/src/ATen/core/TensorBody.h:16, +#10 1262.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 1262.2 from ../torch/csrc/jit/ir/attributes.h:2, +#10 1262.2 from ../torch/csrc/jit/ir/ir.h:3, +#10 1262.2 from ../torch/csrc/jit/tensorexpr/kernel.h:4, +#10 1262.2 from ../torch/csrc/jit/tensorexpr/kernel.cpp:2: +#10 1262.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1262.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1262.2 37 | res = *tempRes; +#10 1262.2 | ~~~~^~~~~~~~~~ +#10 1262.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1262.2 28 | uint32_t tmp = src; +#10 1262.2 | ^~~ +#10 1263.6 [5652/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o +#10 1263.6 In file included from ../c10/core/ScalarType.h:3, +#10 1263.6 from ../c10/core/Scalar.h:11, +#10 1263.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1263.6 from ../aten/src/ATen/core/jit_type.h:5, +#10 1263.6 from ../aten/src/ATen/core/function_schema.h:6, +#10 1263.6 from ../torch/csrc/jit/frontend/function_schema_parser.h:3, +#10 1263.6 from ../torch/csrc/jit/tensorexpr/lowerings.cpp:1: +#10 1263.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1263.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1263.6 37 | res = *tempRes; +#10 1263.6 | ~~~~^~~~~~~~~~ +#10 1263.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1263.6 28 | uint32_t tmp = src; +#10 1263.6 | ^~~ +#10 1263.7 [5653/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o +#10 1264.4 [5654/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o +#10 1264.4 In file included from ../c10/core/ScalarType.h:3, +#10 1264.4 from ../torch/csrc/jit/tensorexpr/fwd_decls.h:2, +#10 1264.4 from ../torch/csrc/jit/tensorexpr/expr.h:10, +#10 1264.4 from ../torch/csrc/jit/tensorexpr/bounds_overlap.h:3, +#10 1264.4 from ../torch/csrc/jit/tensorexpr/ir_simplifier.h:3, +#10 1264.4 from ../torch/csrc/jit/tensorexpr/operators/misc.cpp:1: +#10 1264.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1264.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1264.4 37 | res = *tempRes; +#10 1264.4 | ~~~~^~~~~~~~~~ +#10 1264.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1264.4 28 | uint32_t tmp = src; +#10 1264.4 | ^~~ +#10 1264.6 [5655/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o +#10 1265.6 [5656/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o +#10 1266.3 [5657/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o +#10 1267.4 [5658/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o +#10 1268.4 [5659/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o +#10 1268.4 [5660/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o +#10 1268.6 [5661/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o +#10 1268.9 [5662/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o +#10 1269.3 [5663/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o +#10 1269.4 [5664/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o +#10 1269.6 [5665/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o +#10 1270.1 [5666/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o +#10 1270.9 [5667/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o +#10 1271.6 [5668/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o +#10 1272.3 [5669/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o +#10 1272.5 [5670/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o +#10 1273.2 [5671/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o +#10 1274.0 [5672/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o +#10 1275.4 [5673/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o +#10 1275.8 [5674/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o +#10 1276.4 [5675/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o +#10 1276.9 [5676/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o +#10 1276.9 In file included from ../c10/core/ScalarType.h:3, +#10 1276.9 from ../torch/csrc/jit/tensorexpr/registerizer.h:2, +#10 1276.9 from ../torch/csrc/jit/tensorexpr/registerizer.cpp:1: +#10 1276.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1276.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1276.9 37 | res = *tempRes; +#10 1276.9 | ~~~~^~~~~~~~~~ +#10 1276.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1276.9 28 | uint32_t tmp = src; +#10 1276.9 | ^~~ +#10 1277.7 [5677/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o +#10 1277.7 [5678/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o +#10 1278.7 [5679/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o +#10 1279.4 [5680/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o +#10 1280.1 [5681/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o +#10 1280.4 [5682/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o +#10 1280.6 [5683/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o +#10 1280.7 [5684/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o +#10 1281.1 [5685/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o +#10 1281.3 [5686/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o +#10 1282.0 [5687/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o +#10 1283.0 [5688/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o +#10 1283.3 [5689/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o +#10 1283.3 [5690/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o +#10 1283.8 [5691/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o +#10 1283.9 [5692/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o +#10 1284.2 [5693/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o +#10 1286.8 [5694/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o +#10 1287.6 [5695/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o +#10 1287.7 [5696/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o +#10 1287.9 [5697/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o +#10 1289.0 [5698/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o +#10 1289.9 [5699/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o +#10 1292.7 [5700/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o +#10 1293.0 [5701/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o +#10 1293.1 [5702/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_graph_observer.cpp.o +#10 1293.7 [5703/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o +#10 1294.2 [5704/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o +#10 1295.0 [5705/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o +#10 1295.2 [5706/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o +#10 1295.5 [5707/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o +#10 1296.6 [5708/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o +#10 1298.6 [5709/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o +#10 1300.6 [5710/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o +#10 1300.6 [5711/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o +#10 1302.4 [5712/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o +#10 1302.4 [5713/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o +#10 1302.9 [5714/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o +#10 1303.9 [5715/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/random_ops.cpp.o +#10 1304.3 [5716/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o +#10 1305.0 [5717/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o +#10 1305.1 [5718/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o +#10 1307.7 [5719/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o +#10 1308.1 [5720/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o +#10 1308.9 [5721/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o +#10 1309.9 [5722/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o +#10 1311.4 [5723/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o +#10 1311.7 [5724/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o +#10 1312.3 [5725/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/itt.cpp.o +#10 1312.6 [5726/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/itt_wrapper.cpp.o +#10 1313.6 [5727/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o +#10 1313.8 [5728/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o +#10 1315.0 [5729/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o +#10 1315.4 [5730/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o +#10 1316.3 [5731/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o +#10 1317.6 [5732/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o +#10 1319.0 [5733/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o +#10 1319.2 [5734/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o +#10 1319.3 [5735/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o +#10 1320.2 [5736/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o +#10 1320.4 [5737/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o +#10 1322.0 [5738/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp.o +#10 1322.0 [5739/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o +#10 1323.8 [5740/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o +#10 1324.7 [5741/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o +#10 1325.7 [5742/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o +#10 1327.0 [5743/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o +#10 1327.5 [5744/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/FileStore.cpp.o +#10 1327.5 [5745/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/PrefixStore.cpp.o +#10 1327.5 [5746/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp.o +#10 1327.6 [5747/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o +#10 1327.9 [5748/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o +#10 1328.7 [5749/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ParamCommsUtils.cpp.o +#10 1331.8 [5750/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o +#10 1332.3 [5751/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o +#10 1332.3 In file included from ../c10/core/ScalarType.h:3, +#10 1332.3 from ../c10/core/StorageImpl.h:4, +#10 1332.3 from ../c10/core/Storage.h:3, +#10 1332.3 from ../c10/core/TensorImpl.h:8, +#10 1332.3 from ../c10/core/GeneratorImpl.h:8, +#10 1332.3 from ../aten/src/ATen/core/Generator.h:22, +#10 1332.3 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1332.3 from ../aten/src/ATen/Context.h:3, +#10 1332.3 from ../aten/src/ATen/ATen.h:7, +#10 1332.3 from ../torch/csrc/autograd/FunctionsManual.h:12, +#10 1332.3 from ../torch/csrc/autograd/FunctionsManual.cpp:1: +#10 1332.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1332.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1332.3 37 | res = *tempRes; +#10 1332.3 | ~~~~^~~~~~~~~~ +#10 1332.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1332.3 28 | uint32_t tmp = src; +#10 1332.3 | ^~~ +#10 1332.4 [5752/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Backend.cpp.o +#10 1332.7 [5753/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/exception.cpp.o +#10 1333.3 [5754/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Store.cpp.o +#10 1334.2 [5755/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/debug.cpp.o +#10 1334.7 [5756/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logging.cpp.o +#10 1335.1 [5757/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o +#10 1336.6 [5758/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Utils.cpp.o +#10 1338.0 [5759/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp.o +#10 1338.2 [5760/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Ops.cpp.o +#10 1338.3 [5761/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o +#10 1339.2 [5762/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/sequence_num.cpp.o +#10 1339.6 [5763/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/TCPStore.cpp.o +#10 1343.0 [5764/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/quantization/quantization.cpp.o +#10 1343.6 [5765/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/comm.cpp.o +#10 1343.7 [5766/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp.o +#10 1344.3 [5767/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroup.cpp.o +#10 1345.1 [5768/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/socket.cpp.o +#10 1346.2 [5769/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Work.cpp.o +#10 1349.3 [5770/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/autograd.cpp.o +#10 1349.8 [5771/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/utils.cpp.o +#10 1350.3 [5772/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp.o +#10 1350.4 [5773/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp.o +#10 1351.7 [5774/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp.o +#10 1352.5 [5775/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/container.cpp.o +#10 1352.8 [5776/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logger.cpp.o +#10 1353.9 [5777/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/context.cpp.o +#10 1355.8 [5778/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/default_comm_hooks.cpp.o +#10 1356.9 [5779/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp.o +#10 1357.3 [5780/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/reducer.cpp.o +#10 1359.0 [5781/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/engine/dist_engine.cpp.o +#10 1359.7 [5782/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp.o +#10 1360.4 [5783/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/HashStore.cpp.o +#10 1360.5 [5784/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp.o +#10 1360.5 [5785/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp.o +#10 1360.7 [5786/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp.o +#10 1363.8 [5787/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp.o +#10 1365.9 [5788/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/message.cpp.o +#10 1366.4 [5789/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupRoundRobin.cpp.o +#10 1366.6 [5790/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp.o +#10 1366.7 [5791/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp.o +#10 1367.0 [5792/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp.o +#10 1368.4 [5793/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp.o +#10 1370.8 [5794/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_call.cpp.o +#10 1370.8 [5795/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_resp.cpp.o +#10 1372.3 [5796/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_remote_call.cpp.o +#10 1373.5 [5797/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp.o +#10 1373.9 [5798/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rpc_agent.cpp.o +#10 1376.5 [5799/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback.cpp.o +#10 1377.8 [5800/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/agent_utils.cpp.o +#10 1378.5 [5801/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o +#10 1379.4 [5802/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/types.cpp.o +#10 1382.0 [5803/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_proto.cpp.o +#10 1382.1 [5804/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_resp.cpp.o +#10 1382.2 [5805/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_impl.cpp.o +#10 1383.1 [5806/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_call.cpp.o +#10 1383.2 [5807/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o +#10 1384.7 [5808/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_remote_call.cpp.o +#10 1385.1 [5809/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_utils.cpp.o +#10 1386.1 [5810/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback_no_python.cpp.o +#10 1387.7 [5811/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_context.cpp.o +#10 1389.3 [5812/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o +#10 1389.7 [5813/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o +#10 1391.0 [5814/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp.o +#10 1392.4 [5815/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o +#10 1395.0 [5816/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o +#10 1395.6 [5817/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o +#10 1396.0 [5818/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o +#10 1396.1 [5819/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o +#10 1396.9 [5820/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/torchscript_functions.cpp.o +#10 1398.9 [5821/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_agent.cpp.o +#10 1399.4 [5822/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o +#10 1401.5 [5823/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/utils.cpp.o +#10 1401.8 [5824/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o +#10 1404.3 [5825/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o +#10 1405.3 [5826/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o +#10 1407.3 [5827/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o +#10 1408.1 [5828/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o +#10 1411.1 [5829/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o +#10 1412.6 [5830/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o +#10 1412.7 [5831/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o +#10 1413.0 [5832/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o +#10 1416.2 [5833/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o +#10 1416.2 [5834/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o +#10 1417.0 [5835/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o +#10 1417.7 [5836/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o +#10 1418.4 [5837/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o +#10 1419.8 [5838/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o +#10 1422.1 [5839/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o +#10 1422.2 [5840/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o +#10 1422.9 [5841/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o +#10 1426.2 [5842/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o +#10 1427.8 [5843/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o +#10 1428.7 [5844/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o +#10 1428.8 [5845/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o +#10 1428.9 [5846/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o +#10 1428.9 [5847/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o +#10 1429.2 [5848/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o +#10 1429.3 [5849/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o +#10 1429.6 [5850/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o +#10 1431.6 [5851/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o +#10 1431.7 [5852/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o +#10 1431.7 [5853/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o +#10 1431.7 [5854/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o +#10 1432.4 [5855/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o +#10 1434.4 [5856/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o +#10 1434.7 [5857/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o +#10 1437.5 [5858/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.AVX2.cpp.o +#10 1438.4 [5859/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.AVX2.cpp.o +#10 1439.5 [5860/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o +#10 1440.8 [5861/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.AVX2.cpp.o +#10 1440.8 In file included from ../c10/core/ScalarType.h:3, +#10 1440.8 from ../aten/src/ATen/AccumulateType.h:3, +#10 1440.8 from ../aten/src/ATen/native/Math.h:3, +#10 1440.8 from ../aten/src/ATen/cpu/vec/vec_base.h:25, +#10 1440.8 from ../aten/src/ATen/cpu/vec/vec256/vec256.h:8, +#10 1440.8 from ../aten/src/ATen/cpu/vec/vec.h:6, +#10 1440.8 from ../aten/src/ATen/cpu/vec/functional_base.h:6, +#10 1440.8 from ../aten/src/ATen/cpu/vec/functional.h:3, +#10 1440.8 from ../aten/src/ATen/native/ufunc/add.h:6, +#10 1440.8 from /pytorch/build/aten/src/ATen/UfuncCPUKernel_add.cpp:3, +#10 1440.8 from aten/src/ATen/UfuncCPUKernel_add.cpp.AVX2.cpp:1: +#10 1440.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1440.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1440.8 37 | res = *tempRes; +#10 1440.8 | ~~~~^~~~~~~~~~ +#10 1440.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1440.8 28 | uint32_t tmp = src; +#10 1440.8 | ^~~ +#10 1442.2 [5862/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o +#10 1442.6 [5863/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.AVX2.cpp.o +#10 1443.0 [5864/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o +#10 1444.1 [5865/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o +#10 1444.5 [5866/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o +#10 1445.6 [5867/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.AVX2.cpp.o +#10 1446.3 [5868/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o +#10 1446.3 [5869/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o +#10 1446.4 [5870/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o +#10 1446.7 [5871/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o +#10 1449.2 [5872/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.AVX2.cpp.o +#10 1449.2 In file included from ../c10/core/ScalarType.h:3, +#10 1449.2 from ../c10/core/Scalar.h:11, +#10 1449.2 from aten/src/ATen/core/TensorBody.h:16, +#10 1449.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 1449.2 from ../aten/src/ATen/native/layer_norm.h:3, +#10 1449.2 from /pytorch/aten/src/ATen/native/cpu/layer_norm_kernel.cpp:2, +#10 1449.2 from aten/src/ATen/native/cpu/layer_norm_kernel.cpp.AVX2.cpp:1: +#10 1449.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1449.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1449.2 37 | res = *tempRes; +#10 1449.2 | ~~~~^~~~~~~~~~ +#10 1449.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1449.2 28 | uint32_t tmp = src; +#10 1449.2 | ^~~ +#10 1449.3 [5873/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.AVX2.cpp.o +#10 1449.3 In file included from ../c10/core/ScalarType.h:3, +#10 1449.3 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1449.3 from /pytorch/aten/src/ATen/native/cpu/WeightNormKernel.cpp:2, +#10 1449.3 from aten/src/ATen/native/cpu/WeightNormKernel.cpp.AVX2.cpp:1: +#10 1449.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1449.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1449.3 37 | res = *tempRes; +#10 1449.3 | ~~~~^~~~~~~~~~ +#10 1449.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1449.3 28 | uint32_t tmp = src; +#10 1449.3 | ^~~ +#10 1449.6 [5874/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o +#10 1452.0 [5875/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.AVX2.cpp.o +#10 1452.0 In file included from ../c10/core/ScalarType.h:3, +#10 1452.0 from ../c10/core/Scalar.h:11, +#10 1452.0 from aten/src/ATen/core/TensorBody.h:16, +#10 1452.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 1452.0 from /pytorch/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp:2, +#10 1452.0 from aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.AVX2.cpp:1: +#10 1452.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1452.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1452.0 37 | res = *tempRes; +#10 1452.0 | ~~~~^~~~~~~~~~ +#10 1452.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1452.0 28 | uint32_t tmp = src; +#10 1452.0 | ^~~ +#10 1452.3 [5876/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.AVX2.cpp.o +#10 1453.1 [5877/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.AVX2.cpp.o +#10 1453.1 In file included from ../c10/core/ScalarType.h:3, +#10 1453.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1453.1 from ../aten/src/ATen/Dispatch.h:3, +#10 1453.1 from /pytorch/aten/src/ATen/native/cpu/Unfold2d.cpp:2, +#10 1453.1 from aten/src/ATen/native/cpu/Unfold2d.cpp.AVX2.cpp:1: +#10 1453.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1453.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1453.1 37 | res = *tempRes; +#10 1453.1 | ~~~~^~~~~~~~~~ +#10 1453.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1453.1 28 | uint32_t tmp = src; +#10 1453.1 | ^~~ +#10 1453.9 [5878/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.AVX2.cpp.o +#10 1453.9 In file included from ../c10/core/ScalarType.h:3, +#10 1453.9 from ../c10/core/Scalar.h:11, +#10 1453.9 from aten/src/ATen/core/TensorBody.h:16, +#10 1453.9 from ../aten/src/ATen/core/Tensor.h:3, +#10 1453.9 from ../aten/src/ATen/native/batch_norm.h:3, +#10 1453.9 from /pytorch/aten/src/ATen/native/cpu/batch_norm_kernel.cpp:2, +#10 1453.9 from aten/src/ATen/native/cpu/batch_norm_kernel.cpp.AVX2.cpp:1: +#10 1453.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1453.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1453.9 37 | res = *tempRes; +#10 1453.9 | ~~~~^~~~~~~~~~ +#10 1453.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1453.9 28 | uint32_t tmp = src; +#10 1453.9 | ^~~ +#10 1454.0 [5879/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.AVX2.cpp.o +#10 1455.8 [5880/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.AVX2.cpp.o +#10 1455.8 In file included from ../c10/core/ScalarType.h:3, +#10 1455.8 from ../aten/src/ATen/AccumulateType.h:3, +#10 1455.8 from /pytorch/aten/src/ATen/native/cpu/SumKernel.cpp:2, +#10 1455.8 from aten/src/ATen/native/cpu/SumKernel.cpp.AVX2.cpp:1: +#10 1455.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1455.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1455.8 37 | res = *tempRes; +#10 1455.8 | ~~~~^~~~~~~~~~ +#10 1455.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1455.8 28 | uint32_t tmp = src; +#10 1455.8 | ^~~ +#10 1457.7 [5881/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.AVX2.cpp.o +#10 1457.7 In file included from ../c10/core/ScalarType.h:3, +#10 1457.7 from ../c10/core/Scalar.h:11, +#10 1457.7 from aten/src/ATen/core/TensorBody.h:16, +#10 1457.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 1457.7 from /pytorch/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp:4, +#10 1457.7 from aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.AVX2.cpp:1: +#10 1457.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1457.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1457.7 37 | res = *tempRes; +#10 1457.7 | ~~~~^~~~~~~~~~ +#10 1457.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1457.7 28 | uint32_t tmp = src; +#10 1457.7 | ^~~ +#10 1457.8 [5882/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.AVX2.cpp.o +#10 1458.0 [5883/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.AVX2.cpp.o +#10 1458.0 In file included from ../c10/core/ScalarType.h:3, +#10 1458.0 from ../c10/core/Scalar.h:11, +#10 1458.0 from aten/src/ATen/core/TensorBody.h:16, +#10 1458.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 1458.0 from /pytorch/aten/src/ATen/native/cpu/group_norm_kernel.cpp:8, +#10 1458.0 from aten/src/ATen/native/cpu/group_norm_kernel.cpp.AVX2.cpp:1: +#10 1458.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1458.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1458.0 37 | res = *tempRes; +#10 1458.0 | ~~~~^~~~~~~~~~ +#10 1458.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1458.0 28 | uint32_t tmp = src; +#10 1458.0 | ^~~ +#10 1459.8 [5884/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.AVX2.cpp.o +#10 1459.8 In file included from ../c10/core/ScalarType.h:3, +#10 1459.8 from ../c10/core/Scalar.h:11, +#10 1459.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1459.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1459.8 from /pytorch/aten/src/ATen/native/cpu/UpSampleKernel.cpp:2, +#10 1459.8 from aten/src/ATen/native/cpu/UpSampleKernel.cpp.AVX2.cpp:1: +#10 1459.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1459.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1459.8 37 | res = *tempRes; +#10 1459.8 | ~~~~^~~~~~~~~~ +#10 1459.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1459.8 28 | uint32_t tmp = src; +#10 1459.8 | ^~~ +#10 1459.9 [5885/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp.o +#10 1459.9 In file included from ../c10/core/ScalarType.h:3, +#10 1459.9 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1459.9 from ../aten/src/ATen/Dispatch.h:3, +#10 1459.9 from /pytorch/aten/src/ATen/native/cpu/SoftMaxKernel.cpp:8, +#10 1459.9 from aten/src/ATen/native/cpu/SoftMaxKernel.cpp.AVX2.cpp:1: +#10 1459.9 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1459.9 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1459.9 37 | res = *tempRes; +#10 1459.9 | ~~~~^~~~~~~~~~ +#10 1459.9 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1459.9 28 | uint32_t tmp = src; +#10 1459.9 | ^~~ +#10 1462.0 [5886/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.AVX2.cpp.o +#10 1465.8 [5887/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.AVX2.cpp.o +#10 1465.8 In file included from ../c10/core/ScalarType.h:3, +#10 1465.8 from ../c10/core/Scalar.h:11, +#10 1465.8 from ../aten/src/ATen/native/RangeFactories.h:2, +#10 1465.8 from /pytorch/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp:2, +#10 1465.8 from aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.AVX2.cpp:1: +#10 1465.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1465.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1465.8 37 | res = *tempRes; +#10 1465.8 | ~~~~^~~~~~~~~~ +#10 1465.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1465.8 28 | uint32_t tmp = src; +#10 1465.8 | ^~~ +#10 1466.5 [5888/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.AVX2.cpp.o +#10 1466.5 In file included from ../c10/core/ScalarType.h:3, +#10 1466.5 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1466.5 from ../aten/src/ATen/Dispatch.h:3, +#10 1466.5 from /pytorch/aten/src/ATen/native/cpu/PowKernel.cpp:3, +#10 1466.5 from aten/src/ATen/native/cpu/PowKernel.cpp.AVX2.cpp:1: +#10 1466.5 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1466.5 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1466.5 37 | res = *tempRes; +#10 1466.5 | ~~~~^~~~~~~~~~ +#10 1466.5 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1466.5 28 | uint32_t tmp = src; +#10 1466.5 | ^~~ +#10 1466.6 [5889/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.AVX2.cpp.o +#10 1466.7 In file included from ../c10/core/ScalarType.h:3, +#10 1466.7 from ../c10/core/Scalar.h:11, +#10 1466.7 from aten/src/ATen/core/TensorBody.h:16, +#10 1466.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 1466.7 from /pytorch/aten/src/ATen/native/cpu/MultinomialKernel.cpp:2, +#10 1466.7 from aten/src/ATen/native/cpu/MultinomialKernel.cpp.AVX2.cpp:1: +#10 1466.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1466.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1466.7 37 | res = *tempRes; +#10 1466.7 | ~~~~^~~~~~~~~~ +#10 1466.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1466.7 28 | uint32_t tmp = src; +#10 1466.7 | ^~~ +#10 1467.4 [5890/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp.o +#10 1467.4 In file included from ../c10/core/ScalarType.h:3, +#10 1467.4 from ../c10/core/Scalar.h:11, +#10 1467.4 from aten/src/ATen/core/TensorBody.h:16, +#10 1467.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 1467.4 from /pytorch/aten/src/ATen/native/cpu/TensorCompareKernel.cpp:2, +#10 1467.4 from aten/src/ATen/native/cpu/TensorCompareKernel.cpp.AVX2.cpp:1: +#10 1467.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1467.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1467.4 37 | res = *tempRes; +#10 1467.4 | ~~~~^~~~~~~~~~ +#10 1467.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1467.4 28 | uint32_t tmp = src; +#10 1467.4 | ^~~ +#10 1467.7 [5891/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.AVX2.cpp.o +#10 1468.2 [5892/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.AVX2.cpp.o +#10 1468.7 [5893/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.AVX2.cpp.o +#10 1469.8 [5894/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.AVX2.cpp.o +#10 1469.8 In file included from ../c10/core/ScalarType.h:3, +#10 1469.8 from ../c10/core/Scalar.h:11, +#10 1469.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1469.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1469.8 from /pytorch/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp:2, +#10 1469.8 from aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.AVX2.cpp:1: +#10 1469.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1469.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1469.8 37 | res = *tempRes; +#10 1469.8 | ~~~~^~~~~~~~~~ +#10 1469.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1469.8 28 | uint32_t tmp = src; +#10 1469.8 | ^~~ +#10 1471.0 [5895/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.AVX2.cpp.o +#10 1471.0 In file included from ../c10/core/ScalarType.h:3, +#10 1471.0 from ../c10/core/Scalar.h:11, +#10 1471.0 from aten/src/ATen/core/TensorBody.h:16, +#10 1471.0 from ../aten/src/ATen/core/Tensor.h:3, +#10 1471.0 from /pytorch/aten/src/ATen/native/cpu/MaxPooling.cpp:2, +#10 1471.0 from aten/src/ATen/native/cpu/MaxPooling.cpp.AVX2.cpp:1: +#10 1471.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1471.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1471.0 37 | res = *tempRes; +#10 1471.0 | ~~~~^~~~~~~~~~ +#10 1471.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1471.0 28 | uint32_t tmp = src; +#10 1471.0 | ^~~ +#10 1471.6 [5896/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.AVX2.cpp.o +#10 1471.6 In file included from ../c10/core/ScalarType.h:3, +#10 1471.6 from ../c10/core/Scalar.h:11, +#10 1471.6 from aten/src/ATen/core/TensorBody.h:16, +#10 1471.6 from ../aten/src/ATen/core/Tensor.h:3, +#10 1471.6 from /pytorch/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp:2, +#10 1471.6 from aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.AVX2.cpp:1: +#10 1471.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1471.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1471.6 37 | res = *tempRes; +#10 1471.6 | ~~~~^~~~~~~~~~ +#10 1471.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1471.6 28 | uint32_t tmp = src; +#10 1471.6 | ^~~ +#10 1472.8 [5897/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.o +#10 1472.8 In file included from ../c10/core/ScalarType.h:3, +#10 1472.8 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1472.8 from ../aten/src/ATen/Dispatch.h:3, +#10 1472.8 from /pytorch/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp:4, +#10 1472.8 from aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp:1: +#10 1472.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1472.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1472.8 37 | res = *tempRes; +#10 1472.8 | ~~~~^~~~~~~~~~ +#10 1472.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1472.8 28 | uint32_t tmp = src; +#10 1472.8 | ^~~ +#10 1473.7 [5898/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.AVX2.cpp.o +#10 1473.7 In file included from ../c10/core/ScalarType.h:3, +#10 1473.7 from ../aten/src/ATen/OpMathType.h:3, +#10 1473.7 from ../aten/src/ATen/native/Lerp.h:4, +#10 1473.7 from /pytorch/aten/src/ATen/native/cpu/LerpKernel.cpp:2, +#10 1473.7 from aten/src/ATen/native/cpu/LerpKernel.cpp.AVX2.cpp:1: +#10 1473.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1473.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1473.7 37 | res = *tempRes; +#10 1473.7 | ~~~~^~~~~~~~~~ +#10 1473.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1473.7 28 | uint32_t tmp = src; +#10 1473.7 | ^~~ +#10 1474.2 [5899/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.AVX2.cpp.o +#10 1474.2 In file included from ../c10/core/ScalarType.h:3, +#10 1474.2 from ../c10/core/Scalar.h:11, +#10 1474.2 from aten/src/ATen/core/TensorBody.h:16, +#10 1474.2 from ../aten/src/ATen/core/Tensor.h:3, +#10 1474.2 from ../aten/src/ATen/native/AdaptivePooling.h:3, +#10 1474.2 from /pytorch/aten/src/ATen/native/cpu/MaxPoolKernel.cpp:2, +#10 1474.2 from aten/src/ATen/native/cpu/MaxPoolKernel.cpp.AVX2.cpp:1: +#10 1474.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1474.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1474.2 37 | res = *tempRes; +#10 1474.2 | ~~~~^~~~~~~~~~ +#10 1474.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1474.2 28 | uint32_t tmp = src; +#10 1474.2 | ^~~ +#10 1476.1 [5900/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.AVX2.cpp.o +#10 1476.1 In file included from ../c10/core/ScalarType.h:3, +#10 1476.1 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1476.1 from ../aten/src/ATen/Dispatch.h:3, +#10 1476.1 from /pytorch/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp:3, +#10 1476.1 from aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.AVX2.cpp:1: +#10 1476.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1476.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1476.1 37 | res = *tempRes; +#10 1476.1 | ~~~~^~~~~~~~~~ +#10 1476.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1476.1 28 | uint32_t tmp = src; +#10 1476.1 | ^~~ +#10 1476.3 [5901/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.AVX2.cpp.o +#10 1476.3 In file included from ../c10/core/ScalarType.h:3, +#10 1476.3 from ../c10/core/Scalar.h:11, +#10 1476.3 from aten/src/ATen/core/TensorBody.h:16, +#10 1476.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 1476.3 from ../aten/src/ATen/native/Histogram.h:3, +#10 1476.3 from /pytorch/aten/src/ATen/native/cpu/HistogramKernel.cpp:2, +#10 1476.3 from aten/src/ATen/native/cpu/HistogramKernel.cpp.AVX2.cpp:1: +#10 1476.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1476.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1476.3 37 | res = *tempRes; +#10 1476.3 | ~~~~^~~~~~~~~~ +#10 1476.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1476.3 28 | uint32_t tmp = src; +#10 1476.3 | ^~~ +#10 1477.0 [5902/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.AVX2.cpp.o +#10 1477.0 In file included from ../c10/core/ScalarType.h:3, +#10 1477.0 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1477.0 from ../aten/src/ATen/Dispatch.h:3, +#10 1477.0 from /pytorch/aten/src/ATen/native/cpu/FillKernel.cpp:2, +#10 1477.0 from aten/src/ATen/native/cpu/FillKernel.cpp.AVX2.cpp:1: +#10 1477.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1477.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1477.0 37 | res = *tempRes; +#10 1477.0 | ~~~~^~~~~~~~~~ +#10 1477.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1477.0 28 | uint32_t tmp = src; +#10 1477.0 | ^~~ +#10 1477.1 [5903/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.AVX2.cpp.o +#10 1477.1 In file included from ../c10/core/ScalarType.h:3, +#10 1477.1 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1477.1 from /pytorch/aten/src/ATen/native/cpu/SortingKernel.cpp:3, +#10 1477.1 from aten/src/ATen/native/cpu/SortingKernel.cpp.AVX2.cpp:1: +#10 1477.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1477.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1477.1 37 | res = *tempRes; +#10 1477.1 | ~~~~^~~~~~~~~~ +#10 1477.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1477.1 28 | uint32_t tmp = src; +#10 1477.1 | ^~~ +#10 1479.0 [5904/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.AVX2.cpp.o +#10 1479.6 [5905/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.AVX2.cpp.o +#10 1479.6 In file included from ../c10/core/ScalarType.h:3, +#10 1479.6 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1479.6 from ../aten/src/ATen/native/NonEmptyUtils.h:1, +#10 1479.6 from /pytorch/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp:2, +#10 1479.6 from aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.AVX2.cpp:1: +#10 1479.6 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1479.6 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1479.6 37 | res = *tempRes; +#10 1479.6 | ~~~~^~~~~~~~~~ +#10 1479.6 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1479.6 28 | uint32_t tmp = src; +#10 1479.6 | ^~~ +#10 1480.1 [5906/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.AVX2.cpp.o +#10 1480.1 In file included from ../c10/core/ScalarType.h:3, +#10 1480.1 from ../c10/core/Scalar.h:11, +#10 1480.1 from aten/src/ATen/core/TensorBody.h:16, +#10 1480.1 from ../aten/src/ATen/core/Tensor.h:3, +#10 1480.1 from /pytorch/aten/src/ATen/native/cpu/CrossKernel.cpp:9, +#10 1480.1 from aten/src/ATen/native/cpu/CrossKernel.cpp.AVX2.cpp:1: +#10 1480.1 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1480.1 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1480.1 37 | res = *tempRes; +#10 1480.1 | ~~~~^~~~~~~~~~ +#10 1480.1 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1480.1 28 | uint32_t tmp = src; +#10 1480.1 | ^~~ +#10 1480.8 [5907/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.AVX2.cpp.o +#10 1480.8 In file included from ../c10/core/ScalarType.h:3, +#10 1480.8 from ../c10/core/Scalar.h:11, +#10 1480.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1480.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1480.8 from /pytorch/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp:3, +#10 1480.8 from aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.AVX2.cpp:1: +#10 1480.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1480.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1480.8 37 | res = *tempRes; +#10 1480.8 | ~~~~^~~~~~~~~~ +#10 1480.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1480.8 28 | uint32_t tmp = src; +#10 1480.8 | ^~~ +#10 1481.7 [5908/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.AVX2.cpp.o +#10 1481.8 [5909/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp.o +#10 1481.8 In file included from ../c10/core/ScalarType.h:3, +#10 1481.8 from ../c10/core/Scalar.h:11, +#10 1481.8 from aten/src/ATen/core/TensorBody.h:16, +#10 1481.8 from ../aten/src/ATen/core/Tensor.h:3, +#10 1481.8 from /pytorch/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp:4, +#10 1481.8 from aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.AVX2.cpp:1: +#10 1481.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1481.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1481.8 37 | res = *tempRes; +#10 1481.8 | ~~~~^~~~~~~~~~ +#10 1481.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1481.8 28 | uint32_t tmp = src; +#10 1481.8 | ^~~ +#10 1482.5 [5910/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.AVX2.cpp.o +#10 1482.6 [5911/6823] Linking CXX static library lib/libcaffe2_protos.a +#10 1483.0 [5912/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.AVX2.cpp.o +#10 1484.6 [5913/6823] Building CXX object test_edge_op_registration/CMakeFiles/test_edge_op_registration.dir/test_main.cpp.o +#10 1485.0 [5914/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.AVX2.cpp.o +#10 1486.7 [5915/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.AVX2.cpp.o +#10 1486.7 In file included from ../c10/core/ScalarType.h:3, +#10 1486.7 from ../c10/core/StorageImpl.h:4, +#10 1486.7 from ../c10/core/Storage.h:3, +#10 1486.7 from ../c10/core/TensorImpl.h:8, +#10 1486.7 from ../c10/core/GeneratorImpl.h:8, +#10 1486.7 from ../aten/src/ATen/core/Generator.h:22, +#10 1486.7 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1486.7 from /pytorch/aten/src/ATen/native/cpu/DistributionKernels.cpp:2, +#10 1486.7 from aten/src/ATen/native/cpu/DistributionKernels.cpp.AVX2.cpp:1: +#10 1486.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1486.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1486.7 37 | res = *tempRes; +#10 1486.7 | ~~~~^~~~~~~~~~ +#10 1486.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1486.7 28 | uint32_t tmp = src; +#10 1486.7 | ^~~ +#10 1488.3 [5916/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.AVX2.cpp.o +#10 1488.3 In file included from ../c10/core/ScalarType.h:3, +#10 1488.3 from ../c10/core/Scalar.h:11, +#10 1488.3 from aten/src/ATen/core/TensorBody.h:16, +#10 1488.3 from ../aten/src/ATen/core/Tensor.h:3, +#10 1488.3 from /pytorch/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp:2, +#10 1488.3 from aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.AVX2.cpp:1: +#10 1488.3 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1488.3 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1488.3 37 | res = *tempRes; +#10 1488.3 | ~~~~^~~~~~~~~~ +#10 1488.3 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1488.3 28 | uint32_t tmp = src; +#10 1488.3 | ^~~ +#10 1488.4 [5917/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.AVX2.cpp.o +#10 1488.4 In file included from ../c10/core/ScalarType.h:3, +#10 1488.4 from ../c10/core/Scalar.h:11, +#10 1488.4 from aten/src/ATen/core/TensorBody.h:16, +#10 1488.4 from ../aten/src/ATen/core/Tensor.h:3, +#10 1488.4 from /pytorch/aten/src/ATen/native/cpu/AvgPoolKernel.cpp:2, +#10 1488.4 from aten/src/ATen/native/cpu/AvgPoolKernel.cpp.AVX2.cpp:1: +#10 1488.4 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1488.4 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1488.4 37 | res = *tempRes; +#10 1488.4 | ~~~~^~~~~~~~~~ +#10 1488.4 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1488.4 28 | uint32_t tmp = src; +#10 1488.4 | ^~~ +#10 1489.0 [5918/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.AVX2.cpp.o +#10 1489.0 In file included from ../c10/core/ScalarType.h:3, +#10 1489.0 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1489.0 from ../aten/src/ATen/Dispatch.h:3, +#10 1489.0 from /pytorch/aten/src/ATen/native/cpu/BlasKernel.cpp:2, +#10 1489.0 from aten/src/ATen/native/cpu/BlasKernel.cpp.AVX2.cpp:1: +#10 1489.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1489.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1489.0 37 | res = *tempRes; +#10 1489.0 | ~~~~^~~~~~~~~~ +#10 1489.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1489.0 28 | uint32_t tmp = src; +#10 1489.0 | ^~~ +#10 1489.7 [5919/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.AVX2.cpp.o +#10 1489.7 In file included from ../c10/core/ScalarType.h:3, +#10 1489.7 from ../c10/core/Scalar.h:11, +#10 1489.7 from aten/src/ATen/core/TensorBody.h:16, +#10 1489.7 from ../aten/src/ATen/core/Tensor.h:3, +#10 1489.7 from /pytorch/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp:2, +#10 1489.7 from aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.AVX2.cpp:1: +#10 1489.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1489.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1489.7 37 | res = *tempRes; +#10 1489.7 | ~~~~^~~~~~~~~~ +#10 1489.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1489.7 28 | uint32_t tmp = src; +#10 1489.7 | ^~~ +#10 1491.2 [5920/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp.o +#10 1491.2 In file included from ../c10/core/ScalarType.h:3, +#10 1491.2 from ../c10/core/StorageImpl.h:4, +#10 1491.2 from ../c10/core/Storage.h:3, +#10 1491.2 from ../c10/core/TensorImpl.h:8, +#10 1491.2 from ../c10/core/GeneratorImpl.h:8, +#10 1491.2 from ../aten/src/ATen/core/Generator.h:22, +#10 1491.2 from ../aten/src/ATen/Generator.h:2, +#10 1491.2 from ../aten/src/ATen/native/UnaryOps.h:4, +#10 1491.2 from /pytorch/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp:2, +#10 1491.2 from aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.AVX2.cpp:1: +#10 1491.2 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1491.2 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1491.2 37 | res = *tempRes; +#10 1491.2 | ~~~~^~~~~~~~~~ +#10 1491.2 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1491.2 28 | uint32_t tmp = src; +#10 1491.2 | ^~~ +#10 1491.5 [5921/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/custom_ops.cpp.o +#10 1492.4 [5922/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/__/out/RegisterCPUCustomOps.cpp.o +#10 1493.8 [5923/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.AVX2.cpp.o +#10 1493.8 In file included from ../c10/core/ScalarType.h:3, +#10 1493.8 from ../c10/core/StorageImpl.h:4, +#10 1493.8 from ../c10/core/Storage.h:3, +#10 1493.8 from ../c10/core/TensorImpl.h:8, +#10 1493.8 from ../c10/core/GeneratorImpl.h:8, +#10 1493.8 from ../aten/src/ATen/core/Generator.h:22, +#10 1493.8 from ../aten/src/ATen/CPUGeneratorImpl.h:3, +#10 1493.8 from ../aten/src/ATen/Context.h:3, +#10 1493.8 from /pytorch/aten/src/ATen/native/cpu/IndexKernel.cpp:7, +#10 1493.8 from aten/src/ATen/native/cpu/IndexKernel.cpp.AVX2.cpp:1: +#10 1493.8 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1493.8 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1493.8 37 | res = *tempRes; +#10 1493.8 | ~~~~^~~~~~~~~~ +#10 1493.8 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1493.8 28 | uint32_t tmp = src; +#10 1493.8 | ^~~ +#10 1494.2 [5924/6823] Building CXX object test_edge_op_registration/CMakeFiles/test_edge_op_registration.dir/test_operator_registration.cpp.o +#10 1495.5 [5925/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/operator_registry.cpp.o +#10 1496.1 [5926/6823] Building CXX object test_edge_op_registration/CMakeFiles/unbox_lib.dir/__/out/RegisterCodegenUnboxedKernelsEverything.cpp.o +#10 1496.4 [5927/6823] Building CXX object test_cpp_c10d/CMakeFiles/FileStoreTest.dir/FileStoreTest.cpp.o +#10 1498.0 [5928/6823] Building CXX object test_cpp_c10d/CMakeFiles/HashStoreTest.dir/HashStoreTest.cpp.o +#10 1498.4 [5929/6823] Building CXX object test_cpp_c10d/CMakeFiles/TCPStoreTest.dir/TCPStoreTest.cpp.o +#10 1499.2 [5930/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.AVX2.cpp.o +#10 1499.6 [5931/6823] Building CXX object test_cpp_c10d/CMakeFiles/example_allreduce.dir/example/allreduce.cpp.o +#10 1501.0 [5932/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp.o +#10 1501.0 In file included from ../c10/core/ScalarType.h:3, +#10 1501.0 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1501.0 from ../aten/src/ATen/Dispatch.h:3, +#10 1501.0 from /pytorch/aten/src/ATen/native/cpu/Activation.cpp:12, +#10 1501.0 from aten/src/ATen/native/cpu/Activation.cpp.AVX2.cpp:1: +#10 1501.0 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1501.0 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1501.0 37 | res = *tempRes; +#10 1501.0 | ~~~~^~~~~~~~~~ +#10 1501.0 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1501.0 28 | uint32_t tmp = src; +#10 1501.0 | ^~~ +#10 1502.6 [5933/6823] Building CXX object test_cpp_c10d/CMakeFiles/ProcessGroupGlooTest.dir/ProcessGroupGlooTest.cpp.o +#10 1502.7 [5934/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.AVX2.cpp.o +#10 1502.7 In file included from ../c10/core/ScalarType.h:3, +#10 1502.7 from ../aten/src/ATen/core/DeprecatedTypeProperties.h:4, +#10 1502.7 from ../aten/src/ATen/Dispatch.h:3, +#10 1502.7 from /pytorch/aten/src/ATen/native/cpu/CopyKernel.cpp:2, +#10 1502.7 from aten/src/ATen/native/cpu/CopyKernel.cpp.AVX2.cpp:1: +#10 1502.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1502.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1502.7 37 | res = *tempRes; +#10 1502.7 | ~~~~^~~~~~~~~~ +#10 1502.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1502.7 28 | uint32_t tmp = src; +#10 1502.7 | ^~~ +#10 1521.7 [5935/6823] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp.o +#10 1521.7 In file included from ../c10/core/ScalarType.h:3, +#10 1521.7 from ../aten/src/ATen/core/TensorBase.h:6, +#10 1521.7 from ../aten/src/ATen/native/BinaryOps.h:3, +#10 1521.7 from /pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp:2, +#10 1521.7 from aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.AVX2.cpp:1: +#10 1521.7 ../c10/util/BFloat16.h: In function ‘float c10::detail::f32_from_bits(uint16_t)’: +#10 1521.7 ../c10/util/BFloat16.h:37:7: warning: ‘tmp’ is used uninitialized [-Wuninitialized] +#10 1521.7 37 | res = *tempRes; +#10 1521.7 | ~~~~^~~~~~~~~~ +#10 1521.7 ../c10/util/BFloat16.h:28:12: note: ‘tmp’ declared here +#10 1521.7 28 | uint32_t tmp = src; +#10 1521.7 | ^~~ +#10 1530.0 [5936/6823] Linking CXX shared library lib/libtorch_cpu.so +#10 1547.6 [5937/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationLeakyReluKernel.hip.o +#10 1547.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1547.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1548.4 [5938/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationSiluKernel.hip.o +#10 1548.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1548.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1548.7 [5939/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionUniform.hip.o +#10 1548.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1548.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1548.7 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1548.7 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1548.7 ^ +#10 1548.7 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1548.7 DEPRECATED("use atomicAdd instead") +#10 1548.7 ^ +#10 1548.7 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1548.7 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1548.7 ^ +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1548.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1548.7 hipGetLastError(); +#10 1548.7 ^~~~~~~~~~~~~~~ +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1548.7 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1548.7 hipEventDestroy(event_); +#10 1548.7 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1548.7 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1548.7 hipGetLastError(); +#10 1548.7 ^~~~~~~~~~~~~~~ +#10 1548.7 4 warnings generated when compiling for gfx803. +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1548.7 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1548.7 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1548.7 ^ +#10 1548.7 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1548.7 DEPRECATED("use atomicAdd instead") +#10 1548.7 ^ +#10 1548.7 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1548.7 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1548.7 ^ +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1548.7 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1548.7 hipGetLastError(); +#10 1548.7 ^~~~~~~~~~~~~~~ +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionUniform.hip:5: +#10 1548.7 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1548.7 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1548.7 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1548.7 hipEventDestroy(event_); +#10 1548.7 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1548.7 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1548.7 hipGetLastError(); +#10 1548.7 ^~~~~~~~~~~~~~~ +#10 1548.7 4 warnings generated when compiling for host. +#10 1549.3 [5940/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_jiterator.hip.o +#10 1549.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.3 In file included from /pytorch/aten/src/ATen/hip/jiterator.hip:6: +#10 1549.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.3 hipGetLastError(); +#10 1549.3 ^~~~~~~~~~~~~~~ +#10 1549.3 1 warning generated when compiling for gfx803. +#10 1549.3 In file included from /pytorch/aten/src/ATen/hip/jiterator.hip:6: +#10 1549.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1549.3 hipGetLastError(); +#10 1549.3 ^~~~~~~~~~~~~~~ +#10 1549.3 1 warning generated when compiling for host. +#10 1549.7 [5941/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationEluKernel.hip.o +#10 1549.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1549.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.5 [5942/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_AdaptiveAveragePooling.hip.o +#10 1553.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.5 In file included from /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip:7: +#10 1553.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1553.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1553.5 ^ +#10 1553.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1553.5 DEPRECATED("use atomicAdd instead") +#10 1553.5 ^ +#10 1553.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1553.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1553.5 ^ +#10 1553.5 1 warning generated when compiling for gfx803. +#10 1553.5 In file included from /pytorch/aten/src/ATen/native/hip/AdaptiveAveragePooling.hip:7: +#10 1553.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1553.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1553.5 ^ +#10 1553.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1553.5 DEPRECATED("use atomicAdd instead") +#10 1553.5 ^ +#10 1553.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1553.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1553.5 ^ +#10 1553.5 1 warning generated when compiling for host. +#10 1553.7 [5943/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationGluKernel.hip.o +#10 1553.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.7 [5944/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MaxUnpooling.hip.o +#10 1553.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1553.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1556.1 [5945/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationGeluKernel.hip.o +#10 1556.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1556.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1558.1 [5946/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryDivTrueKernel.hip.o +#10 1558.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1558.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1558.1 In file included from /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip:8: +#10 1558.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1558.1 hipGetLastError(); +#10 1558.1 ^~~~~~~~~~~~~~~ +#10 1558.1 1 warning generated when compiling for gfx803. +#10 1558.1 In file included from /pytorch/aten/src/ATen/native/hip/BinaryDivTrueKernel.hip:8: +#10 1558.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1558.1 hipGetLastError(); +#10 1558.1 ^~~~~~~~~~~~~~~ +#10 1558.1 1 warning generated when compiling for host. +#10 1560.9 [5947/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryGeometricKernels.hip.o +#10 1560.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1560.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1561.5 [5948/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ActivationHardshrinkKernel.hip.o +#10 1561.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1561.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1565.5 [5949/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_cub.hip.o +#10 1565.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1565.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1565.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1565.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1565.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, int, 1073741824>' requested here +#10 1565.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long, 1073741824>' requested here +#10 1565.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:50:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long *, at::cuda::cub::(anonymous namespace)::SumOp, long, 1073741824>' requested here +#10 1565.5 exclusive_scan(iter, output_idx, SumOp{}, int64_t{0}, n); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 12 warnings generated when compiling for gfx803. +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1565.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1565.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:22:3: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1565.5 inclusive_scan(input, output, Sum{}, num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, int, 1073741824>' requested here +#10 1565.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:32:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long, 1073741824>' requested here +#10 1565.5 exclusive_scan(input, output, SumOp{}, scalar_t(0), num_items); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.hip:50:3: note: in instantiation of function template specialization 'at::cuda::cub::exclusive_scan, long *, at::cuda::cub::(anonymous namespace)::SumOp, long, 1073741824>' requested here +#10 1565.5 exclusive_scan(iter, output_idx, SumOp{}, int64_t{0}, n); +#10 1565.5 ^ +#10 1565.5 In file included from /pytorch/aten/src/ATen/hip/cub.hip:3: +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:315:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1565.5 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::ExclusiveScan, +#10 1565.5 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1565.5 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1565.5 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1565.5 ^~~~ +#10 1565.5 12 warnings generated when compiling for host. +#10 1568.3 [5950/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_AbsKernel.hip.o +#10 1568.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1568.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1579.4 [5951/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMiscBackwardOpsKernels.hip.o +#10 1579.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1579.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1581.2 [5952/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ScatterGatherKernel.hip.o +#10 1581.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1581.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1581.2 In file included from /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip:15: +#10 1581.2 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1581.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1581.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1581.2 ^ +#10 1581.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1581.2 DEPRECATED("use atomicAdd instead") +#10 1581.2 ^ +#10 1581.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1581.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1581.2 ^ +#10 1581.2 1 warning generated when compiling for gfx803. +#10 1581.2 In file included from /pytorch/aten/src/ATen/native/hip/ScatterGatherKernel.hip:15: +#10 1581.2 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1581.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1581.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1581.2 ^ +#10 1581.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1581.2 DEPRECATED("use atomicAdd instead") +#10 1581.2 ^ +#10 1581.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1581.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1581.2 ^ +#10 1581.2 1 warning generated when compiling for host. +#10 1582.2 [5953/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Bucketization.hip.o +#10 1582.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1582.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1585.6 [5954/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMulKernel.hip.o +#10 1585.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1585.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1585.6 In file included from /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip:8: +#10 1585.6 In file included from /pytorch/aten/src/ATen/native/hip/BinaryInternal.h:11: +#10 1585.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1585.6 hipGetLastError(); +#10 1585.6 ^~~~~~~~~~~~~~~ +#10 1585.6 1 warning generated when compiling for gfx803. +#10 1585.6 In file included from /pytorch/aten/src/ATen/native/hip/BinaryMulKernel.hip:8: +#10 1585.6 In file included from /pytorch/aten/src/ATen/native/hip/BinaryInternal.h:11: +#10 1585.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1585.6 hipGetLastError(); +#10 1585.6 ^~~~~~~~~~~~~~~ +#10 1585.6 1 warning generated when compiling for host. +#10 1587.1 [5955/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Col2Im.hip.o +#10 1587.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1587.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1588.1 [5956/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CompareKernels.hip.o +#10 1588.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1588.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1590.5 [5957/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryShiftOpsKernels.hip.o +#10 1590.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1590.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1592.4 [5958/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ComplexKernel.hip.o +#10 1592.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1592.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1597.2 [5959/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CrossKernel.hip.o +#10 1597.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1597.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1599.9 [5960/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryMiscOpsKernels.hip.o +#10 1599.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1599.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1600.7 [5961/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ConvolutionMM2d.hip.o +#10 1600.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1600.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1602.6 [5962/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumminmaxKernel.hip.o +#10 1602.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1602.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1608.0 [5963/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CopysignKernel.hip.o +#10 1608.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1608.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1610.9 [5964/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryLogicalOpsKernels.hip.o +#10 1610.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1610.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1612.8 [5965/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_BinaryRemainderKernel.hip.o +#10 1612.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1612.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1613.5 [5966/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DepthwiseConv2d.hip.o +#10 1613.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1613.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1616.0 [5967/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CompareEQKernel.hip.o +#10 1616.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1616.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1619.4 [5968/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Copy.hip.o +#10 1619.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1619.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1619.4 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1619.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1619.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1619.4 hipGetLastError(); +#10 1619.4 ^~~~~~~~~~~~~~~ +#10 1619.4 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1619.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1619.4 hipEventDestroy(event_); +#10 1619.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1619.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1619.4 hipGetLastError(); +#10 1619.4 ^~~~~~~~~~~~~~~ +#10 1619.4 3 warnings generated when compiling for gfx803. +#10 1619.4 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1619.4 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1619.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1619.4 hipGetLastError(); +#10 1619.4 ^~~~~~~~~~~~~~~ +#10 1619.4 In file included from /pytorch/aten/src/ATen/native/hip/Copy.hip:8: +#10 1619.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1619.4 hipEventDestroy(event_); +#10 1619.4 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1619.4 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1619.4 hipGetLastError(); +#10 1619.4 ^~~~~~~~~~~~~~~ +#10 1619.4 3 warnings generated when compiling for host. +#10 1624.4 [5969/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DilatedMaxPool2d.hip.o +#10 1624.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1624.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1625.1 [5970/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistanceKernel.hip.o +#10 1625.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1625.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1628.7 [5971/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DepthwiseConv3d.hip.o +#10 1628.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1628.7 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 conv_depthwise3d_cuda_backward_weight_kernel( +#10 1628.7 ^ +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 /pytorch/aten/src/ATen/native/hip/DepthwiseConv3d.hip:184:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1628.7 9 warnings generated when compiling for gfx803. +#10 1629.1 [5972/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumsumKernel.hip.o +#10 1629.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1629.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 22 warnings generated when compiling for gfx803. +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::plus>, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::plus>>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1629.1 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1629.1 ^ +#10 1629.1 /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:17:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1629.1 scan_dim( +#10 1629.1 ^ +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/CumsumKernel.hip:7: +#10 1629.1 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1629.1 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1629.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1629.1 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1629.1 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1629.1 ^~~~ +#10 1629.1 22 warnings generated when compiling for host. +#10 1630.0 [5973/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionExponentialKernel.hip.o +#10 1630.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1630.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1630.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1630.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1630.0 ^ +#10 1630.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1630.0 DEPRECATED("use atomicAdd instead") +#10 1630.0 ^ +#10 1630.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1630.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1630.0 ^ +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1630.0 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1630.0 hipGetLastError(); +#10 1630.0 ^~~~~~~~~~~~~~~ +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1630.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1630.0 hipEventDestroy(event_); +#10 1630.0 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1630.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1630.0 hipGetLastError(); +#10 1630.0 ^~~~~~~~~~~~~~~ +#10 1630.0 4 warnings generated when compiling for gfx803. +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1630.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1630.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1630.0 ^ +#10 1630.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1630.0 DEPRECATED("use atomicAdd instead") +#10 1630.0 ^ +#10 1630.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1630.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1630.0 ^ +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1630.0 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1630.0 hipGetLastError(); +#10 1630.0 ^~~~~~~~~~~~~~~ +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionExponentialKernel.hip:5: +#10 1630.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1630.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1630.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1630.0 hipEventDestroy(event_); +#10 1630.0 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1630.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1630.0 hipGetLastError(); +#10 1630.0 ^~~~~~~~~~~~~~~ +#10 1630.0 4 warnings generated when compiling for host. +#10 1630.4 [5974/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DilatedMaxPool3d.hip.o +#10 1630.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1630.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1630.4 In file included from /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip:11: +#10 1630.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1630.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1630.4 ^ +#10 1630.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1630.4 DEPRECATED("use atomicAdd instead") +#10 1630.4 ^ +#10 1630.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1630.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1630.4 ^ +#10 1630.4 1 warning generated when compiling for gfx803. +#10 1630.4 In file included from /pytorch/aten/src/ATen/native/hip/DilatedMaxPool3d.hip:11: +#10 1630.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1630.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1630.4 ^ +#10 1630.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1630.4 DEPRECATED("use atomicAdd instead") +#10 1630.4 ^ +#10 1630.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1630.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1630.4 ^ +#10 1630.4 1 warning generated when compiling for host. +#10 1632.0 [5975/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_DistributionNormal.hip.o +#10 1632.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1632.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1632.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1632.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1632.0 ^ +#10 1632.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1632.0 DEPRECATED("use atomicAdd instead") +#10 1632.0 ^ +#10 1632.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1632.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1632.0 ^ +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1632.0 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.0 hipGetLastError(); +#10 1632.0 ^~~~~~~~~~~~~~~ +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1632.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.0 hipEventDestroy(event_); +#10 1632.0 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1632.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.0 hipGetLastError(); +#10 1632.0 ^~~~~~~~~~~~~~~ +#10 1632.0 4 warnings generated when compiling for gfx803. +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:11: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1632.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1632.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1632.0 ^ +#10 1632.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1632.0 DEPRECATED("use atomicAdd instead") +#10 1632.0 ^ +#10 1632.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1632.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1632.0 ^ +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1632.0 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.0 hipGetLastError(); +#10 1632.0 ^~~~~~~~~~~~~~~ +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionNormal.hip:5: +#10 1632.0 In file included from /pytorch/aten/src/ATen/native/hip/DistributionTemplates.h:14: +#10 1632.0 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1632.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.0 hipEventDestroy(event_); +#10 1632.0 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1632.0 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1632.0 hipGetLastError(); +#10 1632.0 ^~~~~~~~~~~~~~~ +#10 1632.0 4 warnings generated when compiling for host. +#10 1633.3 [5976/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_CumprodKernel.hip.o +#10 1633.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1633.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 22 warnings generated when compiling for gfx803. +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, std::multiplies>, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim, std::multiplies>>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.3 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.3 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.3 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.3 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.3 ^~~~ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.3 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.3 ^ +#10 1633.3 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.3 scan_dim( +#10 1633.3 ^ +#10 1633.3 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.4 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.4 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.4 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.4 ^~~~ +#10 1633.4 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.4 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1633.4 ^~~~ +#10 1633.4 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan, 1073741824>' requested here +#10 1633.4 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1633.4 ^ +#10 1633.4 /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:15:9: note: in instantiation of function template specialization 'at::native::scan_dim>' requested here +#10 1633.4 scan_dim( +#10 1633.4 ^ +#10 1633.4 In file included from /pytorch/aten/src/ATen/native/hip/CumprodKernel.hip:7: +#10 1633.4 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1633.4 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1633.4 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1633.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1633.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1633.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1633.4 ^~~~ +#10 1633.4 22 warnings generated when compiling for host. +#10 1637.8 [5977/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReplicationPadding.hip.o +#10 1637.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1637.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1637.8 In file included from /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip:7: +#10 1637.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1637.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1637.8 ^ +#10 1637.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1637.8 DEPRECATED("use atomicAdd instead") +#10 1637.8 ^ +#10 1637.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1637.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1637.8 ^ +#10 1637.8 1 warning generated when compiling for gfx803. +#10 1637.8 In file included from /pytorch/aten/src/ATen/native/hip/ReplicationPadding.hip:7: +#10 1637.8 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1637.8 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1637.8 ^ +#10 1637.8 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1637.8 DEPRECATED("use atomicAdd instead") +#10 1637.8 ^ +#10 1637.8 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1637.8 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1637.8 ^ +#10 1637.8 1 warning generated when compiling for host. +#10 1637.8 [5978/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Repeat.hip.o +#10 1637.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1637.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1645.2 [5979/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_EmbeddingBackwardKernel.hip.o +#10 1645.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1645.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1645.2 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip:4: +#10 1645.2 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1645.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1645.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1645.2 ^ +#10 1645.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1645.2 DEPRECATED("use atomicAdd instead") +#10 1645.2 ^ +#10 1645.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1645.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1645.2 ^ +#10 1645.2 1 warning generated when compiling for gfx803. +#10 1645.2 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.hip:4: +#10 1645.2 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1645.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1645.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1645.2 ^ +#10 1645.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1645.2 DEPRECATED("use atomicAdd instead") +#10 1645.2 ^ +#10 1645.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1645.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1645.2 ^ +#10 1645.2 1 warning generated when compiling for host. +#10 1649.3 [5980/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FillKernel.hip.o +#10 1649.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1649.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1649.4 [5981/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Embedding.hip.o +#10 1649.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1649.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:15: +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1649.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1649.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1649.4 ^ +#10 1649.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1649.4 DEPRECATED("use atomicAdd instead") +#10 1649.4 ^ +#10 1649.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1649.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1649.4 ^ +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1649.4 cuda::cub::unique( +#10 1649.4 ^ +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1649.4 cuda::cub::unique( +#10 1649.4 ^ +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 5 warnings generated when compiling for gfx803. +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:15: +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBackwardKernel.cuh:4: +#10 1649.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1649.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1649.4 ^ +#10 1649.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1649.4 DEPRECATED("use atomicAdd instead") +#10 1649.4 ^ +#10 1649.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1649.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1649.4 ^ +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1649.4 cuda::cub::unique( +#10 1649.4 ^ +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 /pytorch/aten/src/ATen/native/hip/Embedding.hip:365:16: note: in instantiation of function template specialization 'at::cuda::cub::unique' requested here +#10 1649.4 cuda::cub::unique( +#10 1649.4 ^ +#10 1649.4 In file included from /pytorch/aten/src/ATen/native/hip/Embedding.hip:13: +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:395:38: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1649.4 CUB_WRAPPER(NO_ROCM(at_cuda_detail)::hipcub::DeviceSelect::Unique, +#10 1649.4 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1649.4 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1649.4 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1649.4 ^~~~ +#10 1649.4 5 warnings generated when compiling for host. +#10 1655.0 [5982/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_EmbeddingBag.hip.o +#10 1655.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1655.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1655.0 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip:8: +#10 1655.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1655.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1655.0 ^ +#10 1655.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1655.0 DEPRECATED("use atomicAdd instead") +#10 1655.0 ^ +#10 1655.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1655.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1655.0 ^ +#10 1655.0 1 warning generated when compiling for gfx803. +#10 1655.0 In file included from /pytorch/aten/src/ATen/native/hip/EmbeddingBag.hip:8: +#10 1655.0 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1655.0 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1655.0 ^ +#10 1655.0 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1655.0 DEPRECATED("use atomicAdd instead") +#10 1655.0 ^ +#10 1655.0 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1655.0 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1655.0 ^ +#10 1655.0 1 warning generated when compiling for host. +#10 1659.3 [5983/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachReduceOp.hip.o +#10 1659.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1659.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1659.3 In file included from /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip:10: +#10 1659.3 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1659.3 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1659.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1659.3 hipGetLastError(); +#10 1659.3 ^~~~~~~~~~~~~~~ +#10 1659.3 1 warning generated when compiling for gfx803. +#10 1659.3 In file included from /pytorch/aten/src/ATen/native/hip/ForeachReduceOp.hip:10: +#10 1659.3 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1659.3 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1659.3 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1659.3 hipGetLastError(); +#10 1659.3 ^~~~~~~~~~~~~~~ +#10 1659.3 1 warning generated when compiling for host. +#10 1666.8 [5984/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachPointwiseOp.hip.o +#10 1666.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1666.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1666.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip:5: +#10 1666.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1666.8 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1666.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1666.8 hipGetLastError(); +#10 1666.8 ^~~~~~~~~~~~~~~ +#10 1666.8 1 warning generated when compiling for gfx803. +#10 1666.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachPointwiseOp.hip:5: +#10 1666.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1666.8 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1666.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1666.8 hipGetLastError(); +#10 1666.8 ^~~~~~~~~~~~~~~ +#10 1666.8 1 warning generated when compiling for host. +#10 1669.6 [5985/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FractionalMaxPool2d.hip.o +#10 1669.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1669.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1669.6 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip:7: +#10 1669.6 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1669.6 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1669.6 ^ +#10 1669.6 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1669.6 DEPRECATED("use atomicAdd instead") +#10 1669.6 ^ +#10 1669.6 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1669.6 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1669.6 ^ +#10 1669.6 1 warning generated when compiling for gfx803. +#10 1669.6 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool2d.hip:7: +#10 1669.6 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1669.6 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1669.6 ^ +#10 1669.6 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1669.6 DEPRECATED("use atomicAdd instead") +#10 1669.6 ^ +#10 1669.6 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1669.6 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1669.6 ^ +#10 1669.6 1 warning generated when compiling for host. +#10 1670.9 [5986/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachTernaryOp.hip.o +#10 1670.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1670.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1670.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip:6: +#10 1670.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1670.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1670.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1670.9 hipGetLastError(); +#10 1670.9 ^~~~~~~~~~~~~~~ +#10 1670.9 1 warning generated when compiling for gfx803. +#10 1670.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachTernaryOp.hip:6: +#10 1670.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1670.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1670.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1670.9 hipGetLastError(); +#10 1670.9 ^~~~~~~~~~~~~~~ +#10 1670.9 1 warning generated when compiling for host. +#10 1671.3 [5987/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FractionalMaxPool3d.hip.o +#10 1671.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1671.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1671.3 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip:7: +#10 1671.3 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1671.3 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1671.3 ^ +#10 1671.3 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1671.3 DEPRECATED("use atomicAdd instead") +#10 1671.3 ^ +#10 1671.3 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1671.3 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1671.3 ^ +#10 1671.3 1 warning generated when compiling for gfx803. +#10 1671.3 In file included from /pytorch/aten/src/ATen/native/hip/FractionalMaxPool3d.hip:7: +#10 1671.3 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1671.3 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1671.3 ^ +#10 1671.3 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1671.3 DEPRECATED("use atomicAdd instead") +#10 1671.3 ^ +#10 1671.3 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1671.3 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1671.3 ^ +#10 1671.3 1 warning generated when compiling for host. +#10 1672.2 [5988/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FunctionOfAMatrixUtilsKernel.hip.o +#10 1672.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1672.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1672.2 In file included from /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip:9: +#10 1672.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1672.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1672.2 ^ +#10 1672.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1672.2 DEPRECATED("use atomicAdd instead") +#10 1672.2 ^ +#10 1672.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1672.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1672.2 ^ +#10 1672.2 1 warning generated when compiling for gfx803. +#10 1672.2 In file included from /pytorch/aten/src/ATen/native/hip/FunctionOfAMatrixUtilsKernel.hip:9: +#10 1672.2 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1672.2 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1672.2 ^ +#10 1672.2 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1672.2 DEPRECATED("use atomicAdd instead") +#10 1672.2 ^ +#10 1672.2 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1672.2 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1672.2 ^ +#10 1672.2 1 warning generated when compiling for host. +#10 1672.8 [5989/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Dropout.hip.o +#10 1672.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1672.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1672.8 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1672.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1672.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1672.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1672.8 hipGetLastError(); +#10 1672.8 ^~~~~~~~~~~~~~~ +#10 1672.8 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1672.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1672.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1672.8 hipEventDestroy(event_); +#10 1672.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1672.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1672.8 hipGetLastError(); +#10 1672.8 ^~~~~~~~~~~~~~~ +#10 1672.8 3 warnings generated when compiling for gfx803. +#10 1672.8 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1672.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1672.8 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1672.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1672.8 hipGetLastError(); +#10 1672.8 ^~~~~~~~~~~~~~~ +#10 1672.8 In file included from /pytorch/aten/src/ATen/native/hip/Dropout.hip:11: +#10 1672.8 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1672.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1672.8 hipEventDestroy(event_); +#10 1672.8 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1672.8 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1672.8 hipGetLastError(); +#10 1672.8 ^~~~~~~~~~~~~~~ +#10 1672.8 3 warnings generated when compiling for host. +#10 1674.4 [5990/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpScalar.hip.o +#10 1674.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1674.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1674.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip:5: +#10 1674.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1674.4 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1674.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1674.4 hipGetLastError(); +#10 1674.4 ^~~~~~~~~~~~~~~ +#10 1674.4 1 warning generated when compiling for gfx803. +#10 1674.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalar.hip:5: +#10 1674.4 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1674.4 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1674.4 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1674.4 hipGetLastError(); +#10 1674.4 ^~~~~~~~~~~~~~~ +#10 1674.4 1 warning generated when compiling for host. +#10 1674.9 [5991/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpList.hip.o +#10 1674.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1674.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1674.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip:5: +#10 1674.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1674.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1674.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1674.9 hipGetLastError(); +#10 1674.9 ^~~~~~~~~~~~~~~ +#10 1674.9 1 warning generated when compiling for gfx803. +#10 1674.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpList.hip:5: +#10 1674.9 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1674.9 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1674.9 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1674.9 hipGetLastError(); +#10 1674.9 ^~~~~~~~~~~~~~~ +#10 1674.9 1 warning generated when compiling for host. +#10 1676.8 [5992/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ForeachBinaryOpScalarList.hip.o +#10 1676.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1676.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1676.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip:5: +#10 1676.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1676.8 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1676.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1676.8 hipGetLastError(); +#10 1676.8 ^~~~~~~~~~~~~~~ +#10 1676.8 1 warning generated when compiling for gfx803. +#10 1676.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachBinaryOpScalarList.hip:5: +#10 1676.8 In file included from /pytorch/aten/src/ATen/native/hip/ForeachFunctors.cuh:4: +#10 1676.8 In file included from /pytorch/aten/src/ATen/native/hip/MultiTensorApply.cuh:6: +#10 1676.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1676.8 hipGetLastError(); +#10 1676.8 ^~~~~~~~~~~~~~~ +#10 1676.8 1 warning generated when compiling for host. +#10 1677.0 [5993/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FusedAdamKernel.hip.o +#10 1677.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1677.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1680.0 [5994/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_FusedAdamWKernel.hip.o +#10 1680.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1680.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1683.6 [5995/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_GcdLcmKernel.hip.o +#10 1683.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1683.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1685.1 [5996/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_HIPScalar.hip.o +#10 1685.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1685.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1688.4 [5997/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Im2Col.hip.o +#10 1688.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1688.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1702.6 [5998/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Lerp.hip.o +#10 1702.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1702.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1703.0 [5999/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_IGammaKernel.hip.o +#10 1703.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1703.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1704.5 [6000/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LogAddExpKernel.hip.o +#10 1704.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1704.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1705.8 [6001/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceMomentKernel.hip.o +#10 1705.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1705.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1705.8 In file included from /pytorch/aten/src/ATen/native/hip/ReduceMomentKernel.hip:5: +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 __global__ void reduce_kernel(R reduction) { +#10 1705.8 ^ +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1705.8 252 warnings generated when compiling for gfx803. +#10 1715.6 [6002/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/hip/torch_hip_generated_cub-RadixSortKeys.hip.o +#10 1715.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1715.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 36 warnings generated when compiling for gfx803. +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:56:41: note: in instantiation of function template specialization 'at::cuda::cub::radix_sort_keys' requested here +#10 1715.6 AT_FORALL_SCALAR_TYPES_AND2(Bool, Half, AT_INSTATIATE_CUB_TEMPLATES) +#10 1715.6 ^ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:28:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeysDescending, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub-RadixSortKeys.hip:37:32: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1715.6 NO_ROCM(at_cuda_detail)::hipcub::DeviceRadixSort::SortKeys, +#10 1715.6 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1715.6 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1715.6 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1715.6 ^~~~ +#10 1715.6 36 warnings generated when compiling for host. +#10 1719.9 [6003/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LegacyThrustHelpers.hip.o +#10 1719.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1719.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1722.3 [6004/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LinearAlgebra.hip.o +#10 1722.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1722.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1724.0 [6005/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultiLabelMarginCriterion.hip.o +#10 1724.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1724.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1724.6 [6006/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LossCTC.hip.o +#10 1724.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1724.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1724.6 In file included from /pytorch/aten/src/ATen/native/hip/LossCTC.hip:19: +#10 1724.6 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1724.6 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1724.6 ^ +#10 1724.6 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1724.6 DEPRECATED("use atomicAdd instead") +#10 1724.6 ^ +#10 1724.6 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1724.6 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1724.6 ^ +#10 1724.6 1 warning generated when compiling for gfx803. +#10 1724.6 In file included from /pytorch/aten/src/ATen/native/hip/LossCTC.hip:19: +#10 1724.6 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1724.6 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1724.6 ^ +#10 1724.6 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1724.6 DEPRECATED("use atomicAdd instead") +#10 1724.6 ^ +#10 1724.6 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1724.6 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1724.6 ^ +#10 1724.6 1 warning generated when compiling for host. +#10 1727.4 [6007/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_GridSampler.hip.o +#10 1727.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1727.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1727.4 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.hip:7: +#10 1727.4 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.cuh:3: +#10 1727.4 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1727.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1727.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1727.4 ^ +#10 1727.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1727.4 DEPRECATED("use atomicAdd instead") +#10 1727.4 ^ +#10 1727.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1727.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1727.4 ^ +#10 1727.4 1 warning generated when compiling for gfx803. +#10 1727.4 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.hip:7: +#10 1727.4 In file included from /pytorch/aten/src/ATen/native/hip/GridSampler.cuh:3: +#10 1727.4 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1727.4 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1727.4 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1727.4 ^ +#10 1727.4 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1727.4 DEPRECATED("use atomicAdd instead") +#10 1727.4 ^ +#10 1727.4 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1727.4 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1727.4 ^ +#10 1727.4 1 warning generated when compiling for host. +#10 1735.6 [6008/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultinomialKernel.hip.o +#10 1735.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1735.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1735.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1735.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1735.6 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1735.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1735.6 hipGetLastError(); +#10 1735.6 ^~~~~~~~~~~~~~~ +#10 1735.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1735.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1735.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1735.6 hipEventDestroy(event_); +#10 1735.6 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1735.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1735.6 hipGetLastError(); +#10 1735.6 ^~~~~~~~~~~~~~~ +#10 1735.6 3 warnings generated when compiling for gfx803. +#10 1735.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1735.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1735.6 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1735.6 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1735.6 hipGetLastError(); +#10 1735.6 ^~~~~~~~~~~~~~~ +#10 1735.6 In file included from /pytorch/aten/src/ATen/native/hip/MultinomialKernel.hip:14: +#10 1735.6 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1735.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1735.6 hipEventDestroy(event_); +#10 1735.6 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1735.6 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1735.6 hipGetLastError(); +#10 1735.6 ^~~~~~~~~~~~~~~ +#10 1735.6 3 warnings generated when compiling for host. +#10 1735.9 [6009/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MultiMarginLoss.hip.o +#10 1735.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1735.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1739.6 [6010/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Loss.hip.o +#10 1739.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1739.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1744.6 [6011/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveConvolutionTranspose2d.hip.o +#10 1744.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1744.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1745.1 [6012/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NLLLoss2d.hip.o +#10 1745.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1745.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1745.1 In file included from /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip:8: +#10 1745.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1745.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1745.1 ^ +#10 1745.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1745.1 DEPRECATED("use atomicAdd instead") +#10 1745.1 ^ +#10 1745.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1745.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1745.1 ^ +#10 1745.1 1 warning generated when compiling for gfx803. +#10 1745.1 In file included from /pytorch/aten/src/ATen/native/hip/NLLLoss2d.hip:8: +#10 1745.1 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1745.1 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1745.1 ^ +#10 1745.1 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1745.1 DEPRECATED("use atomicAdd instead") +#10 1745.1 ^ +#10 1745.1 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1745.1 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1745.1 ^ +#10 1745.1 1 warning generated when compiling for host. +#10 1745.2 [6013/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveConvolutionTranspose3d.hip.o +#10 1745.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1745.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1749.1 [6014/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_NaiveDilatedConvolution.hip.o +#10 1749.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1749.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1749.5 [6015/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_IndexKernel.hip.o +#10 1749.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1749.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1749.5 In file included from /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:16: +#10 1749.5 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1749.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1749.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1749.5 ^ +#10 1749.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1749.5 DEPRECATED("use atomicAdd instead") +#10 1749.5 ^ +#10 1749.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1749.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:416:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1749.5 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:418:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1749.5 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 __global__ void index_elementwise_kernel(int N, func_t f) { +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:29:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1749.5 97 warnings generated when compiling for gfx803. +#10 1749.5 In file included from /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:16: +#10 1749.5 In file included from /pytorch/aten/src/ATen/native/hip/KernelUtils.cuh:3: +#10 1749.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1749.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1749.5 ^ +#10 1749.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1749.5 DEPRECATED("use atomicAdd instead") +#10 1749.5 ^ +#10 1749.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1749.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:416:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1749.5 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:418:5: note: in instantiation of function template specialization 'at::native::(anonymous namespace)::masked_scatter_cuda_impl' requested here +#10 1749.5 masked_scatter_cuda_impl(self, mask, maskPrefixSum, source); +#10 1749.5 ^ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:412:30: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 2 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:479:42: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX(__VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:413:34: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX' +#10 1749.5 AT_DISPATCH_CASE_COMPLEX_TYPES(__VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 note: (skipping 1 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all) +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:480:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE1, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:481:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE2, __VA_ARGS__) \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/native/hip/IndexKernel.hip:406:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1749.5 hipGetLastError(); +#10 1749.5 ^~~~~~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:490:50: note: expanded from macro 'AT_DISPATCH_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 SCALARTYPE1, SCALARTYPE2, SCALARTYPE3, __VA_ARGS__)) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:482:33: note: expanded from macro 'AT_DISPATCH_CASE_ALL_TYPES_AND_COMPLEX_AND3' +#10 1749.5 AT_DISPATCH_CASE(SCALARTYPE3, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:87:56: note: expanded from macro 'AT_DISPATCH_CASE' +#10 1749.5 AT_PRIVATE_CASE_TYPE_USING_HINT(enum_type, scalar_t, __VA_ARGS__) +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:83:12: note: expanded from macro 'AT_PRIVATE_CASE_TYPE_USING_HINT' +#10 1749.5 return __VA_ARGS__(); \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 /pytorch/aten/src/ATen/Dispatch.h:234:7: note: expanded from macro 'AT_DISPATCH_SWITCH' +#10 1749.5 __VA_ARGS__ \ +#10 1749.5 ^~~~~~~~~~~ +#10 1749.5 37 warnings generated when compiling for host. +#10 1759.6 [6016/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RecordStream.hip.o +#10 1759.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1759.6 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1765.1 [6017/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Randperm.hip.o +#10 1765.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1765.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1765.1 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1765.1 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1765.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1765.1 hipGetLastError(); +#10 1765.1 ^~~~~~~~~~~~~~~ +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1765.1 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1765.1 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1765.1 hipEventDestroy(event_); +#10 1765.1 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1765.1 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1765.1 hipGetLastError(); +#10 1765.1 ^~~~~~~~~~~~~~~ +#10 1765.1 3 warnings generated when compiling for gfx803. +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1765.1 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1765.1 In file included from /pytorch/aten/src/ATen/hip/HIPEvent.h:8: +#10 1765.1 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1765.1 hipGetLastError(); +#10 1765.1 ^~~~~~~~~~~~~~~ +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.hip:8: +#10 1765.1 In file included from /pytorch/aten/src/ATen/native/hip/Randperm.cuh:4: +#10 1765.1 In file included from /pytorch/aten/src/ATen/hip/HIPGraphsUtils.cuh:5: +#10 1765.1 /pytorch/aten/src/ATen/hip/HIPEvent.h:54:9: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1765.1 hipEventDestroy(event_); +#10 1765.1 ^~~~~~~~~~~~~~~ ~~~~~~ +#10 1765.1 /pytorch/aten/src/ATen/hip/HIPEvent.h:102:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1765.1 hipGetLastError(); +#10 1765.1 ^~~~~~~~~~~~~~~ +#10 1765.1 3 warnings generated when compiling for host. +#10 1766.8 [6018/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_MaxMinElementwiseKernel.hip.o +#10 1766.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1766.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1768.3 [6019/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Reduce.hip.o +#10 1768.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1768.3 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1769.1 [6020/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Nonzero.hip.o +#10 1769.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1769.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 52 warnings generated when compiling for gfx803. +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl>' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:71:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(nullptr, temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:124:10: note: in instantiation of function template specialization 'at::native::nonzero_cuda_out_impl' requested here +#10 1769.1 [&] {nonzero_cuda_out_impl(self, out);}); +#10 1769.1 ^ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:73:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceReduce::Sum(temp_storage.get(), temp_storage_bytes, itr, (int*)num_nonzeros.get(), N, stream); +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:89:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(nullptr, temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 /pytorch/aten/src/ATen/native/hip/Nonzero.hip:92:5: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1769.1 hipcub::DeviceSelect::Flagged(temp_storage.get(), temp_storage_bytes, counting_itr, itr, +#10 1769.1 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1769.1 52 warnings generated when compiling for host. +#10 1776.5 [6021/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RangeFactories.hip.o +#10 1776.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1776.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1777.5 [6022/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RNN.hip.o +#10 1777.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1777.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1777.5 In file included from /pytorch/aten/src/ATen/native/hip/RNN.hip:9: +#10 1777.5 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1777.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1777.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1777.5 ^ +#10 1777.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1777.5 DEPRECATED("use atomicAdd instead") +#10 1777.5 ^ +#10 1777.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1777.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1777.5 ^ +#10 1777.5 /pytorch/aten/src/ATen/native/hip/RNN.hip:61:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1777.5 hipGetDevice(&curDevice); +#10 1777.5 ^~~~~~~~~~~~ ~~~~~~~~~~ +#10 1777.5 2 warnings generated when compiling for gfx803. +#10 1777.5 In file included from /pytorch/aten/src/ATen/native/hip/RNN.hip:9: +#10 1777.5 In file included from /pytorch/aten/src/ATen/hip/HIPApplyUtils.cuh:9: +#10 1777.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1777.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1777.5 ^ +#10 1777.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1777.5 DEPRECATED("use atomicAdd instead") +#10 1777.5 ^ +#10 1777.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1777.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1777.5 ^ +#10 1777.5 /pytorch/aten/src/ATen/native/hip/RNN.hip:61:3: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1777.5 hipGetDevice(&curDevice); +#10 1777.5 ^~~~~~~~~~~~ ~~~~~~~~~~ +#10 1777.5 2 warnings generated when compiling for host. +#10 1795.9 [6023/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_PointwiseOpsKernel.hip.o +#10 1795.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1795.9 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1801.8 [6024/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_Normalization.hip.o +#10 1801.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1801.8 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1801.8 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:8: +#10 1801.8 In file included from /pytorch/aten/src/ATen/native/hip/Resize.h:7: +#10 1801.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1801.8 hipGetLastError(); +#10 1801.8 ^~~~~~~~~~~~~~~ +#10 1801.8 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:9: +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 __global__ void batch_norm_backward_reduce_channels_last_kernel( +#10 1801.8 ^ +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:1169:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 batch_norm_collect_statistics_channels_last_kernel( +#10 1801.8 ^ +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 /pytorch/aten/src/ATen/native/hip/Normalization.cuh:946:1: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1801.8 29 warnings generated when compiling for gfx803. +#10 1801.8 In file included from /pytorch/aten/src/ATen/native/hip/Normalization.hip:8: +#10 1801.8 In file included from /pytorch/aten/src/ATen/native/hip/Resize.h:7: +#10 1801.8 /pytorch/aten/src/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h:199:7: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1801.8 hipGetLastError(); +#10 1801.8 ^~~~~~~~~~~~~~~ +#10 1801.8 1 warning generated when compiling for host. +#10 1815.4 [6025/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceNormKernel.hip.o +#10 1815.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1815.4 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1815.4 In file included from /pytorch/aten/src/ATen/native/hip/ReduceNormKernel.hip:5: +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 __global__ void reduce_kernel(R reduction) { +#10 1815.4 ^ +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1815.4 864 warnings generated when compiling for gfx803. +#10 1824.0 [6026/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_LogcumsumexpKernel.hip.o +#10 1824.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1824.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3), 1073741824>' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3)>' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3), 1073741824>' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3)>' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 12 warnings generated when compiling for gfx803. +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3), 1073741824>' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3)>' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan *, c10::complex *, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3), 1073741824>' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim, (lambda at /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:106:3)>' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:43:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(nullptr, temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:446:16: note: in instantiation of function template specialization 'at::cuda::cub::inclusive_scan' requested here +#10 1824.0 cuda::cub::inclusive_scan(self_->data_ptr(), result.data_ptr(), binary_op, self.numel()); +#10 1824.0 ^ +#10 1824.0 /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:116:9: note: in instantiation of function template specialization 'at::native::scan_dim' requested here +#10 1824.0 scan_dim(self, result, dim, init, log_add_exp); +#10 1824.0 ^ +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/LogcumsumexpKernel.hip:8: +#10 1824.0 In file included from /pytorch/aten/src/ATen/native/hip/ScanUtils.cuh:6: +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:248:30: warning: ignoring return value of function declared with 'nodiscard' attribute [-Wunused-result] +#10 1824.0 CUB_WRAPPER(NO_ROCM(detail)::hipcub::DeviceScan::InclusiveScan, +#10 1824.0 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#10 1824.0 /pytorch/aten/src/ATen/hip/cub.cuh:46:3: note: expanded from macro 'CUB_WRAPPER' +#10 1824.0 func(temp_storage.get(), temp_storage_bytes, __VA_ARGS__); \ +#10 1824.0 ^~~~ +#10 1824.0 12 warnings generated when compiling for host. +#10 1824.5 [6027/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReflectionPad.hip.o +#10 1824.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1824.5 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1824.5 In file included from /pytorch/aten/src/ATen/native/hip/ReflectionPad.hip:7: +#10 1824.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1824.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1824.5 ^ +#10 1824.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1824.5 DEPRECATED("use atomicAdd instead") +#10 1824.5 ^ +#10 1824.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1824.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1824.5 ^ +#10 1824.5 1 warning generated when compiling for gfx803. +#10 1824.5 In file included from /pytorch/aten/src/ATen/native/hip/ReflectionPad.hip:7: +#10 1824.5 /pytorch/aten/src/ATen/hip/Atomic.cuh:341:81: warning: 'atomicAddNoRet' is deprecated: use atomicAdd instead [-Wdeprecated-declarations] +#10 1824.5 static inline __device__ void gpuAtomicAddNoReturn(float *address, float val) { atomicAddNoRet(address, val); } +#10 1824.5 ^ +#10 1824.5 /opt/rocm-5.4.2/include/hip/amd_detail/amd_hip_atomic.h:203:1: note: 'atomicAddNoRet' has been explicitly marked deprecated here +#10 1824.5 DEPRECATED("use atomicAdd instead") +#10 1824.5 ^ +#10 1824.5 /opt/rocm-5.4.2/include/hip/hip_runtime_api.h:487:41: note: expanded from macro 'DEPRECATED' +#10 1824.5 #define DEPRECATED(msg) __attribute__ ((deprecated(msg))) +#10 1824.5 ^ +#10 1824.5 1 warning generated when compiling for host. +#10 1830.1 [6028/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_RenormKernel.hip.o +#10 1830.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1830.1 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1834.2 [6029/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceAMinMaxKernel.hip.o +#10 1834.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1834.2 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1834.2 In file included from /pytorch/aten/src/ATen/native/hip/ReduceAMinMaxKernel.hip:13: +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 __global__ void reduce_kernel(R reduction) { +#10 1834.2 ^ +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1834.2 180 warnings generated when compiling for gfx803. +#10 1837.0 [6030/6823] Building HIPCC object caffe2/CMakeFiles/torch_hip.dir/__/aten/src/ATen/native/hip/torch_hip_generated_ReduceArgMaxKernel.hip.o +#10 1837.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1837.0 Warning: The --amdgpu-target option has been deprecated and will be removed in the future. Use --offload-arch instead. +#10 1837.0 In file included from /pytorch/aten/src/ATen/native/hip/ReduceArgMaxKernel.hip:13: +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 __global__ void reduce_kernel(R reduction) { +#10 1837.0 ^ +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupported transformation ordering [-Wpass-failed=transform-warning] +#10 1837.0 /pytorch/aten/src/ATen/native/hip/Reduce.cuh:225:17: warning: loop not unrolled: the optimizer was unable to perform the requested transformation; the transformation might be disabled or specified as part of an unsupporte +#10 1837.0 [output clipped, log limit 2MiB reached] +#10 3122.4 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#10 3122.4 !! +#10 3122.4 +#10 3122.4 ******************************************************************************** +#10 3122.4 Please consider removing the following classifiers in favor of a SPDX license expression: +#10 3122.4 +#10 3122.4 License :: OSI Approved :: BSD License +#10 3122.4 +#10 3122.4 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#10 3122.4 ******************************************************************************** +#10 3122.4 +#10 3122.4 !! +#10 3122.4 self._finalize_license_expression() +#10 3126.3 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. +#10 3126.3 !! +#10 3126.3 +#10 3126.3 ******************************************************************************** +#10 3126.3 Please avoid running ``setup.py`` directly. +#10 3126.3 Instead, use pypa/build, pypa/installer or other +#10 3126.3 standards-based tools. +#10 3126.3 +#10 3126.3 By 2025-Oct-31, you need to update your project and remove deprecated calls +#10 3126.3 or your builds will no longer be supported. +#10 3126.3 +#10 3126.3 See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. +#10 3126.3 ******************************************************************************** +#10 3126.3 +#10 3126.3 !! +#10 3126.3 self.initialize_options() +#10 3132.2 warning: no previously-included files matching '*.o' found anywhere in distribution +#10 3132.3 warning: no previously-included files matching '*.dylib' found anywhere in distribution +#10 3132.6 warning: no previously-included files matching '*.swp' found anywhere in distribution +#10 DONE 3189.0s + +#11 [ 8/18] RUN echo "Checkout Torchvision Version: v0.15.2" && git clone --depth 1 --branch v0.15.2 https://github.com/pytorch/vision.git /vision && true +#11 0.280 Checkout Torchvision Version: v0.15.2 +#11 0.283 Cloning into '/vision'... +#11 8.164 Note: switching to 'fa99a5360fbcd1683311d57a76fcc0e7323a4c1e'. +#11 8.164 +#11 8.164 You are in 'detached HEAD' state. You can look around, make experimental +#11 8.164 changes and commit them, and you can discard any commits you make in this +#11 8.164 state without impacting any branches by switching back to a branch. +#11 8.164 +#11 8.164 If you want to create a new branch to retain commits you create, you may +#11 8.164 do so (now or later) by using -c with the switch command. Example: +#11 8.164 +#11 8.164 git switch -c +#11 8.164 +#11 8.164 Or undo this operation with: +#11 8.164 +#11 8.164 git switch - +#11 8.164 +#11 8.164 Turn off this advice by setting config variable advice.detachedHead to false +#11 8.164 +#11 DONE 8.4s + +#12 [ 9/18] WORKDIR /vision +#12 DONE 0.1s + +#13 [10/18] RUN echo "BUILDING TorchVision v0.15.2 *** " && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchvision-*.whl && ls /vision/dist/torchvision*.whl | head -n 1 > /opt/torchvision_wheel_name.txt && true +#13 0.291 BUILDING TorchVision v0.15.2 *** +#13 1.639 /vision/setup.py:10: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html +#13 1.639 from pkg_resources import DistributionNotFound, get_distribution, parse_version +#13 1.978 Building wheel torchvision-0.15.2a0+fa99a53 +#13 1.980 Compiling extensions with following flags: +#13 1.980 FORCE_CUDA: False +#13 1.980 DEBUG: False +#13 1.980 TORCHVISION_USE_PNG: True +#13 1.980 TORCHVISION_USE_JPEG: True +#13 1.980 TORCHVISION_USE_NVJPEG: True +#13 1.980 TORCHVISION_USE_FFMPEG: True +#13 1.980 TORCHVISION_USE_VIDEO_CODEC: True +#13 1.980 NVCC_FLAGS: +#13 2.002 /vision/MANIFEST.in -> /vision/MANIFEST.in [skipped, no changes] +#13 2.002 /vision/ios/VisionTestApp/VisionTestApp/ModelRunner.h -> /vision/ios/VisionTestApp/VisionTestApp/ModelRunner.h [skipped, no changes] +#13 2.002 /vision/ios/VisionTestApp/VisionTestApp/ViewController.h -> /vision/ios/VisionTestApp/VisionTestApp/ViewController.h [skipped, no changes] +#13 2.002 /vision/ios/VisionTestApp/VisionTestApp/AppDelegate.h -> /vision/ios/VisionTestApp/VisionTestApp/AppDelegate.h [skipped, no changes] +#13 2.002 /vision/torchvision/csrc/macros.h -> /vision/torchvision/csrc/macros.h [skipped, no changes] +#13 2.003 /vision/torchvision/csrc/vision.h -> /vision/torchvision/csrc/vision.h [skipped, no changes] +#13 2.003 /vision/torchvision/csrc/vision.cpp -> /vision/torchvision/csrc/vision_hip.cpp [ok] +#13 2.003 /vision/torchvision/csrc/macros.h -> /vision/torchvision/csrc/macros.h [skipped, no changes] +#13 2.003 /vision/torchvision/csrc/vision.h -> /vision/torchvision/csrc/vision.h [skipped, no changes] +#13 2.004 /vision/torchvision/csrc/io/video_reader/video_reader.h -> /vision/torchvision/csrc/io/video_reader/video_reader.h [skipped, no changes] +#13 2.007 /vision/torchvision/csrc/io/decoder/defs.h -> /vision/torchvision/csrc/io/decoder/defs.h [skipped, no changes] +#13 2.008 /vision/torchvision/csrc/io/decoder/memory_buffer.h -> /vision/torchvision/csrc/io/decoder/memory_buffer.h [skipped, no changes] +#13 2.008 /vision/torchvision/csrc/io/decoder/seekable_buffer.h -> /vision/torchvision/csrc/io/decoder/seekable_buffer.h [skipped, no changes] +#13 2.009 /vision/torchvision/csrc/io/decoder/time_keeper.h -> /vision/torchvision/csrc/io/decoder/time_keeper.h [skipped, no changes] +#13 2.009 /vision/torchvision/csrc/io/decoder/stream.h -> /vision/torchvision/csrc/io/decoder/stream.h [skipped, no changes] +#13 2.010 /vision/torchvision/csrc/io/decoder/decoder.h -> /vision/torchvision/csrc/io/decoder/decoder.h [skipped, no changes] +#13 2.010 /vision/torchvision/csrc/io/decoder/sync_decoder.h -> /vision/torchvision/csrc/io/decoder/sync_decoder.h [skipped, no changes] +#13 2.014 /vision/torchvision/csrc/io/video_reader/video_reader.cpp -> /vision/torchvision/csrc/io/video_reader/video_reader.cpp [skipped, no changes] +#13 2.015 /vision/torchvision/csrc/io/decoder/audio_sampler.h -> /vision/torchvision/csrc/io/decoder/audio_sampler.h [skipped, no changes] +#13 2.015 /vision/torchvision/csrc/io/decoder/util.h -> /vision/torchvision/csrc/io/decoder/util.h [skipped, no changes] +#13 2.016 /vision/torchvision/csrc/io/decoder/audio_sampler.cpp -> /vision/torchvision/csrc/io/decoder/audio_sampler.cpp [skipped, no changes] +#13 2.016 /vision/torchvision/csrc/io/decoder/subtitle_sampler.h -> /vision/torchvision/csrc/io/decoder/subtitle_sampler.h [skipped, no changes] +#13 2.017 /vision/torchvision/csrc/io/decoder/subtitle_stream.h -> /vision/torchvision/csrc/io/decoder/subtitle_stream.h [skipped, no changes] +#13 2.017 /vision/torchvision/csrc/io/decoder/cc_stream.h -> /vision/torchvision/csrc/io/decoder/cc_stream.h [skipped, no changes] +#13 2.017 /vision/torchvision/csrc/io/decoder/audio_sampler.h -> /vision/torchvision/csrc/io/decoder/audio_sampler.h [skipped, no changes] +#13 2.019 /vision/torchvision/csrc/io/decoder/stream.cpp -> /vision/torchvision/csrc/io/decoder/stream.cpp [skipped, no changes] +#13 2.019 /vision/torchvision/csrc/io/decoder/audio_stream.h -> /vision/torchvision/csrc/io/decoder/audio_stream.h [skipped, no changes] +#13 2.020 /vision/torchvision/csrc/io/decoder/audio_stream.cpp -> /vision/torchvision/csrc/io/decoder/audio_stream.cpp [skipped, no changes] +#13 2.020 /vision/torchvision/csrc/io/decoder/util.h -> /vision/torchvision/csrc/io/decoder/util.h [skipped, no changes] +#13 2.021 /vision/torchvision/csrc/io/decoder/stream.h -> /vision/torchvision/csrc/io/decoder/stream.h [skipped, no changes] +#13 2.021 /vision/torchvision/csrc/io/decoder/decoder.h -> /vision/torchvision/csrc/io/decoder/decoder.h [skipped, no changes] +#13 2.022 /vision/torchvision/csrc/io/decoder/memory_buffer.cpp -> /vision/torchvision/csrc/io/decoder/memory_buffer.cpp [skipped, no changes] +#13 2.022 /vision/torchvision/csrc/io/decoder/util_test.cpp -> /vision/torchvision/csrc/io/decoder/util_test.cpp [skipped, no changes] +#13 2.025 /vision/torchvision/csrc/io/decoder/util.cpp -> /vision/torchvision/csrc/io/decoder/util.cpp [skipped, no changes] +#13 2.025 /vision/torchvision/csrc/io/decoder/memory_buffer.h -> /vision/torchvision/csrc/io/decoder/memory_buffer.h [skipped, no changes] +#13 2.025 /vision/torchvision/csrc/io/decoder/audio_stream.h -> /vision/torchvision/csrc/io/decoder/audio_stream.h [skipped, no changes] +#13 2.028 /vision/torchvision/csrc/io/decoder/defs.h -> /vision/torchvision/csrc/io/decoder/defs.h [skipped, no changes] +#13 2.029 /vision/torchvision/csrc/io/decoder/sync_decoder.h -> /vision/torchvision/csrc/io/decoder/sync_decoder.h [skipped, no changes] +#13 2.029 /vision/torchvision/csrc/io/decoder/subtitle_stream.cpp -> /vision/torchvision/csrc/io/decoder/subtitle_stream.cpp [skipped, no changes] +#13 2.030 /vision/torchvision/csrc/io/decoder/video_sampler.h -> /vision/torchvision/csrc/io/decoder/video_sampler.h [skipped, no changes] +#13 2.031 /vision/torchvision/csrc/io/decoder/video_stream.h -> /vision/torchvision/csrc/io/decoder/video_stream.h [skipped, no changes] +#13 2.034 /vision/torchvision/csrc/io/decoder/decoder.cpp -> /vision/torchvision/csrc/io/decoder/decoder.cpp [skipped, no changes] +#13 2.035 /vision/torchvision/csrc/io/decoder/video_sampler.h -> /vision/torchvision/csrc/io/decoder/video_sampler.h [skipped, no changes] +#13 2.035 /vision/torchvision/csrc/io/decoder/subtitle_sampler.cpp -> /vision/torchvision/csrc/io/decoder/subtitle_sampler.cpp [skipped, no changes] +#13 2.037 /vision/torchvision/csrc/io/decoder/video_sampler.cpp -> /vision/torchvision/csrc/io/decoder/video_sampler.cpp [skipped, no changes] +#13 2.038 /vision/torchvision/csrc/io/decoder/video_stream.cpp -> /vision/torchvision/csrc/io/decoder/video_stream.cpp [skipped, no changes] +#13 2.038 /vision/torchvision/csrc/io/decoder/video_stream.h -> /vision/torchvision/csrc/io/decoder/video_stream.h [skipped, no changes] +#13 2.039 /vision/torchvision/csrc/io/decoder/sync_decoder.cpp -> /vision/torchvision/csrc/io/decoder/sync_decoder.cpp [skipped, no changes] +#13 2.039 /vision/torchvision/csrc/io/decoder/time_keeper.cpp -> /vision/torchvision/csrc/io/decoder/time_keeper.cpp [skipped, no changes] +#13 2.040 /vision/torchvision/csrc/io/decoder/seekable_buffer.cpp -> /vision/torchvision/csrc/io/decoder/seekable_buffer.cpp [skipped, no changes] +#13 2.041 /vision/torchvision/csrc/io/decoder/seekable_buffer.h -> /vision/torchvision/csrc/io/decoder/seekable_buffer.h [skipped, no changes] +#13 2.043 /vision/torchvision/csrc/io/decoder/sync_decoder_test.cpp -> /vision/torchvision/csrc/io/decoder/sync_decoder_test.cpp [skipped, no changes] +#13 2.044 /vision/torchvision/csrc/io/decoder/time_keeper.h -> /vision/torchvision/csrc/io/decoder/time_keeper.h [skipped, no changes] +#13 2.044 /vision/torchvision/csrc/io/decoder/subtitle_sampler.h -> /vision/torchvision/csrc/io/decoder/subtitle_sampler.h [skipped, no changes] +#13 2.044 /vision/torchvision/csrc/io/decoder/subtitle_stream.h -> /vision/torchvision/csrc/io/decoder/subtitle_stream.h [skipped, no changes] +#13 2.044 /vision/torchvision/csrc/io/decoder/cc_stream.cpp -> /vision/torchvision/csrc/io/decoder/cc_stream.cpp [skipped, no changes] +#13 2.045 /vision/torchvision/csrc/io/decoder/gpu/decoder.h -> /vision/torchvision/csrc/io/decoder/gpu/decoder_hip.h [ok] +#13 2.047 /vision/torchvision/csrc/io/decoder/gpu/demuxer.h -> /vision/torchvision/csrc/io/decoder/gpu/demuxer.h [skipped, no changes] +#13 2.047 /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder.h -> /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder_hip.h [ok] +#13 2.048 /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder.cpp -> /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder_hip.cpp [ok] +#13 2.050 /vision/torchvision/csrc/io/decoder/gpu/demuxer.h -> /vision/torchvision/csrc/io/decoder/gpu/demuxer.h [skipped, no changes] +#13 2.050 /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder.h -> /vision/torchvision/csrc/io/decoder/gpu/gpu_decoder_hip.h [skipped, already hipified] +#13 2.053 /vision/torchvision/csrc/io/decoder/gpu/decoder.cpp -> /vision/torchvision/csrc/io/decoder/gpu/decoder_hip.cpp [ok] +#13 2.054 /vision/torchvision/csrc/io/video/video.h -> /vision/torchvision/csrc/io/video/video.h [skipped, no changes] +#13 2.056 /vision/torchvision/csrc/io/video/video.cpp -> /vision/torchvision/csrc/io/video/video.cpp [skipped, no changes] +#13 2.057 /vision/torchvision/csrc/io/image/image_read_mode.h -> /vision/torchvision/csrc/io/image/image_read_mode.h [skipped, no changes] +#13 2.057 /vision/torchvision/csrc/io/image/cpu/decode_image.h -> /vision/torchvision/csrc/io/image/cpu/decode_image.h [skipped, no changes] +#13 2.057 /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h [skipped, no changes] +#13 2.057 /vision/torchvision/csrc/io/image/cpu/decode_png.h -> /vision/torchvision/csrc/io/image/cpu/decode_png.h [skipped, no changes] +#13 2.057 /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h [skipped, no changes] +#13 2.058 /vision/torchvision/csrc/io/image/cpu/encode_png.h -> /vision/torchvision/csrc/io/image/cpu/encode_png.h [skipped, no changes] +#13 2.058 /vision/torchvision/csrc/io/image/cpu/read_write_file.h -> /vision/torchvision/csrc/io/image/cpu/read_write_file.h [skipped, no changes] +#13 2.058 /vision/torchvision/csrc/io/image/cuda/decode_jpeg_cuda.h -> /vision/torchvision/csrc/io/image/hip/decode_jpeg_hip.h [ok] +#13 2.058 /vision/torchvision/csrc/io/image/image.h -> /vision/torchvision/csrc/io/image/image_hip.h [ok] +#13 2.059 /vision/torchvision/csrc/io/image/image.cpp -> /vision/torchvision/csrc/io/image/image_hip.cpp [ok] +#13 2.059 /vision/torchvision/csrc/io/image/image_read_mode.h -> /vision/torchvision/csrc/io/image/image_read_mode.h [skipped, no changes] +#13 2.059 /vision/torchvision/csrc/io/image/cuda/decode_jpeg_cuda.h -> /vision/torchvision/csrc/io/image/hip/decode_jpeg_hip.h [skipped, already hipified] +#13 2.061 /vision/torchvision/csrc/io/image/cuda/decode_jpeg_cuda.cpp -> /vision/torchvision/csrc/io/image/hip/decode_jpeg_hip.cpp [ok] +#13 2.061 /vision/torchvision/csrc/io/image/cpu/common_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/common_jpeg.h [skipped, no changes] +#13 2.062 /vision/torchvision/csrc/io/image/cpu/decode_jpeg.cpp -> /vision/torchvision/csrc/io/image/cpu/decode_jpeg.cpp [skipped, no changes] +#13 2.062 /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/decode_jpeg.h [skipped, no changes] +#13 2.063 /vision/torchvision/csrc/io/image/cpu/encode_jpeg.cpp -> /vision/torchvision/csrc/io/image/cpu/encode_jpeg.cpp [skipped, no changes] +#13 2.063 /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/encode_jpeg.h [skipped, no changes] +#13 2.063 /vision/torchvision/csrc/io/image/cpu/common_png.h -> /vision/torchvision/csrc/io/image/cpu/common_png.h [skipped, no changes] +#13 2.064 /vision/torchvision/csrc/io/image/cpu/read_write_file.h -> /vision/torchvision/csrc/io/image/cpu/read_write_file.h [skipped, no changes] +#13 2.064 /vision/torchvision/csrc/io/image/cpu/decode_image.cpp -> /vision/torchvision/csrc/io/image/cpu/decode_image.cpp [skipped, no changes] +#13 2.064 /vision/torchvision/csrc/io/image/cpu/encode_png.h -> /vision/torchvision/csrc/io/image/cpu/encode_png.h [skipped, no changes] +#13 2.064 /vision/torchvision/csrc/io/image/cpu/decode_png.h -> /vision/torchvision/csrc/io/image/cpu/decode_png.h [skipped, no changes] +#13 2.065 /vision/torchvision/csrc/io/image/cpu/encode_png.cpp -> /vision/torchvision/csrc/io/image/cpu/encode_png.cpp [skipped, no changes] +#13 2.066 /vision/torchvision/csrc/io/image/cpu/decode_image.h -> /vision/torchvision/csrc/io/image/cpu/decode_image.h [skipped, no changes] +#13 2.067 /vision/torchvision/csrc/io/image/cpu/decode_png.cpp -> /vision/torchvision/csrc/io/image/cpu/decode_png.cpp [skipped, no changes] +#13 2.067 /vision/torchvision/csrc/io/image/cpu/common_jpeg.h -> /vision/torchvision/csrc/io/image/cpu/common_jpeg.h [skipped, no changes] +#13 2.068 /vision/torchvision/csrc/io/image/cpu/common_jpeg.cpp -> /vision/torchvision/csrc/io/image/cpu/common_jpeg.cpp [skipped, no changes] +#13 2.069 /vision/torchvision/csrc/io/image/cpu/read_write_file.cpp -> /vision/torchvision/csrc/io/image/cpu/read_write_file.cpp [skipped, no changes] +#13 2.069 /vision/torchvision/csrc/ops/ps_roi_align.h -> /vision/torchvision/csrc/ops/ps_roi_align.h [skipped, no changes] +#13 2.069 /vision/torchvision/csrc/ops/ps_roi_pool.h -> /vision/torchvision/csrc/ops/ps_roi_pool.h [skipped, no changes] +#13 2.069 /vision/torchvision/csrc/ops/roi_align.h -> /vision/torchvision/csrc/ops/roi_align.h [skipped, no changes] +#13 2.070 /vision/torchvision/csrc/ops/roi_align.cpp -> /vision/torchvision/csrc/ops/roi_align.cpp [skipped, no changes] +#13 2.070 /vision/torchvision/csrc/ops/roi_pool.h -> /vision/torchvision/csrc/ops/roi_pool.h [skipped, no changes] +#13 2.071 /vision/torchvision/csrc/ops/roi_pool.cpp -> /vision/torchvision/csrc/ops/roi_pool.cpp [skipped, no changes] +#13 2.071 /vision/torchvision/csrc/ops/deform_conv2d.h -> /vision/torchvision/csrc/ops/deform_conv2d.h [skipped, no changes] +#13 2.072 /vision/torchvision/csrc/ops/deform_conv2d.cpp -> /vision/torchvision/csrc/ops/deform_conv2d.cpp [skipped, no changes] +#13 2.072 /vision/torchvision/csrc/ops/roi_align.h -> /vision/torchvision/csrc/ops/roi_align.h [skipped, no changes] +#13 2.072 /vision/torchvision/csrc/ops/deform_conv2d.h -> /vision/torchvision/csrc/ops/deform_conv2d.h [skipped, no changes] +#13 2.073 /vision/torchvision/csrc/ops/nms.h -> /vision/torchvision/csrc/ops/nms.h [skipped, no changes] +#13 2.073 /vision/torchvision/csrc/ops/ops.h -> /vision/torchvision/csrc/ops/ops.h [skipped, no changes] +#13 2.073 /vision/torchvision/csrc/ops/nms.cpp -> /vision/torchvision/csrc/ops/nms.cpp [skipped, no changes] +#13 2.073 /vision/torchvision/csrc/ops/nms.h -> /vision/torchvision/csrc/ops/nms.h [skipped, no changes] +#13 2.074 /vision/torchvision/csrc/ops/roi_pool.h -> /vision/torchvision/csrc/ops/roi_pool.h [skipped, no changes] +#13 2.074 /vision/torchvision/csrc/ops/ps_roi_align.cpp -> /vision/torchvision/csrc/ops/ps_roi_align.cpp [skipped, no changes] +#13 2.075 /vision/torchvision/csrc/ops/ps_roi_pool.cpp -> /vision/torchvision/csrc/ops/ps_roi_pool.cpp [skipped, no changes] +#13 2.075 /vision/torchvision/csrc/ops/autocast/roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/roi_pool_kernel.cpp [skipped, no changes] +#13 2.075 /vision/torchvision/csrc/ops/autocast/deform_conv2d_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/deform_conv2d_kernel.cpp [skipped, no changes] +#13 2.076 /vision/torchvision/csrc/ops/autocast/roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/roi_align_kernel.cpp [skipped, no changes] +#13 2.076 /vision/torchvision/csrc/ops/autocast/nms_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/nms_kernel.cpp [skipped, no changes] +#13 2.076 /vision/torchvision/csrc/ops/autocast/ps_roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/ps_roi_pool_kernel.cpp [skipped, no changes] +#13 2.077 /vision/torchvision/csrc/ops/autocast/ps_roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autocast/ps_roi_align_kernel.cpp [skipped, no changes] +#13 2.078 /vision/torchvision/csrc/ops/cpu/roi_align_common.h -> /vision/torchvision/csrc/ops/cpu/roi_align_common.h [skipped, no changes] +#13 2.080 /vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.cpp -> /vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.cpp [skipped, no changes] +#13 2.081 /vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp -> /vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp [skipped, no changes] +#13 2.082 /vision/torchvision/csrc/ops/cuda/cuda_helpers.h -> /vision/torchvision/csrc/ops/hip/hip_helpers.h [ok] +#13 2.084 /vision/torchvision/csrc/ops/cuda/ps_roi_pool_kernel.cu -> /vision/torchvision/csrc/ops/hip/ps_roi_pool_kernel.hip [ok] +#13 2.085 /vision/torchvision/csrc/ops/cuda/nms_kernel.cu -> /vision/torchvision/csrc/ops/hip/nms_kernel.hip [ok] +#13 2.094 /vision/torchvision/csrc/ops/cuda/deform_conv2d_kernel.cu -> /vision/torchvision/csrc/ops/hip/deform_conv2d_kernel.hip [ok] +#13 2.094 /vision/torchvision/csrc/ops/cuda/cuda_helpers.h -> /vision/torchvision/csrc/ops/hip/hip_helpers.h [skipped, already hipified] +#13 2.096 /vision/torchvision/csrc/ops/cuda/roi_pool_kernel.cu -> /vision/torchvision/csrc/ops/hip/roi_pool_kernel.hip [ok] +#13 2.100 /vision/torchvision/csrc/ops/cuda/roi_align_kernel.cu -> /vision/torchvision/csrc/ops/hip/roi_align_kernel.hip [ok] +#13 2.103 /vision/torchvision/csrc/ops/cuda/ps_roi_align_kernel.cu -> /vision/torchvision/csrc/ops/hip/ps_roi_align_kernel.hip [ok] +#13 2.104 /vision/torchvision/csrc/ops/autograd/roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/roi_pool_kernel.cpp [skipped, no changes] +#13 2.105 /vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.cpp [skipped, no changes] +#13 2.106 /vision/torchvision/csrc/ops/autograd/roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/roi_align_kernel.cpp [skipped, no changes] +#13 2.107 /vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp [skipped, no changes] +#13 2.108 /vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.cpp [skipped, no changes] +#13 2.109 /vision/torchvision/csrc/ops/cpu/roi_align_common.h -> /vision/torchvision/csrc/ops/cpu/roi_align_common.h [skipped, no changes] +#13 2.111 /vision/torchvision/csrc/ops/cpu/roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/roi_pool_kernel.cpp [skipped, no changes] +#13 2.118 /vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.cpp [skipped, no changes] +#13 2.121 /vision/torchvision/csrc/ops/cpu/roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/roi_align_kernel_hip.cpp [ok] +#13 2.122 /vision/torchvision/csrc/ops/cpu/nms_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/nms_kernel.cpp [skipped, no changes] +#13 2.124 /vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.cpp [skipped, no changes] +#13 2.126 /vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.cpp -> /vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.cpp [skipped, no changes] +#13 2.127 /vision/examples/cpp/hello_world/main.cpp -> /vision/examples/cpp/hello_world/main.cpp [skipped, no changes] +#13 2.135 /vision/.circleci/config.yml.in -> /vision/.circleci/config.yml_hip.in [ok] +#13 2.135 /vision/test/cpp/test_custom_operators.cpp -> /vision/test/cpp/test_custom_operators.cpp [skipped, no changes] +#13 2.136 /vision/test/tracing/frcnn/test_frcnn_tracing.cpp -> /vision/test/tracing/frcnn/test_frcnn_tracing.cpp [skipped, no changes] +#13 2.136 /vision/cmake/TorchVisionConfig.cmake.in -> /vision/cmake/TorchVisionConfig.cmake.in [skipped, no changes] +#13 2.136 Total number of unsupported CUDA function calls: 0 +#13 2.136 +#13 2.136 +#13 2.136 Total number of replaced kernel launches: 15 +#13 2.136 Successfully preprocessed all matching files. +#13 2.159 Building torchvision without PNG image support +#13 2.159 Running build on conda-build: False +#13 2.159 Running build on conda: False +#13 2.159 Building torchvision without JPEG image support +#13 2.159 Building torchvision without NVJPEG image support +#13 2.405 Building torchvision without ffmpeg support +#13 2.405 libavformat header files were not found, disabling ffmpeg support +#13 2.405 Building torchvision without ffmpeg support +#13 2.405 libswresample header files were not found, disabling ffmpeg support +#13 2.405 Building torchvision without ffmpeg support +#13 2.405 libswscale header files were not found, disabling ffmpeg support +#13 2.406 Building torchvision without ffmpeg support +#13 2.406 libavutil header files were not found, disabling ffmpeg support +#13 2.406 Building torchvision without ffmpeg support +#13 2.406 libavcodec header files were not found, disabling ffmpeg support +#13 2.406 Building torchvision without video codec support +#13 2.424 running bdist_wheel +#13 2.431 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:135: SetuptoolsDeprecationWarning: bdist_wheel.universal is deprecated +#13 2.431 !! +#13 2.431 +#13 2.431 ******************************************************************************** +#13 2.431 With Python 2.7 end-of-life, support for building universal wheels +#13 2.431 (i.e., wheels that support both Python 2 and Python 3) +#13 2.431 is being obviated. +#13 2.431 Please discontinue using this option, or if you still need it, +#13 2.431 file an issue with pypa/setuptools describing your use case. +#13 2.431 +#13 2.431 By 2025-Aug-30, you need to update your project and remove deprecated calls +#13 2.431 or your builds will no longer be supported. +#13 2.431 ******************************************************************************** +#13 2.431 +#13 2.431 !! +#13 2.431 self.finalize_options() +#13 2.435 running build +#13 2.435 running build_py +#13 2.439 creating build/lib.linux-x86_64-cpython-310/torchvision +#13 2.439 copying torchvision/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.439 copying torchvision/extension.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.439 copying torchvision/_internally_replaced_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.440 copying torchvision/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.440 copying torchvision/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.440 copying torchvision/version.py -> build/lib.linux-x86_64-cpython-310/torchvision +#13 2.440 creating build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.440 copying torchvision/io/_video_opt.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.441 copying torchvision/io/video_reader.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.441 copying torchvision/io/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.441 copying torchvision/io/image.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.441 copying torchvision/io/video.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.441 copying torchvision/io/_load_gpu_decoder.py -> build/lib.linux-x86_64-cpython-310/torchvision/io +#13 2.442 creating build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.442 copying torchvision/datasets/voc.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.442 copying torchvision/datasets/country211.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.443 copying torchvision/datasets/_stereo_matching.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.443 copying torchvision/datasets/dtd.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.443 copying torchvision/datasets/celeba.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.443 copying torchvision/datasets/stl10.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.443 copying torchvision/datasets/gtsrb.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.444 copying torchvision/datasets/omniglot.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.444 copying torchvision/datasets/video_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.444 copying torchvision/datasets/sbd.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.444 copying torchvision/datasets/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.444 copying torchvision/datasets/lfw.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.444 copying torchvision/datasets/semeion.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.445 copying torchvision/datasets/kitti.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.445 copying torchvision/datasets/sun397.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.445 copying torchvision/datasets/phototour.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.445 copying torchvision/datasets/vision.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.445 copying torchvision/datasets/clevr.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.445 copying torchvision/datasets/folder.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.446 copying torchvision/datasets/coco.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.446 copying torchvision/datasets/fakedata.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.446 copying torchvision/datasets/caltech.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.446 copying torchvision/datasets/svhn.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.446 copying torchvision/datasets/fer2013.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.447 copying torchvision/datasets/rendered_sst2.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.447 copying torchvision/datasets/places365.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.447 copying torchvision/datasets/moving_mnist.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.447 copying torchvision/datasets/imagenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.447 copying torchvision/datasets/_optical_flow.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.448 copying torchvision/datasets/hmdb51.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.448 copying torchvision/datasets/fgvc_aircraft.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.448 copying torchvision/datasets/kinetics.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.448 copying torchvision/datasets/cityscapes.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.448 copying torchvision/datasets/inaturalist.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.448 copying torchvision/datasets/oxford_iiit_pet.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.449 copying torchvision/datasets/food101.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.449 copying torchvision/datasets/flickr.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.449 copying torchvision/datasets/stanford_cars.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.449 copying torchvision/datasets/eurosat.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.449 copying torchvision/datasets/pcam.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.450 copying torchvision/datasets/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.450 copying torchvision/datasets/mnist.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.450 copying torchvision/datasets/cifar.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.450 copying torchvision/datasets/flowers102.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.451 copying torchvision/datasets/ucf101.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.451 copying torchvision/datasets/usps.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.451 copying torchvision/datasets/lsun.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.451 copying torchvision/datasets/widerface.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.451 copying torchvision/datasets/sbu.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets +#13 2.452 creating build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.452 copying torchvision/datapoints/_dataset_wrapper.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.452 copying torchvision/datapoints/_bounding_box.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.452 copying torchvision/datapoints/_mask.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.452 copying torchvision/datapoints/_image.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.453 copying torchvision/datapoints/_video.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.453 copying torchvision/datapoints/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.453 copying torchvision/datapoints/_datapoint.py -> build/lib.linux-x86_64-cpython-310/torchvision/datapoints +#13 2.453 creating build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.453 copying torchvision/models/mobilenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.454 copying torchvision/models/_meta.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.454 copying torchvision/models/vision_transformer.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.454 copying torchvision/models/googlenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.454 copying torchvision/models/mobilenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.454 copying torchvision/models/convnext.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.455 copying torchvision/models/_api.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.455 copying torchvision/models/efficientnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.455 copying torchvision/models/vgg.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.455 copying torchvision/models/mnasnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.455 copying torchvision/models/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.456 copying torchvision/models/squeezenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.456 copying torchvision/models/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.456 copying torchvision/models/resnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.456 copying torchvision/models/inception.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.456 copying torchvision/models/alexnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.456 copying torchvision/models/shufflenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.457 copying torchvision/models/mobilenetv3.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.457 copying torchvision/models/maxvit.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.457 copying torchvision/models/regnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.457 copying torchvision/models/feature_extraction.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.458 copying torchvision/models/densenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.458 copying torchvision/models/swin_transformer.py -> build/lib.linux-x86_64-cpython-310/torchvision/models +#13 2.458 creating build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.458 copying torchvision/transforms/_transforms_video.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.458 copying torchvision/transforms/autoaugment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.459 copying torchvision/transforms/functional.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.459 copying torchvision/transforms/functional_tensor.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.459 copying torchvision/transforms/_functional_video.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.459 copying torchvision/transforms/_presets.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.459 copying torchvision/transforms/transforms.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.460 copying torchvision/transforms/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.460 copying torchvision/transforms/functional_pil.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.460 copying torchvision/transforms/_functional_pil.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.460 copying torchvision/transforms/_functional_tensor.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms +#13 2.461 creating build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.461 copying torchvision/ops/ps_roi_align.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.461 copying torchvision/ops/stochastic_depth.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.461 copying torchvision/ops/boxes.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.461 copying torchvision/ops/deform_conv.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.461 copying torchvision/ops/ciou_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.462 copying torchvision/ops/roi_pool.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.462 copying torchvision/ops/_register_onnx_ops.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.462 copying torchvision/ops/roi_align.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.462 copying torchvision/ops/drop_block.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.462 copying torchvision/ops/misc.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.463 copying torchvision/ops/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.463 copying torchvision/ops/ps_roi_pool.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.463 copying torchvision/ops/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.463 copying torchvision/ops/poolers.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.463 copying torchvision/ops/_box_convert.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.463 copying torchvision/ops/diou_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.464 copying torchvision/ops/giou_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.464 copying torchvision/ops/focal_loss.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.464 copying torchvision/ops/feature_pyramid_network.py -> build/lib.linux-x86_64-cpython-310/torchvision/ops +#13 2.464 creating build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers +#13 2.464 copying torchvision/datasets/samplers/clip_sampler.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers +#13 2.465 copying torchvision/datasets/samplers/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers +#13 2.465 creating build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.465 copying torchvision/models/optical_flow/raft.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.465 copying torchvision/models/optical_flow/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.465 copying torchvision/models/optical_flow/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow +#13 2.466 creating build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.466 copying torchvision/models/video/mvit.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.466 copying torchvision/models/video/s3d.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.466 copying torchvision/models/video/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.467 copying torchvision/models/video/resnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.467 copying torchvision/models/video/swin_transformer.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/video +#13 2.467 creating build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.467 copying torchvision/models/segmentation/deeplabv3.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.467 copying torchvision/models/segmentation/lraspp.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.468 copying torchvision/models/segmentation/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.468 copying torchvision/models/segmentation/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.468 copying torchvision/models/segmentation/fcn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation +#13 2.468 creating build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.468 copying torchvision/models/quantization/mobilenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.469 copying torchvision/models/quantization/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.469 copying torchvision/models/quantization/googlenet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.469 copying torchvision/models/quantization/mobilenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.469 copying torchvision/models/quantization/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.469 copying torchvision/models/quantization/resnet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.469 copying torchvision/models/quantization/inception.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.470 copying torchvision/models/quantization/shufflenetv2.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.470 copying torchvision/models/quantization/mobilenetv3.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/quantization +#13 2.470 creating build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.470 copying torchvision/models/detection/backbone_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.471 copying torchvision/models/detection/roi_heads.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.471 copying torchvision/models/detection/retinanet.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.471 copying torchvision/models/detection/rpn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.471 copying torchvision/models/detection/mask_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.471 copying torchvision/models/detection/ssd.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.472 copying torchvision/models/detection/transform.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.472 copying torchvision/models/detection/fcos.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.472 copying torchvision/models/detection/generalized_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.472 copying torchvision/models/detection/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.472 copying torchvision/models/detection/faster_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.473 copying torchvision/models/detection/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.473 copying torchvision/models/detection/image_list.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.473 copying torchvision/models/detection/keypoint_rcnn.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.473 copying torchvision/models/detection/ssdlite.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.473 copying torchvision/models/detection/anchor_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/models/detection +#13 2.474 creating build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.474 copying torchvision/transforms/v2/utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.474 copying torchvision/transforms/v2/_type_conversion.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.474 copying torchvision/transforms/v2/_meta.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.474 copying torchvision/transforms/v2/_misc.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.474 copying torchvision/transforms/v2/_transform.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.475 copying torchvision/transforms/v2/_color.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.475 copying torchvision/transforms/v2/_container.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.475 copying torchvision/transforms/v2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.475 copying torchvision/transforms/v2/_auto_augment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.475 copying torchvision/transforms/v2/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.476 copying torchvision/transforms/v2/_temporal.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.476 copying torchvision/transforms/v2/_deprecated.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.476 copying torchvision/transforms/v2/_geometry.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.476 copying torchvision/transforms/v2/_augment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2 +#13 2.476 creating build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.477 copying torchvision/transforms/v2/functional/_type_conversion.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.477 copying torchvision/transforms/v2/functional/_meta.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.477 copying torchvision/transforms/v2/functional/_misc.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.477 copying torchvision/transforms/v2/functional/_color.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.477 copying torchvision/transforms/v2/functional/__init__.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.478 copying torchvision/transforms/v2/functional/_utils.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.478 copying torchvision/transforms/v2/functional/_temporal.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.478 copying torchvision/transforms/v2/functional/_deprecated.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.478 copying torchvision/transforms/v2/functional/_geometry.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.478 copying torchvision/transforms/v2/functional/_augment.py -> build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional +#13 2.483 running build_ext +#13 2.484 building 'torchvision._C' extension +#13 2.485 creating /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd +#13 2.485 creating /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu +#13 2.485 creating /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu +#13 2.487 Emitting ninja build file /vision/build/temp.linux-x86_64-cpython-310/build.ninja... +#13 2.487 Compiling objects... +#13 2.487 Using envvar MAX_JOBS (14) as the number of workers... +#13 19.90 [1/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/nms.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/nms.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/nms.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.71 [2/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 20.93 [3/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/nms_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/nms_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/nms_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 24.00 [4/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 24.05 [5/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 24.72 [6/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_align.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/ps_roi_align.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_align.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 25.46 [7/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 26.13 [8/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 27.15 [9/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/deform_conv2d.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/deform_conv2d.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/deform_conv2d.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 27.47 [10/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 27.66 [11/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 28.39 [12/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 28.57 [13/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_pool_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/roi_pool_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_pool_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 28.94 [14/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 30.81 [15/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/vision.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/vision.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/vision.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 30.81 In file included from /vision/torchvision/csrc/vision.cpp:1: +#13 30.81 /vision/torchvision/csrc/vision.h:10:40: warning: ‘_register_ops’ initialized and declared ‘extern’ +#13 30.81 10 | extern "C" VISION_INLINE_VARIABLE auto _register_ops = &cuda_version; +#13 30.81 | ^~~~~~~~~~~~~ +#13 34.22 [16/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 34.55 [17/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_pool.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/ps_roi_pool.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_pool.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 34.95 [18/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 35.61 [19/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_pool.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/roi_pool.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_pool.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 35.84 [20/20] c++ -MMD -MF /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_align.o.d -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/vision/torchvision/csrc -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -I/usr/local/lib/python3.10/dist-packages/torch/include/TH -I/usr/local/lib/python3.10/dist-packages/torch/include/THC -I/usr/include/python3.10 -c -c /vision/torchvision/csrc/ops/roi_align.cpp -o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_align.o -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DUSE_ROCM=1 -DTORCH_API_INCLUDE_EXTENSION_H '-DPYBIND11_COMPILER_TYPE="_gcc"' '-DPYBIND11_STDLIB="_libstdcpp"' '-DPYBIND11_BUILD_ABI="_cxxabi1016"' -DTORCH_EXTENSION_NAME=_C -D_GLIBCXX_USE_CXX11_ABI=1 -std=c++17 +#13 35.84 x86_64-linux-gnu-g++ -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -shared -Wl,-O1 -Wl,-Bsymbolic-functions /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/deform_conv2d_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/ps_roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/autograd/roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/deform_conv2d_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/nms_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/ps_roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/cpu/roi_pool_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/deform_conv2d.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/nms.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_align.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/ps_roi_pool.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qnms_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/quantized/cpu/qroi_align_kernel.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_align.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/ops/roi_pool.o /vision/build/temp.linux-x86_64-cpython-310/vision/torchvision/csrc/vision.o -L/usr/local/lib/python3.10/dist-packages/torch/lib -L/usr/lib/x86_64-linux-gnu -lc10 -ltorch -ltorch_cpu -ltorch_python -o build/lib.linux-x86_64-cpython-310/torchvision/_C.so +#13 36.31 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. +#13 36.31 !! +#13 36.31 +#13 36.31 ******************************************************************************** +#13 36.31 Please avoid running ``setup.py`` directly. +#13 36.31 Instead, use pypa/build, pypa/installer or other +#13 36.31 standards-based tools. +#13 36.31 +#13 36.31 By 2025-Oct-31, you need to update your project and remove deprecated calls +#13 36.31 or your builds will no longer be supported. +#13 36.31 +#13 36.31 See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. +#13 36.31 ******************************************************************************** +#13 36.31 +#13 36.31 !! +#13 36.31 self.initialize_options() +#13 36.32 installing to build/bdist.linux-x86_64/wheel +#13 36.32 running install +#13 36.32 running install_lib +#13 36.32 creating build/bdist.linux-x86_64/wheel +#13 36.32 creating build/bdist.linux-x86_64/wheel/torchvision +#13 36.32 creating build/bdist.linux-x86_64/wheel/torchvision/io +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/io/_video_opt.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/io/video_reader.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/io/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/io/image.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/io/video.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/io/_load_gpu_decoder.py -> build/bdist.linux-x86_64/wheel/./torchvision/io +#13 36.32 creating build/bdist.linux-x86_64/wheel/torchvision/datasets +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/voc.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/country211.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.32 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/_stereo_matching.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/dtd.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/celeba.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/stl10.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/gtsrb.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/omniglot.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/video_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/sbd.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/lfw.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/semeion.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/kitti.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/sun397.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/phototour.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/vision.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/clevr.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/folder.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/coco.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/fakedata.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/caltech.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/svhn.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/fer2013.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/rendered_sst2.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/places365.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 creating build/bdist.linux-x86_64/wheel/torchvision/datasets/samplers +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers/clip_sampler.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets/samplers +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/samplers/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets/samplers +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/moving_mnist.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/imagenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/_optical_flow.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/hmdb51.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/fgvc_aircraft.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/kinetics.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/cityscapes.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/inaturalist.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/oxford_iiit_pet.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/food101.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/flickr.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/stanford_cars.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/eurosat.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/pcam.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/mnist.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/cifar.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/flowers102.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/ucf101.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/usps.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/lsun.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/widerface.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datasets/sbu.py -> build/bdist.linux-x86_64/wheel/./torchvision/datasets +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.33 creating build/bdist.linux-x86_64/wheel/torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_dataset_wrapper.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_bounding_box.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_mask.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_image.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_video.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.33 copying build/lib.linux-x86_64-cpython-310/torchvision/datapoints/_datapoint.py -> build/bdist.linux-x86_64/wheel/./torchvision/datapoints +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/extension.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.34 creating build/bdist.linux-x86_64/wheel/torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mobilenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/_meta.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/vision_transformer.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/googlenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mobilenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/convnext.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/_api.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 creating build/bdist.linux-x86_64/wheel/torchvision/models/optical_flow +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow/raft.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/optical_flow +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/optical_flow +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/optical_flow/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/optical_flow +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/efficientnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/vgg.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mnasnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/squeezenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 creating build/bdist.linux-x86_64/wheel/torchvision/models/video +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/mvit.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/s3d.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/resnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/video/swin_transformer.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/video +#13 36.34 creating build/bdist.linux-x86_64/wheel/torchvision/models/segmentation +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/deeplabv3.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/lraspp.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/segmentation/fcn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/segmentation +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/resnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/inception.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 creating build/bdist.linux-x86_64/wheel/torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/mobilenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/googlenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/mobilenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/resnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/inception.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/shufflenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/quantization/mobilenetv3.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/quantization +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/alexnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.34 creating build/bdist.linux-x86_64/wheel/torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/backbone_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/roi_heads.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/retinanet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/rpn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/mask_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/ssd.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/transform.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.34 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/fcos.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/generalized_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/faster_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/image_list.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/keypoint_rcnn.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/ssdlite.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/detection/anchor_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/models/detection +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/shufflenetv2.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/mobilenetv3.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/maxvit.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/regnet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/feature_extraction.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/densenet.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/models/swin_transformer.py -> build/bdist.linux-x86_64/wheel/./torchvision/models +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/_internally_replaced_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.35 creating build/bdist.linux-x86_64/wheel/torchvision/transforms +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_transforms_video.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/autoaugment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/functional.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/functional_tensor.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_functional_video.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.35 creating build/bdist.linux-x86_64/wheel/torchvision/transforms/v2 +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_type_conversion.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.35 creating build/bdist.linux-x86_64/wheel/torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_type_conversion.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_meta.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_misc.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_color.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_temporal.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_deprecated.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_geometry.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/functional/_augment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2/functional +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_meta.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_misc.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_transform.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.35 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_color.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_container.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_auto_augment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_temporal.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_deprecated.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_geometry.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/v2/_augment.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms/v2 +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_presets.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/transforms.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/functional_pil.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_functional_pil.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/transforms/_functional_tensor.py -> build/bdist.linux-x86_64/wheel/./torchvision/transforms +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.36 creating build/bdist.linux-x86_64/wheel/torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/ps_roi_align.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/stochastic_depth.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/boxes.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/deform_conv.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/ciou_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/roi_pool.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/_register_onnx_ops.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/roi_align.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/drop_block.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/misc.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/__init__.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/ps_roi_pool.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/_utils.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/poolers.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/_box_convert.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/diou_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/giou_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/focal_loss.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/ops/feature_pyramid_network.py -> build/bdist.linux-x86_64/wheel/./torchvision/ops +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/version.py -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.36 copying build/lib.linux-x86_64-cpython-310/torchvision/_C.so -> build/bdist.linux-x86_64/wheel/./torchvision +#13 36.40 running install_egg_info +#13 36.40 running egg_info +#13 36.41 creating torchvision.egg-info +#13 36.41 writing torchvision.egg-info/PKG-INFO +#13 36.41 writing dependency_links to torchvision.egg-info/dependency_links.txt +#13 36.41 writing requirements to torchvision.egg-info/requires.txt +#13 36.41 writing top-level names to torchvision.egg-info/top_level.txt +#13 36.41 writing manifest file 'torchvision.egg-info/SOURCES.txt' +#13 36.41 reading manifest file 'torchvision.egg-info/SOURCES.txt' +#13 36.41 reading manifest template 'MANIFEST.in' +#13 36.41 warning: no previously-included files matching '__pycache__' found under directory '*' +#13 36.42 warning: no previously-included files matching '*.py[co]' found under directory '*' +#13 36.42 adding license file 'LICENSE' +#13 36.42 writing manifest file 'torchvision.egg-info/SOURCES.txt' +#13 36.42 Copying torchvision.egg-info to build/bdist.linux-x86_64/wheel/./torchvision-0.15.2a0+fa99a53-py3.10.egg-info +#13 36.42 running install_scripts +#13 36.43 creating build/bdist.linux-x86_64/wheel/torchvision-0.15.2a0+fa99a53.dist-info/WHEEL +#13 36.43 creating 'dist/torchvision-0.15.2a0+fa99a53-cp310-cp310-linux_x86_64.whl' and adding 'build/bdist.linux-x86_64/wheel' to it +#13 37.56 adding 'torchvision/_C.so' +#13 37.58 adding 'torchvision/__init__.py' +#13 37.58 adding 'torchvision/_internally_replaced_utils.py' +#13 37.58 adding 'torchvision/_utils.py' +#13 37.58 adding 'torchvision/extension.py' +#13 37.58 adding 'torchvision/utils.py' +#13 37.58 adding 'torchvision/version.py' +#13 37.58 adding 'torchvision/datapoints/__init__.py' +#13 37.58 adding 'torchvision/datapoints/_bounding_box.py' +#13 37.58 adding 'torchvision/datapoints/_datapoint.py' +#13 37.58 adding 'torchvision/datapoints/_dataset_wrapper.py' +#13 37.58 adding 'torchvision/datapoints/_image.py' +#13 37.58 adding 'torchvision/datapoints/_mask.py' +#13 37.58 adding 'torchvision/datapoints/_video.py' +#13 37.58 adding 'torchvision/datasets/__init__.py' +#13 37.58 adding 'torchvision/datasets/_optical_flow.py' +#13 37.58 adding 'torchvision/datasets/_stereo_matching.py' +#13 37.58 adding 'torchvision/datasets/caltech.py' +#13 37.58 adding 'torchvision/datasets/celeba.py' +#13 37.58 adding 'torchvision/datasets/cifar.py' +#13 37.58 adding 'torchvision/datasets/cityscapes.py' +#13 37.58 adding 'torchvision/datasets/clevr.py' +#13 37.58 adding 'torchvision/datasets/coco.py' +#13 37.58 adding 'torchvision/datasets/country211.py' +#13 37.58 adding 'torchvision/datasets/dtd.py' +#13 37.58 adding 'torchvision/datasets/eurosat.py' +#13 37.58 adding 'torchvision/datasets/fakedata.py' +#13 37.58 adding 'torchvision/datasets/fer2013.py' +#13 37.58 adding 'torchvision/datasets/fgvc_aircraft.py' +#13 37.58 adding 'torchvision/datasets/flickr.py' +#13 37.58 adding 'torchvision/datasets/flowers102.py' +#13 37.58 adding 'torchvision/datasets/folder.py' +#13 37.58 adding 'torchvision/datasets/food101.py' +#13 37.59 adding 'torchvision/datasets/gtsrb.py' +#13 37.59 adding 'torchvision/datasets/hmdb51.py' +#13 37.59 adding 'torchvision/datasets/imagenet.py' +#13 37.59 adding 'torchvision/datasets/inaturalist.py' +#13 37.59 adding 'torchvision/datasets/kinetics.py' +#13 37.59 adding 'torchvision/datasets/kitti.py' +#13 37.59 adding 'torchvision/datasets/lfw.py' +#13 37.59 adding 'torchvision/datasets/lsun.py' +#13 37.59 adding 'torchvision/datasets/mnist.py' +#13 37.59 adding 'torchvision/datasets/moving_mnist.py' +#13 37.59 adding 'torchvision/datasets/omniglot.py' +#13 37.59 adding 'torchvision/datasets/oxford_iiit_pet.py' +#13 37.59 adding 'torchvision/datasets/pcam.py' +#13 37.59 adding 'torchvision/datasets/phototour.py' +#13 37.59 adding 'torchvision/datasets/places365.py' +#13 37.59 adding 'torchvision/datasets/rendered_sst2.py' +#13 37.59 adding 'torchvision/datasets/sbd.py' +#13 37.59 adding 'torchvision/datasets/sbu.py' +#13 37.59 adding 'torchvision/datasets/semeion.py' +#13 37.59 adding 'torchvision/datasets/stanford_cars.py' +#13 37.59 adding 'torchvision/datasets/stl10.py' +#13 37.59 adding 'torchvision/datasets/sun397.py' +#13 37.59 adding 'torchvision/datasets/svhn.py' +#13 37.59 adding 'torchvision/datasets/ucf101.py' +#13 37.59 adding 'torchvision/datasets/usps.py' +#13 37.59 adding 'torchvision/datasets/utils.py' +#13 37.59 adding 'torchvision/datasets/video_utils.py' +#13 37.59 adding 'torchvision/datasets/vision.py' +#13 37.59 adding 'torchvision/datasets/voc.py' +#13 37.59 adding 'torchvision/datasets/widerface.py' +#13 37.59 adding 'torchvision/datasets/samplers/__init__.py' +#13 37.59 adding 'torchvision/datasets/samplers/clip_sampler.py' +#13 37.59 adding 'torchvision/io/__init__.py' +#13 37.59 adding 'torchvision/io/_load_gpu_decoder.py' +#13 37.59 adding 'torchvision/io/_video_opt.py' +#13 37.60 adding 'torchvision/io/image.py' +#13 37.60 adding 'torchvision/io/video.py' +#13 37.60 adding 'torchvision/io/video_reader.py' +#13 37.60 adding 'torchvision/models/__init__.py' +#13 37.60 adding 'torchvision/models/_api.py' +#13 37.60 adding 'torchvision/models/_meta.py' +#13 37.60 adding 'torchvision/models/_utils.py' +#13 37.60 adding 'torchvision/models/alexnet.py' +#13 37.60 adding 'torchvision/models/convnext.py' +#13 37.60 adding 'torchvision/models/densenet.py' +#13 37.60 adding 'torchvision/models/efficientnet.py' +#13 37.60 adding 'torchvision/models/feature_extraction.py' +#13 37.60 adding 'torchvision/models/googlenet.py' +#13 37.60 adding 'torchvision/models/inception.py' +#13 37.60 adding 'torchvision/models/maxvit.py' +#13 37.60 adding 'torchvision/models/mnasnet.py' +#13 37.60 adding 'torchvision/models/mobilenet.py' +#13 37.60 adding 'torchvision/models/mobilenetv2.py' +#13 37.60 adding 'torchvision/models/mobilenetv3.py' +#13 37.60 adding 'torchvision/models/regnet.py' +#13 37.60 adding 'torchvision/models/resnet.py' +#13 37.61 adding 'torchvision/models/shufflenetv2.py' +#13 37.61 adding 'torchvision/models/squeezenet.py' +#13 37.61 adding 'torchvision/models/swin_transformer.py' +#13 37.61 adding 'torchvision/models/vgg.py' +#13 37.61 adding 'torchvision/models/vision_transformer.py' +#13 37.61 adding 'torchvision/models/detection/__init__.py' +#13 37.61 adding 'torchvision/models/detection/_utils.py' +#13 37.61 adding 'torchvision/models/detection/anchor_utils.py' +#13 37.61 adding 'torchvision/models/detection/backbone_utils.py' +#13 37.61 adding 'torchvision/models/detection/faster_rcnn.py' +#13 37.61 adding 'torchvision/models/detection/fcos.py' +#13 37.61 adding 'torchvision/models/detection/generalized_rcnn.py' +#13 37.61 adding 'torchvision/models/detection/image_list.py' +#13 37.61 adding 'torchvision/models/detection/keypoint_rcnn.py' +#13 37.61 adding 'torchvision/models/detection/mask_rcnn.py' +#13 37.61 adding 'torchvision/models/detection/retinanet.py' +#13 37.61 adding 'torchvision/models/detection/roi_heads.py' +#13 37.61 adding 'torchvision/models/detection/rpn.py' +#13 37.62 adding 'torchvision/models/detection/ssd.py' +#13 37.62 adding 'torchvision/models/detection/ssdlite.py' +#13 37.62 adding 'torchvision/models/detection/transform.py' +#13 37.62 adding 'torchvision/models/optical_flow/__init__.py' +#13 37.62 adding 'torchvision/models/optical_flow/_utils.py' +#13 37.62 adding 'torchvision/models/optical_flow/raft.py' +#13 37.62 adding 'torchvision/models/quantization/__init__.py' +#13 37.62 adding 'torchvision/models/quantization/googlenet.py' +#13 37.62 adding 'torchvision/models/quantization/inception.py' +#13 37.62 adding 'torchvision/models/quantization/mobilenet.py' +#13 37.62 adding 'torchvision/models/quantization/mobilenetv2.py' +#13 37.62 adding 'torchvision/models/quantization/mobilenetv3.py' +#13 37.62 adding 'torchvision/models/quantization/resnet.py' +#13 37.62 adding 'torchvision/models/quantization/shufflenetv2.py' +#13 37.62 adding 'torchvision/models/quantization/utils.py' +#13 37.62 adding 'torchvision/models/segmentation/__init__.py' +#13 37.62 adding 'torchvision/models/segmentation/_utils.py' +#13 37.62 adding 'torchvision/models/segmentation/deeplabv3.py' +#13 37.62 adding 'torchvision/models/segmentation/fcn.py' +#13 37.62 adding 'torchvision/models/segmentation/lraspp.py' +#13 37.62 adding 'torchvision/models/video/__init__.py' +#13 37.62 adding 'torchvision/models/video/mvit.py' +#13 37.62 adding 'torchvision/models/video/resnet.py' +#13 37.62 adding 'torchvision/models/video/s3d.py' +#13 37.62 adding 'torchvision/models/video/swin_transformer.py' +#13 37.62 adding 'torchvision/ops/__init__.py' +#13 37.62 adding 'torchvision/ops/_box_convert.py' +#13 37.62 adding 'torchvision/ops/_register_onnx_ops.py' +#13 37.62 adding 'torchvision/ops/_utils.py' +#13 37.62 adding 'torchvision/ops/boxes.py' +#13 37.62 adding 'torchvision/ops/ciou_loss.py' +#13 37.63 adding 'torchvision/ops/deform_conv.py' +#13 37.63 adding 'torchvision/ops/diou_loss.py' +#13 37.63 adding 'torchvision/ops/drop_block.py' +#13 37.63 adding 'torchvision/ops/feature_pyramid_network.py' +#13 37.63 adding 'torchvision/ops/focal_loss.py' +#13 37.63 adding 'torchvision/ops/giou_loss.py' +#13 37.63 adding 'torchvision/ops/misc.py' +#13 37.63 adding 'torchvision/ops/poolers.py' +#13 37.63 adding 'torchvision/ops/ps_roi_align.py' +#13 37.63 adding 'torchvision/ops/ps_roi_pool.py' +#13 37.63 adding 'torchvision/ops/roi_align.py' +#13 37.63 adding 'torchvision/ops/roi_pool.py' +#13 37.63 adding 'torchvision/ops/stochastic_depth.py' +#13 37.63 adding 'torchvision/transforms/__init__.py' +#13 37.63 adding 'torchvision/transforms/_functional_pil.py' +#13 37.63 adding 'torchvision/transforms/_functional_tensor.py' +#13 37.63 adding 'torchvision/transforms/_functional_video.py' +#13 37.63 adding 'torchvision/transforms/_presets.py' +#13 37.63 adding 'torchvision/transforms/_transforms_video.py' +#13 37.63 adding 'torchvision/transforms/autoaugment.py' +#13 37.63 adding 'torchvision/transforms/functional.py' +#13 37.63 adding 'torchvision/transforms/functional_pil.py' +#13 37.63 adding 'torchvision/transforms/functional_tensor.py' +#13 37.64 adding 'torchvision/transforms/transforms.py' +#13 37.64 adding 'torchvision/transforms/v2/__init__.py' +#13 37.64 adding 'torchvision/transforms/v2/_augment.py' +#13 37.64 adding 'torchvision/transforms/v2/_auto_augment.py' +#13 37.64 adding 'torchvision/transforms/v2/_color.py' +#13 37.64 adding 'torchvision/transforms/v2/_container.py' +#13 37.64 adding 'torchvision/transforms/v2/_deprecated.py' +#13 37.64 adding 'torchvision/transforms/v2/_geometry.py' +#13 37.64 adding 'torchvision/transforms/v2/_meta.py' +#13 37.64 adding 'torchvision/transforms/v2/_misc.py' +#13 37.64 adding 'torchvision/transforms/v2/_temporal.py' +#13 37.64 adding 'torchvision/transforms/v2/_transform.py' +#13 37.64 adding 'torchvision/transforms/v2/_type_conversion.py' +#13 37.64 adding 'torchvision/transforms/v2/_utils.py' +#13 37.64 adding 'torchvision/transforms/v2/utils.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/__init__.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_augment.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_color.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_deprecated.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_geometry.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_meta.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_misc.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_temporal.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_type_conversion.py' +#13 37.64 adding 'torchvision/transforms/v2/functional/_utils.py' +#13 37.64 adding 'torchvision-0.15.2a0+fa99a53.dist-info/licenses/LICENSE' +#13 37.64 adding 'torchvision-0.15.2a0+fa99a53.dist-info/METADATA' +#13 37.65 adding 'torchvision-0.15.2a0+fa99a53.dist-info/WHEEL' +#13 37.65 adding 'torchvision-0.15.2a0+fa99a53.dist-info/top_level.txt' +#13 37.65 adding 'torchvision-0.15.2a0+fa99a53.dist-info/RECORD' +#13 37.65 removing build/bdist.linux-x86_64/wheel +#13 38.48 Processing ./dist/torchvision-0.15.2a0+fa99a53-cp310-cp310-linux_x86_64.whl +#13 38.50 Requirement already satisfied: numpy in /usr/local/lib/python3.10/dist-packages (from torchvision==0.15.2a0+fa99a53) (1.23.5) +#13 38.50 Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from torchvision==0.15.2a0+fa99a53) (2.32.3) +#13 38.50 Requirement already satisfied: torch in /usr/local/lib/python3.10/dist-packages (from torchvision==0.15.2a0+fa99a53) (2.0.0a0+gite9ebda2) +#13 44.32 Collecting pillow!=8.3.*,>=5.3.0 (from torchvision==0.15.2a0+fa99a53) +#13 44.83 Downloading pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl.metadata (8.9 kB) +#13 44.85 Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (3.4.2) +#13 44.85 Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (3.10) +#13 44.85 Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (2.4.0) +#13 44.85 Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests->torchvision==0.15.2a0+fa99a53) (2025.4.26) +#13 44.86 Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (3.18.0) +#13 44.86 Requirement already satisfied: typing-extensions in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (4.13.2) +#13 44.86 Requirement already satisfied: sympy in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (1.14.0) +#13 44.86 Requirement already satisfied: networkx in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (3.4.2) +#13 44.86 Requirement already satisfied: jinja2 in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (3.1.6) +#13 44.86 Requirement already satisfied: pytorch-triton-rocm<2.1,>=2.0.0 in /usr/local/lib/python3.10/dist-packages (from torch->torchvision==0.15.2a0+fa99a53) (2.0.2) +#13 44.86 Requirement already satisfied: cmake in /usr/local/lib/python3.10/dist-packages (from pytorch-triton-rocm<2.1,>=2.0.0->torch->torchvision==0.15.2a0+fa99a53) (3.20.2) +#13 44.86 Requirement already satisfied: lit in /usr/local/lib/python3.10/dist-packages (from pytorch-triton-rocm<2.1,>=2.0.0->torch->torchvision==0.15.2a0+fa99a53) (18.1.8) +#13 44.86 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.10/dist-packages (from jinja2->torch->torchvision==0.15.2a0+fa99a53) (3.0.2) +#13 44.87 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.10/dist-packages (from sympy->torch->torchvision==0.15.2a0+fa99a53) (1.3.0) +#13 44.98 Downloading pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl (4.6 MB) +#13 47.93 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/4.6 MB 1.7 MB/s eta 0:00:00 +#13 47.98 Installing collected packages: pillow, torchvision +#13 48.69 +#13 48.70 Successfully installed pillow-11.2.1 torchvision-0.15.2a0+fa99a53 +#13 DONE 49.6s + +#14 [11/18] RUN echo "Checkout Torchaudio Version: v2.0.2" && git clone --depth 1 --branch v2.0.2 https://github.com/pytorch/audio.git /audio && true +#14 0.267 Checkout Torchaudio Version: v2.0.2 +#14 0.268 Cloning into '/audio'... +#14 12.33 Note: switching to '31de77dad5c89274451b3f5c4bcb630be12787c4'. +#14 12.33 +#14 12.33 You are in 'detached HEAD' state. You can look around, make experimental +#14 12.33 changes and commit them, and you can discard any commits you make in this +#14 12.33 state without impacting any branches by switching back to a branch. +#14 12.33 +#14 12.33 If you want to create a new branch to retain commits you create, you may +#14 12.33 do so (now or later) by using -c with the switch command. Example: +#14 12.33 +#14 12.33 git switch -c +#14 12.33 +#14 12.33 Or undo this operation with: +#14 12.33 +#14 12.33 git switch - +#14 12.33 +#14 12.33 Turn off this advice by setting config variable advice.detachedHead to false +#14 12.33 +#14 DONE 12.8s + +#15 [12/18] WORKDIR /audio +#15 DONE 0.1s + +#16 [13/18] RUN echo "BUILDING Torchaudio v2.0.2" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/* +#16 0.282 BUILDING Torchaudio v2.0.2 +#16 0.660 Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] +#16 0.746 Get:2 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy InRelease [5415 B] +#16 0.810 Get:3 https://repo.radeon.com/rocm/apt/5.4.2 jammy InRelease [2603 B] +#16 0.846 Get:4 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] +#16 0.929 Get:5 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy/main amd64 Packages [9601 B] +#16 1.038 Get:6 https://repo.radeon.com/rocm/apt/5.4.2 jammy/main amd64 Packages [31.8 kB] +#16 1.364 Get:7 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [4282 kB] +#16 2.194 Get:8 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] +#16 2.649 Get:9 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] +#16 2.989 Get:10 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB] +#16 3.125 Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB] +#16 3.407 Get:12 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2901 kB] +#16 4.102 Get:13 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB] +#16 4.202 Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB] +#16 5.161 Get:15 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1245 kB] +#16 5.231 Get:16 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [47.7 kB] +#16 9.020 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [55.7 kB] +#16 9.021 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [4517 kB] +#16 10.21 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1546 kB] +#16 10.86 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] +#16 11.43 Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB] +#16 11.43 Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.2 kB] +#16 11.55 Fetched 38.4 MB in 11s (3414 kB/s) +#16 11.55 Reading package lists... +#16 12.28 W: https://repo.radeon.com/amdgpu/5.4.2/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#16 12.28 W: https://repo.radeon.com/rocm/apt/5.4.2/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#16 12.31 Reading package lists... +#16 13.01 Building dependency tree... +#16 13.20 Reading state information... +#16 13.34 The following additional packages will be installed: +#16 13.34 libao-common libao4 libflac-dev libid3tag0 libltdl7 libmad0 libogg-dev +#16 13.34 libopencore-amrnb0 libopencore-amrwb0 libopus-dev libsox-fmt-all +#16 13.34 libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 libsox-fmt-oss +#16 13.34 libsox-fmt-pulse libsox3 libvorbis-dev libwavpack1 +#16 13.34 Suggested packages: +#16 13.34 libaudio2 libsndio6.1 +#16 13.39 The following NEW packages will be installed: +#16 13.39 libao-common libao4 libflac-dev libid3tag0 libltdl7 libmad0 libogg-dev +#16 13.39 libopencore-amrnb0 libopencore-amrwb0 libopus-dev libsndfile1-dev libsox-dev +#16 13.39 libsox-fmt-all libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 +#16 13.40 libsox-fmt-oss libsox-fmt-pulse libsox3 libvorbis-dev libwavpack1 sox +#16 13.77 0 upgraded, 23 newly installed, 0 to remove and 124 not upgraded. +#16 13.77 Need to get 2628 kB of archives. +#16 13.77 After this operation, 10.7 MB of additional disk space will be used. +#16 13.77 Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libao-common all 1.2.2+20180113-1.1ubuntu3 [6568 B] +#16 13.93 Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libao4 amd64 1.2.2+20180113-1.1ubuntu3 [35.2 kB] +#16 14.12 Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg-dev amd64 1.3.5-0ubuntu3 [161 kB] +#16 14.49 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac-dev amd64 1.3.3-2ubuntu0.2 [162 kB] +#16 14.65 Get:5 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libid3tag0 amd64 0.15.1b-14 [31.3 kB] +#16 14.67 Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 libltdl7 amd64 2.4.6-15build2 [39.6 kB] +#16 14.70 Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmad0 amd64 0.15.1b-10ubuntu1 [63.1 kB] +#16 14.74 Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopencore-amrnb0 amd64 0.1.5-1 [94.8 kB] +#16 14.79 Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopencore-amrwb0 amd64 0.1.5-1 [49.1 kB] +#16 14.83 Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus-dev amd64 1.3.1-0.1build2 [252 kB] +#16 15.13 Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis-dev amd64 1.3.7-1build2 [347 kB] +#16 15.21 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1-dev amd64 1.0.31-2ubuntu0.2 [509 kB] +#16 15.31 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox3 amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [240 kB] +#16 15.31 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-alsa amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [11.2 kB] +#16 15.31 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-ao amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [7740 B] +#16 15.31 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwavpack1 amd64 5.4.0-1build2 [83.7 kB] +#16 15.31 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-base amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [33.7 kB] +#16 15.31 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-mp3 amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [17.3 kB] +#16 15.31 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-oss amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [9424 B] +#16 15.31 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-pulse amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [7732 B] +#16 15.43 Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-all amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [5016 B] +#16 15.58 Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-dev amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [356 kB] +#16 15.72 Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 sox amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [104 kB] +#16 15.87 debconf: delaying package configuration, since apt-utils is not installed +#16 15.91 Fetched 2628 kB in 2s (1114 kB/s) +#16 15.95 Selecting previously unselected package libao-common. +#16 15.95 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 32296 files and directories currently installed.) +#16 15.98 Preparing to unpack .../00-libao-common_1.2.2+20180113-1.1ubuntu3_all.deb ... +#16 15.99 Unpacking libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 16.05 Selecting previously unselected package libao4:amd64. +#16 16.05 Preparing to unpack .../01-libao4_1.2.2+20180113-1.1ubuntu3_amd64.deb ... +#16 16.07 Unpacking libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 16.12 Selecting previously unselected package libogg-dev:amd64. +#16 16.12 Preparing to unpack .../02-libogg-dev_1.3.5-0ubuntu3_amd64.deb ... +#16 16.13 Unpacking libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 16.19 Selecting previously unselected package libflac-dev:amd64. +#16 16.19 Preparing to unpack .../03-libflac-dev_1.3.3-2ubuntu0.2_amd64.deb ... +#16 16.20 Unpacking libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 16.26 Selecting previously unselected package libid3tag0:amd64. +#16 16.27 Preparing to unpack .../04-libid3tag0_0.15.1b-14_amd64.deb ... +#16 16.28 Unpacking libid3tag0:amd64 (0.15.1b-14) ... +#16 16.33 Selecting previously unselected package libltdl7:amd64. +#16 16.34 Preparing to unpack .../05-libltdl7_2.4.6-15build2_amd64.deb ... +#16 16.35 Unpacking libltdl7:amd64 (2.4.6-15build2) ... +#16 16.40 Selecting previously unselected package libmad0:amd64. +#16 16.41 Preparing to unpack .../06-libmad0_0.15.1b-10ubuntu1_amd64.deb ... +#16 16.41 Unpacking libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 16.47 Selecting previously unselected package libopencore-amrnb0:amd64. +#16 16.48 Preparing to unpack .../07-libopencore-amrnb0_0.1.5-1_amd64.deb ... +#16 16.48 Unpacking libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 16.55 Selecting previously unselected package libopencore-amrwb0:amd64. +#16 16.55 Preparing to unpack .../08-libopencore-amrwb0_0.1.5-1_amd64.deb ... +#16 16.56 Unpacking libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 16.61 Selecting previously unselected package libopus-dev:amd64. +#16 16.61 Preparing to unpack .../09-libopus-dev_1.3.1-0.1build2_amd64.deb ... +#16 16.62 Unpacking libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 16.67 Selecting previously unselected package libvorbis-dev:amd64. +#16 16.68 Preparing to unpack .../10-libvorbis-dev_1.3.7-1build2_amd64.deb ... +#16 16.68 Unpacking libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 16.75 Selecting previously unselected package libsndfile1-dev:amd64. +#16 16.75 Preparing to unpack .../11-libsndfile1-dev_1.0.31-2ubuntu0.2_amd64.deb ... +#16 16.76 Unpacking libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 16.83 Selecting previously unselected package libsox3:amd64. +#16 16.84 Preparing to unpack .../12-libsox3_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 16.84 Unpacking libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 16.90 Selecting previously unselected package libsox-fmt-alsa:amd64. +#16 16.90 Preparing to unpack .../13-libsox-fmt-alsa_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 16.91 Unpacking libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 16.96 Selecting previously unselected package libsox-fmt-ao:amd64. +#16 16.96 Preparing to unpack .../14-libsox-fmt-ao_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 16.97 Unpacking libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.03 Selecting previously unselected package libwavpack1:amd64. +#16 17.04 Preparing to unpack .../15-libwavpack1_5.4.0-1build2_amd64.deb ... +#16 17.04 Unpacking libwavpack1:amd64 (5.4.0-1build2) ... +#16 17.10 Selecting previously unselected package libsox-fmt-base:amd64. +#16 17.10 Preparing to unpack .../16-libsox-fmt-base_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.11 Unpacking libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.16 Selecting previously unselected package libsox-fmt-mp3:amd64. +#16 17.16 Preparing to unpack .../17-libsox-fmt-mp3_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.17 Unpacking libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.22 Selecting previously unselected package libsox-fmt-oss:amd64. +#16 17.22 Preparing to unpack .../18-libsox-fmt-oss_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.23 Unpacking libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.28 Selecting previously unselected package libsox-fmt-pulse:amd64. +#16 17.28 Preparing to unpack .../19-libsox-fmt-pulse_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.29 Unpacking libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.34 Selecting previously unselected package libsox-fmt-all:amd64. +#16 17.34 Preparing to unpack .../20-libsox-fmt-all_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.35 Unpacking libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.40 Selecting previously unselected package libsox-dev:amd64. +#16 17.40 Preparing to unpack .../21-libsox-dev_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.41 Unpacking libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.47 Selecting previously unselected package sox. +#16 17.47 Preparing to unpack .../22-sox_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 17.48 Unpacking sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.55 Setting up libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 17.58 Setting up libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 17.60 Setting up libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 17.64 Setting up libid3tag0:amd64 (0.15.1b-14) ... +#16 17.66 Setting up libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 17.69 Setting up libltdl7:amd64 (2.4.6-15build2) ... +#16 17.71 Setting up libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 17.73 Setting up libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 17.76 Setting up libwavpack1:amd64 (5.4.0-1build2) ... +#16 17.78 Setting up libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 17.81 Setting up libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 17.83 Setting up libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 17.86 Setting up libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.88 Setting up libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.91 Setting up libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 17.93 Setting up libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.96 Setting up libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 17.98 Setting up libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 18.00 Setting up libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 18.03 Setting up libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 18.05 Setting up sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 18.08 Setting up libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 18.10 Setting up libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 18.13 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#16 19.60 -- Git branch: HEAD +#16 19.60 -- Git SHA: 31de77dad5c89274451b3f5c4bcb630be12787c4 +#16 19.60 -- Git tag: v2.0.2 +#16 19.60 -- PyTorch dependency: torch +#16 19.60 -- Building version 2.0.2+31de77d +#16 19.60 --- Initializing submodules +#16 19.62 Submodule 'flashlight-text' (https://github.com/flashlight/text) registered for path 'third_party/flashlight-text/submodule' +#16 19.62 Submodule 'kaldi' (https://github.com/kaldi-asr/kaldi) registered for path 'third_party/kaldi/submodule' +#16 19.62 Submodule 'third_party/kenlm/submodule' (https://github.com/kpu/kenlm) registered for path 'third_party/kenlm/kenlm' +#16 19.64 Cloning into '/audio/third_party/flashlight-text/submodule'... +#16 26.82 Cloning into '/audio/third_party/kaldi/submodule'... +#16 45.31 Cloning into '/audio/third_party/kenlm/kenlm'... +#16 51.99 Submodule path 'third_party/flashlight-text/submodule': checked out '98028c7da83d66c2aba6f5f8708c063d266ca5a4' +#16 52.64 Submodule path 'third_party/kaldi/submodule': checked out '3eea37dd09b55064e6362216f7e9a60641f29f09' +#16 52.68 Submodule path 'third_party/kenlm/kenlm': checked out '5cea457db26950a73d638425c183b368c06ed7c6' +#16 52.68 --- Initialized submodule +#16 52.68 --- Fetching v1.2.12.tar.gz +#16 58.92 --- Fetching bzip2-1.0.8.tar.gz +#16 60.35 --- Fetching xz-5.2.5.tar.gz +#16 63.21 --- Fetching opencore-amr-0.1.5.tar.gz +#16 66.70 --- Fetching lame-3.99.5.tar.gz +#16 68.36 --- Fetching libogg-1.3.3.tar.gz +#16 71.45 --- Fetching flac-1.3.2.tar.xz +#16 75.12 --- Fetching libvorbis-1.3.6.tar.gz +#16 81.05 --- Fetching opus-1.3.1.tar.gz +#16 85.56 --- Fetching opusfile-0.12.tar.gz +#16 88.25 --- Fetching sox-14.4.2.tar.bz2 +#16 89.62 Excluding torchaudio.prototype from the package. +#16 89.64 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#16 89.64 !! +#16 89.64 +#16 89.64 ******************************************************************************** +#16 89.64 Please consider removing the following classifiers in favor of a SPDX license expression: +#16 89.64 +#16 89.64 License :: OSI Approved :: BSD License +#16 89.64 +#16 89.64 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#16 89.64 ******************************************************************************** +#16 89.64 +#16 89.64 !! +#16 89.64 self._finalize_license_expression() +#16 89.64 running bdist_wheel +#16 89.65 running build +#16 89.65 running build_py +#16 89.66 creating build/lib.linux-x86_64-cpython-310/torchaudio +#16 89.66 copying torchaudio/kaldi_io.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 89.66 copying torchaudio/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 89.66 copying torchaudio/version.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 89.66 creating build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 89.66 copying torchaudio/io/_compat.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 89.66 copying torchaudio/io/_stream_writer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 89.66 copying torchaudio/io/_stream_reader.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 89.66 copying torchaudio/io/_playback.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 89.66 copying torchaudio/io/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 89.66 creating build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/vctk.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/speechcommands.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/cmudict.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/cmuarctic.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/ljspeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/quesst14.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/dr_vctk.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/yesno.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/iemocap.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/commonvoice.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/librilight_limited.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/tedlium.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/librimix.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/voxceleb1.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/librispeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/libritts.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/gtzan.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/fluentcommands.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/musdb_hq.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 copying torchaudio/datasets/snips.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 89.66 creating build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 89.66 copying torchaudio/_backend/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 89.66 copying torchaudio/_backend/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 89.66 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 89.66 copying torchaudio/pipelines/rnnt_pipeline.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 89.66 copying torchaudio/pipelines/_source_separation_pipeline.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 89.66 copying torchaudio/pipelines/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 89.67 copying torchaudio/utils/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 89.67 copying torchaudio/utils/sox_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 89.67 copying torchaudio/utils/ffmpeg_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 89.67 copying torchaudio/utils/download.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 89.67 copying torchaudio/sox_effects/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 89.67 copying torchaudio/sox_effects/sox_effects.py -> build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 89.67 copying torchaudio/functional/functional.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 89.67 copying torchaudio/functional/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 89.67 copying torchaudio/functional/filtering.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/conformer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/conv_tasnet.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/deepspeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/rnnt.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/wav2letter.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/emformer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/_hdemucs.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/tacotron2.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/wavernn.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 copying torchaudio/models/rnnt_decoder.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 89.67 copying torchaudio/_extension/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 89.67 copying torchaudio/_extension/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 89.67 copying torchaudio/_internal/module_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 89.67 copying torchaudio/_internal/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 copying torchaudio/backend/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 copying torchaudio/backend/common.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 copying torchaudio/backend/soundfile_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 copying torchaudio/backend/sox_io_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 copying torchaudio/backend/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 copying torchaudio/backend/no_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 89.67 copying torchaudio/transforms/_multi_channel.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 89.67 copying torchaudio/transforms/_transforms.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 89.67 copying torchaudio/transforms/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 89.67 copying torchaudio/compliance/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 89.67 copying torchaudio/compliance/kaldi.py -> build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 89.67 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 89.67 copying torchaudio/pipelines/_tts/interface.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 89.68 copying torchaudio/pipelines/_tts/impl.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 89.68 copying torchaudio/pipelines/_tts/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 89.68 copying torchaudio/pipelines/_tts/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 89.68 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 89.68 copying torchaudio/pipelines/_wav2vec2/impl.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 89.68 copying torchaudio/pipelines/_wav2vec2/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 89.68 copying torchaudio/pipelines/_wav2vec2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 89.68 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 89.68 copying torchaudio/models/decoder/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 89.68 copying torchaudio/models/decoder/_ctc_decoder.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 89.68 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 89.68 copying torchaudio/models/wav2vec2/wavlm_attention.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 89.68 copying torchaudio/models/wav2vec2/model.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 89.68 copying torchaudio/models/wav2vec2/components.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 89.68 copying torchaudio/models/wav2vec2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 89.68 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 89.68 copying torchaudio/models/wav2vec2/utils/import_fairseq.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 89.68 copying torchaudio/models/wav2vec2/utils/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 89.68 copying torchaudio/models/wav2vec2/utils/import_huggingface.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 89.68 running build_ext +#16 89.78 -- The C compiler identification is GNU 11.3.0 +#16 89.83 -- The CXX compiler identification is GNU 11.3.0 +#16 89.84 -- Detecting C compiler ABI info +#16 89.88 -- Detecting C compiler ABI info - done +#16 89.90 -- Check for working C compiler: /usr/bin/cc - skipped +#16 89.90 -- Detecting C compile features +#16 89.90 -- Detecting C compile features - done +#16 89.90 -- Detecting CXX compiler ABI info +#16 89.95 -- Detecting CXX compiler ABI info - done +#16 89.96 -- Check for working CXX compiler: /usr/bin/c++ - skipped +#16 89.96 -- Detecting CXX compile features +#16 89.96 -- Detecting CXX compile features - done +#16 90.15 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#16 90.15 HIP VERSION: 5.4.22803-474e8620 +#16 90.16 +#16 90.16 ***** ROCm version from /opt/rocm/.info/version-dev **** +#16 90.16 +#16 90.16 ROCM_VERSION_DEV: 5.4.2 +#16 90.16 ROCM_VERSION_DEV_MAJOR: 5 +#16 90.16 ROCM_VERSION_DEV_MINOR: 4 +#16 90.16 ROCM_VERSION_DEV_PATCH: 2 +#16 90.16 +#16 90.16 ***** Library versions from dpkg ***** +#16 90.16 +#16 90.16 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#16 90.16 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#16 90.17 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#16 90.18 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#16 90.18 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#16 90.21 +#16 90.21 ***** Library versions from cmake find_package ***** +#16 90.21 +#16 90.21 -- Looking for pthread.h +#16 90.26 -- Looking for pthread.h - found +#16 90.26 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +#16 90.30 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +#16 90.30 -- Found Threads: TRUE +#16 90.30 -- hip::amdhip64 is SHARED_LIBRARY +#16 90.31 hip VERSION: 5.4.22505 +#16 90.31 hsa-runtime64 VERSION: 1.7.50402 +#16 90.31 amd_comgr VERSION: 2.4.0 +#16 90.31 CMake Error at cmake/LoadHIP.cmake:138 (find_package): +#16 90.31 By not providing "Findrocrand.cmake" in CMAKE_MODULE_PATH this project has +#16 90.31 asked CMake to find a package configuration file provided by "rocrand", but +#16 90.31 CMake did not find one. +#16 90.31 +#16 90.31 Could not find a package configuration file provided by "rocrand" with any +#16 90.31 of the following names: +#16 90.31 +#16 90.31 rocrandConfig.cmake +#16 90.31 rocrand-config.cmake +#16 90.31 +#16 90.31 Add the installation prefix of "rocrand" to CMAKE_PREFIX_PATH or set +#16 90.31 "rocrand_DIR" to a directory containing one of the above files. If +#16 90.31 "rocrand" provides a separate development package or SDK, be sure it has +#16 90.31 been installed. +#16 90.31 Call Stack (most recent call first): +#16 90.31 cmake/LoadHIP.cmake:197 (find_package_and_print_version) +#16 90.31 CMakeLists.txt:75 (include) +#16 90.31 +#16 90.31 +#16 90.31 -- Configuring incomplete, errors occurred! +#16 90.31 See also "/audio/build/temp.linux-x86_64-cpython-310/CMakeFiles/CMakeOutput.log". +#16 90.32 Traceback (most recent call last): +#16 90.32 File "/audio/setup.py", line 184, in +#16 90.32 _main() +#16 90.32 File "/audio/setup.py", line 147, in _main +#16 90.32 setup( +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/__init__.py", line 115, in setup +#16 90.32 return distutils.core.setup(**attrs) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/core.py", line 186, in setup +#16 90.32 return run_commands(dist) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/core.py", line 202, in run_commands +#16 90.32 dist.run_commands() +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1002, in run_commands +#16 90.32 self.run_command(cmd) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/dist.py", line 1102, in run_command +#16 90.32 super().run_command(command) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1021, in run_command +#16 90.32 cmd_obj.run() +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/command/bdist_wheel.py", line 370, in run +#16 90.32 self.run_command("build") +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py", line 357, in run_command +#16 90.32 self.distribution.run_command(command) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/dist.py", line 1102, in run_command +#16 90.32 super().run_command(command) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1021, in run_command +#16 90.32 cmd_obj.run() +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build.py", line 135, in run +#16 90.32 self.run_command(cmd_name) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py", line 357, in run_command +#16 90.32 self.distribution.run_command(command) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/dist.py", line 1102, in run_command +#16 90.32 super().run_command(command) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py", line 1021, in run_command +#16 90.32 cmd_obj.run() +#16 90.32 File "/audio/tools/setup_helpers/extension.py", line 86, in run +#16 90.32 super().run() +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/command/build_ext.py", line 96, in run +#16 90.32 _build_ext.run(self) +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 368, in run +#16 90.32 self.build_extensions() +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 484, in build_extensions +#16 90.32 self._build_extensions_serial() +#16 90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 510, in _build_extensions_serial +#16 90.32 self.build_extension(ext) +#16 90.32 File "/audio/tools/setup_helpers/extension.py", line 167, in build_extension +#16 90.32 subprocess.check_call(["cmake", str(_ROOT_DIR)] + cmake_args, cwd=self.build_temp) +#16 90.32 File "/usr/lib/python3.10/subprocess.py", line 369, in check_call +#16 90.32 raise CalledProcessError(retcode, cmd) +#16 90.32 subprocess.CalledProcessError: Command '['cmake', '/audio', '-DCMAKE_BUILD_TYPE=Release', '-DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages/torch/share/cmake', '-DCMAKE_INSTALL_PREFIX=/audio/build/lib.linux-x86_64-cpython-310/torchaudio/', '-DCMAKE_VERBOSE_MAKEFILE=ON', '-DPython_INCLUDE_DIR=/usr/include/python3.10', '-DBUILD_SOX:BOOL=ON', '-DBUILD_KALDI:BOOL=ON', '-DBUILD_RIR:BOOL=ON', '-DBUILD_RNNT:BOOL=ON', '-DBUILD_CTC_DECODER:BOOL=ON', '-DBUILD_TORCHAUDIO_PYTHON_EXTENSION:BOOL=ON', '-DUSE_ROCM:BOOL=ON', '-DUSE_CUDA:BOOL=OFF', '-DUSE_OPENMP:BOOL=ON', '-DUSE_FFMPEG:BOOL=OFF', '-GNinja']' returned non-zero exit status 1. +#16 ERROR: process "/bin/sh -c echo \"BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}\" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 1 +------ + > [13/18] RUN echo "BUILDING Torchaudio v2.0.2" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/*: +90.32 self.build_extensions() +90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 484, in build_extensions +90.32 self._build_extensions_serial() +90.32 File "/usr/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py", line 510, in _build_extensions_serial +90.32 self.build_extension(ext) +90.32 File "/audio/tools/setup_helpers/extension.py", line 167, in build_extension +90.32 subprocess.check_call(["cmake", str(_ROOT_DIR)] + cmake_args, cwd=self.build_temp) +90.32 File "/usr/lib/python3.10/subprocess.py", line 369, in check_call +90.32 raise CalledProcessError(retcode, cmd) +90.32 subprocess.CalledProcessError: Command '['cmake', '/audio', '-DCMAKE_BUILD_TYPE=Release', '-DCMAKE_PREFIX_PATH=/usr/local/lib/python3.10/dist-packages/torch/share/cmake', '-DCMAKE_INSTALL_PREFIX=/audio/build/lib.linux-x86_64-cpython-310/torchaudio/', '-DCMAKE_VERBOSE_MAKEFILE=ON', '-DPython_INCLUDE_DIR=/usr/include/python3.10', '-DBUILD_SOX:BOOL=ON', '-DBUILD_KALDI:BOOL=ON', '-DBUILD_RIR:BOOL=ON', '-DBUILD_RNNT:BOOL=ON', '-DBUILD_CTC_DECODER:BOOL=ON', '-DBUILD_TORCHAUDIO_PYTHON_EXTENSION:BOOL=ON', '-DUSE_ROCM:BOOL=ON', '-DUSE_CUDA:BOOL=OFF', '-DUSE_OPENMP:BOOL=ON', '-DUSE_FFMPEG:BOOL=OFF', '-GNinja']' returned non-zero exit status 1. +------ +Dockerfile:110 +-------------------- + 109 | WORKDIR /audio + 110 | >>> RUN echo "BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}" && \ + 111 | >>> apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && \ + 112 | >>> python3 setup.py bdist_wheel && \ + 113 | >>> python3 -m pip install --break-system-packages dist/torchaudio*.whl && \ + 114 | >>> ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && \ + 115 | >>> apt-get clean && rm -rf /var/lib/apt/lists/* + 116 | +-------------------- +ERROR: failed to solve: process "/bin/sh -c echo \"BUILDING Torchaudio ${TORCHAUDIO_GIT_TAG}\" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get clean && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 1 diff --git a/rocm_5.4/logs/build_rocm542_v4.log b/rocm_5.4/logs/build_rocm542_v4.log new file mode 100644 index 000000000..9605f9437 --- /dev/null +++ b/rocm_5.4/logs/build_rocm542_v4.log @@ -0,0 +1,1274 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 6.54kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/18] FROM docker.io/rocm/dev-ubuntu-22.04:5.4.2-complete +#4 DONE 0.0s + +#5 [ 6/18] WORKDIR /pytorch +#5 CACHED + +#6 [ 9/18] WORKDIR /vision +#6 CACHED + +#7 [11/18] RUN echo "Checkout Torchaudio Version: v2.0.2" && git clone --depth 1 --branch v2.0.2 https://github.com/pytorch/audio.git /audio && true +#7 CACHED + +#8 [ 3/18] RUN apt-get update -y && apt-get install -y --no-install-recommends git wget curl ffmpeg python3.10 python3-pip python3.10-dev python3.10-venv cmake ninja-build libopenblas-dev libomp-dev pkg-config rocm-dev && python3 -m pip install --upgrade pip wheel setuptools && python3 -m pip install "cmake==3.20.2" && apt-get clean && rm -rf /var/lib/apt/lists/* && true +#8 CACHED + +#9 [ 5/18] RUN echo "Checkout PyTorch Version: v2.0.1" && git clone --depth 1 --recursive --branch v2.0.1 https://github.com/pytorch/pytorch.git /pytorch && true +#9 CACHED + +#10 [ 8/18] RUN echo "Checkout Torchvision Version: v0.15.2" && git clone --depth 1 --branch v0.15.2 https://github.com/pytorch/vision.git /vision && true +#10 CACHED + +#11 [10/18] RUN echo "BUILDING TorchVision v0.15.2 *** " && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchvision-*.whl && ls /vision/dist/torchvision*.whl | head -n 1 > /opt/torchvision_wheel_name.txt && true +#11 CACHED + +#12 [ 2/18] RUN echo "MAX_JOBS=14" >> /etc/environment && echo "HSA_OVERRIDE_GFX_VERSION=8.0.3" >> /etc/environment && echo "PYTORCH_ROCM_ARCH=gfx803" >> /etc/environment && echo "ROCM_ARCH=gfx803" >> /etc/environment && echo "TORCH_BLAS_PREFER_HIPBLASLT=0" >> /etc/environment && echo "ROC_ENABLE_PRE_VEGA=1" >> /etc/environment && echo "PIP_ROOT_USER_ACTION=ignore" >> /etc/environment && echo "CMAKE_POLICY_VERSION_MINIMUM=3.18" >> /etc/environment && true +#12 CACHED + +#13 [ 7/18] RUN echo "BUILDING PYTORCH v2.0.1 for gfx803 *** " && python3 --version && mkdir -p /pytorch/dist && python3 setup.py clean && echo "Installing PyTorch build requirements from requirements.txt..." && python3 -m pip install --break-system-packages -r requirements.txt && echo "Re-pinning NumPy to 1.23.5 after PyTorch requirements install..." && python3 -m pip install --break-system-packages "numpy==1.23.5" --force-reinstall && python3 -c "import numpy; print(f'NumPy version for PyTorch build: {numpy.__version__}')" && echo "Running amd_build.py..." && python3 tools/amd_build/build_amd.py && echo "Running setup.py bdist_wheel..." && python3 setup.py bdist_wheel && echo "Installing built PyTorch wheel..." && python3 -m pip install --break-system-packages dist/torch*.whl && ls /pytorch/dist/torch*.whl | head -n 1 > /opt/pytorch_wheel_name.txt && true +#13 CACHED + +#14 [ 4/18] RUN python3 --version && pip3 --version && cmake --version +#14 CACHED + +#15 [12/18] WORKDIR /audio +#15 CACHED + +#16 [13/18] RUN echo "BUILDING Torchaudio v2.0.2" && apt-get update && apt-get install -y --no-install-recommends libsndfile1-dev libsox-dev sox && export CMAKE_PREFIX_PATH="/opt/rocm:${CMAKE_PREFIX_PATH}" && python3 setup.py bdist_wheel && python3 -m pip install --break-system-packages dist/torchaudio*.whl && ls /audio/dist/torchaudio*.whl | head -n 1 > /opt/torchaudio_wheel_name.txt && apt-get purge -y --auto-remove libsndfile1-dev libsox-dev sox && apt-get clean && rm -rf /var/lib/apt/lists/* +#16 0.225 BUILDING Torchaudio v2.0.2 +#16 0.482 Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] +#16 0.582 Get:2 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy InRelease [5415 B] +#16 0.636 Get:3 http://archive.ubuntu.com/ubuntu jammy InRelease [270 kB] +#16 0.643 Get:4 https://repo.radeon.com/rocm/apt/5.4.2 jammy InRelease [2603 B] +#16 0.755 Get:5 https://repo.radeon.com/amdgpu/5.4.2/ubuntu jammy/main amd64 Packages [9601 B] +#16 0.866 Get:6 https://repo.radeon.com/rocm/apt/5.4.2 jammy/main amd64 Packages [31.8 kB] +#16 0.934 Get:7 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [47.7 kB] +#16 1.041 Get:8 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1245 kB] +#16 1.340 Get:9 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [2901 kB] +#16 1.554 Get:10 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] +#16 1.596 Get:11 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [4282 kB] +#16 1.844 Get:12 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] +#16 2.077 Get:13 http://archive.ubuntu.com/ubuntu jammy/restricted amd64 Packages [164 kB] +#16 2.182 Get:14 http://archive.ubuntu.com/ubuntu jammy/universe amd64 Packages [17.5 MB] +#16 5.139 Get:15 http://archive.ubuntu.com/ubuntu jammy/multiverse amd64 Packages [266 kB] +#16 5.140 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 Packages [1792 kB] +#16 5.147 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [4517 kB] +#16 6.022 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [55.7 kB] +#16 6.029 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3245 kB] +#16 6.586 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1546 kB] +#16 6.882 Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [83.2 kB] +#16 6.891 Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [35.2 kB] +#16 6.945 Fetched 38.4 MB in 7s (5731 kB/s) +#16 6.945 Reading package lists... +#16 7.661 W: https://repo.radeon.com/amdgpu/5.4.2/ubuntu/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#16 7.661 W: https://repo.radeon.com/rocm/apt/5.4.2/dists/jammy/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details. +#16 7.692 Reading package lists... +#16 8.400 Building dependency tree... +#16 8.561 Reading state information... +#16 8.691 The following additional packages will be installed: +#16 8.691 libao-common libao4 libflac-dev libid3tag0 libltdl7 libmad0 libogg-dev +#16 8.692 libopencore-amrnb0 libopencore-amrwb0 libopus-dev libsox-fmt-all +#16 8.692 libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 libsox-fmt-oss +#16 8.692 libsox-fmt-pulse libsox3 libvorbis-dev libwavpack1 +#16 8.693 Suggested packages: +#16 8.693 libaudio2 libsndio6.1 +#16 8.744 The following NEW packages will be installed: +#16 8.744 libao-common libao4 libflac-dev libid3tag0 libltdl7 libmad0 libogg-dev +#16 8.744 libopencore-amrnb0 libopencore-amrwb0 libopus-dev libsndfile1-dev libsox-dev +#16 8.744 libsox-fmt-all libsox-fmt-alsa libsox-fmt-ao libsox-fmt-base libsox-fmt-mp3 +#16 8.745 libsox-fmt-oss libsox-fmt-pulse libsox3 libvorbis-dev libwavpack1 sox +#16 9.108 0 upgraded, 23 newly installed, 0 to remove and 124 not upgraded. +#16 9.108 Need to get 2628 kB of archives. +#16 9.108 After this operation, 10.7 MB of additional disk space will be used. +#16 9.108 Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libao-common all 1.2.2+20180113-1.1ubuntu3 [6568 B] +#16 9.253 Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libao4 amd64 1.2.2+20180113-1.1ubuntu3 [35.2 kB] +#16 9.433 Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 libogg-dev amd64 1.3.5-0ubuntu3 [161 kB] +#16 9.753 Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac-dev amd64 1.3.3-2ubuntu0.2 [162 kB] +#16 9.880 Get:5 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libid3tag0 amd64 0.15.1b-14 [31.3 kB] +#16 9.897 Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 libltdl7 amd64 2.4.6-15build2 [39.6 kB] +#16 9.917 Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmad0 amd64 0.15.1b-10ubuntu1 [63.1 kB] +#16 9.944 Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopencore-amrnb0 amd64 0.1.5-1 [94.8 kB] +#16 9.979 Get:9 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libopencore-amrwb0 amd64 0.1.5-1 [49.1 kB] +#16 9.995 Get:10 http://archive.ubuntu.com/ubuntu jammy/main amd64 libopus-dev amd64 1.3.1-0.1build2 [252 kB] +#16 10.07 Get:11 http://archive.ubuntu.com/ubuntu jammy/main amd64 libvorbis-dev amd64 1.3.7-1build2 [347 kB] +#16 10.55 Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsndfile1-dev amd64 1.0.31-2ubuntu0.2 [509 kB] +#16 10.57 Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox3 amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [240 kB] +#16 10.57 Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-alsa amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [11.2 kB] +#16 10.57 Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-ao amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [7740 B] +#16 10.57 Get:16 http://archive.ubuntu.com/ubuntu jammy/main amd64 libwavpack1 amd64 5.4.0-1build2 [83.7 kB] +#16 10.57 Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-base amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [33.7 kB] +#16 10.57 Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-mp3 amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [17.3 kB] +#16 10.57 Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-oss amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [9424 B] +#16 10.57 Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-pulse amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [7732 B] +#16 10.69 Get:21 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-fmt-all amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [5016 B] +#16 10.83 Get:22 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libsox-dev amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [356 kB] +#16 10.89 Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 sox amd64 14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1 [104 kB] +#16 11.02 debconf: delaying package configuration, since apt-utils is not installed +#16 11.06 Fetched 2628 kB in 2s (1217 kB/s) +#16 11.09 Selecting previously unselected package libao-common. +#16 11.09 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 32296 files and directories currently installed.) +#16 11.11 Preparing to unpack .../00-libao-common_1.2.2+20180113-1.1ubuntu3_all.deb ... +#16 11.12 Unpacking libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 11.18 Selecting previously unselected package libao4:amd64. +#16 11.18 Preparing to unpack .../01-libao4_1.2.2+20180113-1.1ubuntu3_amd64.deb ... +#16 11.20 Unpacking libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 11.25 Selecting previously unselected package libogg-dev:amd64. +#16 11.25 Preparing to unpack .../02-libogg-dev_1.3.5-0ubuntu3_amd64.deb ... +#16 11.26 Unpacking libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 11.31 Selecting previously unselected package libflac-dev:amd64. +#16 11.32 Preparing to unpack .../03-libflac-dev_1.3.3-2ubuntu0.2_amd64.deb ... +#16 11.32 Unpacking libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 11.39 Selecting previously unselected package libid3tag0:amd64. +#16 11.39 Preparing to unpack .../04-libid3tag0_0.15.1b-14_amd64.deb ... +#16 11.40 Unpacking libid3tag0:amd64 (0.15.1b-14) ... +#16 11.46 Selecting previously unselected package libltdl7:amd64. +#16 11.46 Preparing to unpack .../05-libltdl7_2.4.6-15build2_amd64.deb ... +#16 11.47 Unpacking libltdl7:amd64 (2.4.6-15build2) ... +#16 11.53 Selecting previously unselected package libmad0:amd64. +#16 11.53 Preparing to unpack .../06-libmad0_0.15.1b-10ubuntu1_amd64.deb ... +#16 11.54 Unpacking libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 11.60 Selecting previously unselected package libopencore-amrnb0:amd64. +#16 11.60 Preparing to unpack .../07-libopencore-amrnb0_0.1.5-1_amd64.deb ... +#16 11.61 Unpacking libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 11.67 Selecting previously unselected package libopencore-amrwb0:amd64. +#16 11.67 Preparing to unpack .../08-libopencore-amrwb0_0.1.5-1_amd64.deb ... +#16 11.68 Unpacking libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 11.73 Selecting previously unselected package libopus-dev:amd64. +#16 11.73 Preparing to unpack .../09-libopus-dev_1.3.1-0.1build2_amd64.deb ... +#16 11.74 Unpacking libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 11.80 Selecting previously unselected package libvorbis-dev:amd64. +#16 11.80 Preparing to unpack .../10-libvorbis-dev_1.3.7-1build2_amd64.deb ... +#16 11.81 Unpacking libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 11.87 Selecting previously unselected package libsndfile1-dev:amd64. +#16 11.87 Preparing to unpack .../11-libsndfile1-dev_1.0.31-2ubuntu0.2_amd64.deb ... +#16 11.88 Unpacking libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 11.95 Selecting previously unselected package libsox3:amd64. +#16 11.95 Preparing to unpack .../12-libsox3_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 11.96 Unpacking libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.01 Selecting previously unselected package libsox-fmt-alsa:amd64. +#16 12.02 Preparing to unpack .../13-libsox-fmt-alsa_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.02 Unpacking libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.07 Selecting previously unselected package libsox-fmt-ao:amd64. +#16 12.08 Preparing to unpack .../14-libsox-fmt-ao_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.09 Unpacking libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.15 Selecting previously unselected package libwavpack1:amd64. +#16 12.15 Preparing to unpack .../15-libwavpack1_5.4.0-1build2_amd64.deb ... +#16 12.16 Unpacking libwavpack1:amd64 (5.4.0-1build2) ... +#16 12.21 Selecting previously unselected package libsox-fmt-base:amd64. +#16 12.21 Preparing to unpack .../16-libsox-fmt-base_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.22 Unpacking libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.27 Selecting previously unselected package libsox-fmt-mp3:amd64. +#16 12.28 Preparing to unpack .../17-libsox-fmt-mp3_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.29 Unpacking libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.34 Selecting previously unselected package libsox-fmt-oss:amd64. +#16 12.34 Preparing to unpack .../18-libsox-fmt-oss_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.35 Unpacking libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.40 Selecting previously unselected package libsox-fmt-pulse:amd64. +#16 12.40 Preparing to unpack .../19-libsox-fmt-pulse_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.41 Unpacking libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.46 Selecting previously unselected package libsox-fmt-all:amd64. +#16 12.47 Preparing to unpack .../20-libsox-fmt-all_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.47 Unpacking libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.52 Selecting previously unselected package libsox-dev:amd64. +#16 12.53 Preparing to unpack .../21-libsox-dev_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.53 Unpacking libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.59 Selecting previously unselected package sox. +#16 12.60 Preparing to unpack .../22-sox_14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1_amd64.deb ... +#16 12.60 Unpacking sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 12.67 Setting up libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 12.70 Setting up libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 12.72 Setting up libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 12.75 Setting up libid3tag0:amd64 (0.15.1b-14) ... +#16 12.78 Setting up libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 12.80 Setting up libltdl7:amd64 (2.4.6-15build2) ... +#16 12.83 Setting up libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 12.85 Setting up libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 12.88 Setting up libwavpack1:amd64 (5.4.0-1build2) ... +#16 12.90 Setting up libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 12.93 Setting up libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 12.95 Setting up libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 12.98 Setting up libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.00 Setting up libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.02 Setting up libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 13.05 Setting up libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.07 Setting up libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.10 Setting up libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.12 Setting up libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.15 Setting up libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.17 Setting up sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.20 Setting up libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.22 Setting up libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 13.25 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#16 14.69 -- Git branch: HEAD +#16 14.69 -- Git SHA: 31de77dad5c89274451b3f5c4bcb630be12787c4 +#16 14.69 -- Git tag: v2.0.2 +#16 14.69 -- PyTorch dependency: torch +#16 14.69 -- Building version 2.0.2+31de77d +#16 14.69 --- Initializing submodules +#16 14.71 Submodule 'flashlight-text' (https://github.com/flashlight/text) registered for path 'third_party/flashlight-text/submodule' +#16 14.71 Submodule 'kaldi' (https://github.com/kaldi-asr/kaldi) registered for path 'third_party/kaldi/submodule' +#16 14.71 Submodule 'third_party/kenlm/submodule' (https://github.com/kpu/kenlm) registered for path 'third_party/kenlm/kenlm' +#16 14.74 Cloning into '/audio/third_party/flashlight-text/submodule'... +#16 21.71 Cloning into '/audio/third_party/kaldi/submodule'... +#16 40.01 Cloning into '/audio/third_party/kenlm/kenlm'... +#16 46.72 Submodule path 'third_party/flashlight-text/submodule': checked out '98028c7da83d66c2aba6f5f8708c063d266ca5a4' +#16 47.36 Submodule path 'third_party/kaldi/submodule': checked out '3eea37dd09b55064e6362216f7e9a60641f29f09' +#16 47.39 Submodule path 'third_party/kenlm/kenlm': checked out '5cea457db26950a73d638425c183b368c06ed7c6' +#16 47.39 --- Initialized submodule +#16 47.39 --- Fetching v1.2.12.tar.gz +#16 53.68 --- Fetching bzip2-1.0.8.tar.gz +#16 55.01 --- Fetching xz-5.2.5.tar.gz +#16 62.48 --- Fetching opencore-amr-0.1.5.tar.gz +#16 67.44 --- Fetching lame-3.99.5.tar.gz +#16 69.77 --- Fetching libogg-1.3.3.tar.gz +#16 73.19 --- Fetching flac-1.3.2.tar.xz +#16 76.71 --- Fetching libvorbis-1.3.6.tar.gz +#16 83.14 --- Fetching opus-1.3.1.tar.gz +#16 87.50 --- Fetching opusfile-0.12.tar.gz +#16 90.19 --- Fetching sox-14.4.2.tar.bz2 +#16 91.88 Excluding torchaudio.prototype from the package. +#16 91.90 /usr/local/lib/python3.10/dist-packages/setuptools/dist.py:759: SetuptoolsDeprecationWarning: License classifiers are deprecated. +#16 91.90 !! +#16 91.90 +#16 91.90 ******************************************************************************** +#16 91.90 Please consider removing the following classifiers in favor of a SPDX license expression: +#16 91.90 +#16 91.90 License :: OSI Approved :: BSD License +#16 91.90 +#16 91.90 See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. +#16 91.90 ******************************************************************************** +#16 91.90 +#16 91.90 !! +#16 91.90 self._finalize_license_expression() +#16 91.91 running bdist_wheel +#16 91.92 running build +#16 91.92 running build_py +#16 91.92 creating build/lib.linux-x86_64-cpython-310/torchaudio +#16 91.92 copying torchaudio/kaldi_io.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 91.92 copying torchaudio/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 91.92 copying torchaudio/version.py -> build/lib.linux-x86_64-cpython-310/torchaudio +#16 91.92 creating build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 91.92 copying torchaudio/io/_compat.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 91.92 copying torchaudio/io/_stream_writer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 91.92 copying torchaudio/io/_stream_reader.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 91.92 copying torchaudio/io/_playback.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 91.92 copying torchaudio/io/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/io +#16 91.92 creating build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/vctk.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/speechcommands.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/cmudict.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/cmuarctic.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/ljspeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/quesst14.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/dr_vctk.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/yesno.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/iemocap.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/commonvoice.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/librilight_limited.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/tedlium.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/librimix.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.92 copying torchaudio/datasets/voxceleb1.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/librispeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/libritts.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/gtzan.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/fluentcommands.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/musdb_hq.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 copying torchaudio/datasets/snips.py -> build/lib.linux-x86_64-cpython-310/torchaudio/datasets +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 91.93 copying torchaudio/_backend/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 91.93 copying torchaudio/_backend/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_backend +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 91.93 copying torchaudio/pipelines/rnnt_pipeline.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 91.93 copying torchaudio/pipelines/_source_separation_pipeline.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 91.93 copying torchaudio/pipelines/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 91.93 copying torchaudio/utils/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 91.93 copying torchaudio/utils/sox_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 91.93 copying torchaudio/utils/ffmpeg_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 91.93 copying torchaudio/utils/download.py -> build/lib.linux-x86_64-cpython-310/torchaudio/utils +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 91.93 copying torchaudio/sox_effects/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 91.93 copying torchaudio/sox_effects/sox_effects.py -> build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 91.93 copying torchaudio/functional/functional.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 91.93 copying torchaudio/functional/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 91.93 copying torchaudio/functional/filtering.py -> build/lib.linux-x86_64-cpython-310/torchaudio/functional +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/conformer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/conv_tasnet.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/deepspeech.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/rnnt.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/wav2letter.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/emformer.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/_hdemucs.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/tacotron2.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/wavernn.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 copying torchaudio/models/rnnt_decoder.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 91.93 copying torchaudio/_extension/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 91.93 copying torchaudio/_extension/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_extension +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 91.93 copying torchaudio/_internal/module_utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 91.93 copying torchaudio/_internal/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/_internal +#16 91.93 creating build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.93 copying torchaudio/backend/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.93 copying torchaudio/backend/common.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.93 copying torchaudio/backend/soundfile_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.93 copying torchaudio/backend/sox_io_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.93 copying torchaudio/backend/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.93 copying torchaudio/backend/no_backend.py -> build/lib.linux-x86_64-cpython-310/torchaudio/backend +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 91.94 copying torchaudio/transforms/_multi_channel.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 91.94 copying torchaudio/transforms/_transforms.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 91.94 copying torchaudio/transforms/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/transforms +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 91.94 copying torchaudio/compliance/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 91.94 copying torchaudio/compliance/kaldi.py -> build/lib.linux-x86_64-cpython-310/torchaudio/compliance +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 91.94 copying torchaudio/pipelines/_tts/interface.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 91.94 copying torchaudio/pipelines/_tts/impl.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 91.94 copying torchaudio/pipelines/_tts/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 91.94 copying torchaudio/pipelines/_tts/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 91.94 copying torchaudio/pipelines/_wav2vec2/impl.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 91.94 copying torchaudio/pipelines/_wav2vec2/utils.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 91.94 copying torchaudio/pipelines/_wav2vec2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2 +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 91.94 copying torchaudio/models/decoder/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 91.94 copying torchaudio/models/decoder/_ctc_decoder.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 91.94 copying torchaudio/models/wav2vec2/wavlm_attention.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 91.94 copying torchaudio/models/wav2vec2/model.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 91.94 copying torchaudio/models/wav2vec2/components.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 91.94 copying torchaudio/models/wav2vec2/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2 +#16 91.94 creating build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 91.94 copying torchaudio/models/wav2vec2/utils/import_fairseq.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 91.94 copying torchaudio/models/wav2vec2/utils/__init__.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 91.94 copying torchaudio/models/wav2vec2/utils/import_huggingface.py -> build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils +#16 91.94 running build_ext +#16 92.04 -- The C compiler identification is GNU 11.3.0 +#16 92.09 -- The CXX compiler identification is GNU 11.3.0 +#16 92.10 -- Detecting C compiler ABI info +#16 92.14 -- Detecting C compiler ABI info - done +#16 92.15 -- Check for working C compiler: /usr/bin/cc - skipped +#16 92.15 -- Detecting C compile features +#16 92.15 -- Detecting C compile features - done +#16 92.15 -- Detecting CXX compiler ABI info +#16 92.20 -- Detecting CXX compiler ABI info - done +#16 92.21 -- Check for working CXX compiler: /usr/bin/c++ - skipped +#16 92.21 -- Detecting CXX compile features +#16 92.21 -- Detecting CXX compile features - done +#16 92.40 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#16 92.40 HIP VERSION: 5.4.22803-474e8620 +#16 92.40 +#16 92.40 ***** ROCm version from /opt/rocm/.info/version-dev **** +#16 92.40 +#16 92.40 ROCM_VERSION_DEV: 5.4.2 +#16 92.40 ROCM_VERSION_DEV_MAJOR: 5 +#16 92.40 ROCM_VERSION_DEV_MINOR: 4 +#16 92.40 ROCM_VERSION_DEV_PATCH: 2 +#16 92.40 +#16 92.40 ***** Library versions from dpkg ***** +#16 92.40 +#16 92.40 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#16 92.40 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#16 92.41 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#16 92.42 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#16 92.42 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#16 92.44 +#16 92.44 ***** Library versions from cmake find_package ***** +#16 92.44 +#16 92.45 -- Looking for pthread.h +#16 92.49 -- Looking for pthread.h - found +#16 92.49 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +#16 92.54 -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +#16 92.54 -- Found Threads: TRUE +#16 92.54 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.54 hip VERSION: 5.4.22505 +#16 92.54 hsa-runtime64 VERSION: 1.7.50402 +#16 92.54 amd_comgr VERSION: 2.4.0 +#16 92.55 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.55 rocrand VERSION: 2.10.9 +#16 92.55 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.55 hiprand VERSION: 2.10.9 +#16 92.56 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.56 rocblas VERSION: 2.46.0 +#16 92.56 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.56 miopen VERSION: 2.19.0 +#16 92.57 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.57 rocfft VERSION: 1.0.20 +#16 92.58 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.58 hipfft VERSION: 1.0.10 +#16 92.58 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.58 hipsparse VERSION: 2.3.3 +#16 92.59 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.59 rccl VERSION: 2.13.4 +#16 92.60 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.60 rocprim VERSION: 2.10.9 +#16 92.60 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.60 hipcub VERSION: 2.10.12 +#16 92.61 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.61 rocthrust VERSION: 2.10.9 +#16 92.61 HIP library name: amdhip64 +#16 92.61 Building PyTorch for GPU arch: gfx803 +#16 92.62 -- Found HIP: /opt/rocm-5.4.2/hip (found suitable version "5.4.22803-474e8620", minimum required is "1.0") +#16 92.62 HIP VERSION: 5.4.22803-474e8620 +#16 92.67 -- Caffe2: Header version is: 5.4.2 +#16 92.67 +#16 92.67 ***** ROCm version from rocm_version.h **** +#16 92.67 +#16 92.67 ROCM_VERSION_DEV: 5.4.2 +#16 92.67 ROCM_VERSION_DEV_MAJOR: 5 +#16 92.67 ROCM_VERSION_DEV_MINOR: 4 +#16 92.67 ROCM_VERSION_DEV_PATCH: 2 +#16 92.67 ROCM_VERSION_DEV_INT: 50402 +#16 92.67 HIP_VERSION_MAJOR: 5 +#16 92.67 HIP_VERSION_MINOR: 4 +#16 92.67 TORCH_HIP_VERSION: 504 +#16 92.67 +#16 92.67 ***** Library versions from dpkg ***** +#16 92.67 +#16 92.68 rocm-dev VERSION: 5.4.2.50402-104~22.04 +#16 92.68 rocm-device-libs VERSION: 1.0.0.50402-104~22.04 +#16 92.69 rocm-libs VERSION: 5.4.2.50402-104~22.04 +#16 92.69 hsakmt-roct-dev VERSION: 20221020.0.2.50402-104~22.04 +#16 92.70 hsa-rocr-dev VERSION: 1.7.0.50402-104~22.04 +#16 92.72 +#16 92.72 ***** Library versions from cmake find_package ***** +#16 92.72 +#16 92.73 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.73 hip VERSION: 5.4.22505 +#16 92.73 hsa-runtime64 VERSION: 1.7.50402 +#16 92.73 amd_comgr VERSION: 2.4.0 +#16 92.73 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.73 rocrand VERSION: 2.10.9 +#16 92.74 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.74 hiprand VERSION: 2.10.9 +#16 92.74 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.74 rocblas VERSION: 2.46.0 +#16 92.75 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.75 miopen VERSION: 2.19.0 +#16 92.75 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.76 hipfft VERSION: 1.0.10 +#16 92.76 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.76 hipsparse VERSION: 2.3.3 +#16 92.77 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.77 rccl VERSION: 2.13.4 +#16 92.77 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.77 rocprim VERSION: 2.10.9 +#16 92.78 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.78 hipcub VERSION: 2.10.12 +#16 92.78 -- hip::amdhip64 is SHARED_LIBRARY +#16 92.79 rocthrust VERSION: 2.10.9 +#16 92.79 HIP library name: amdhip64 +#16 92.81 CMake Warning at /usr/local/lib/python3.10/dist-packages/torch/share/cmake/Torch/TorchConfig.cmake:22 (message): +#16 92.81 static library kineto_LIBRARY-NOTFOUND not found. +#16 92.81 Call Stack (most recent call first): +#16 92.81 /usr/local/lib/python3.10/dist-packages/torch/share/cmake/Torch/TorchConfig.cmake:127 (append_torchlib_if_found) +#16 92.81 cmake/TorchAudioHelper.cmake:1 (find_package) +#16 92.81 CMakeLists.txt:85 (include) +#16 92.81 +#16 92.81 +#16 92.81 -- Found Torch: /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch.so +#16 92.96 -- Found OpenMP_C: -fopenmp (found version "4.5") +#16 93.01 -- Found OpenMP_CXX: -fopenmp (found version "4.5") +#16 93.02 -- Found OpenMP: TRUE (found version "4.5") +#16 93.02 -- Could not find ccache. Consider installing ccache to speed up compilation. +#16 93.02 -- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.2") +#16 93.20 Updated 0 paths from the index +#16 93.36 -- Configuring done +#16 93.41 -- Generating done +#16 93.42 -- Build files have been written to: /audio/build/temp.linux-x86_64-cpython-310 +#16 93.48 [1/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-mkdir +#16 93.48 [2/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/zlib/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--mkdir +#16 93.49 [3/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/lzma/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--mkdir +#16 93.49 [4/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-mkdir +#16 93.49 [5/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-mkdir +#16 93.49 [6/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2 && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2 && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/bzip2/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--mkdir +#16 93.56 [7/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--download +#16 93.57 [8/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-download +#16 93.57 [9/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-download +#16 93.58 [10/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-update +#16 93.59 [11/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2 && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--update +#16 93.59 [12/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-update +#16 93.60 [13/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--download +#16 93.60 [14/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--download +#16 93.60 [15/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2 && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--patch +#16 93.61 [16/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-patch +#16 93.61 [17/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-patch +#16 93.61 [18/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--update +#16 93.61 [19/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--update +#16 93.62 [20/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-download +#16 93.62 [21/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--configure +#16 93.62 [22/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--patch +#16 93.62 [23/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma- && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma-/build-aux/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--patch +#16 93.63 [24/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-update +#16 93.63 [25/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-patch +#16 94.11 [26/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--configure +#16 94.16 [27/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-error.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-error.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-error.cc.o -c ../../third_party/kaldi/submodule/src/base/kaldi-error.cc +#16 94.20 [28/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-math.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-math.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-math.cc.o -c ../../third_party/kaldi/submodule/src/base/kaldi-math.cc +#16 95.61 [29/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--build +#16 95.71 [30/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--install +#16 95.75 [31/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/CMakeFiles/zlib--complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/zlib/src/zlib--stamp/zlib--done +#16 98.24 [32/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--build +#16 98.38 [33/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2- && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--install +#16 98.42 [34/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2 && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/CMakeFiles/bzip2--complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/bzip2/src/bzip2--stamp/bzip2--done +#16 101.9 [35/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-configure +#16 104.9 [36/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-configure +#16 105.1 [37/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-build +#16 105.4 [38/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-install +#16 105.4 [39/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/ogg-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/ogg-stamp/ogg-done +#16 105.5 [40/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-mkdir +#16 105.6 [41/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-download +#16 105.6 [42/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-update +#16 105.6 [43/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-patch +#16 108.1 [44/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-configure +#16 110.8 [45/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--configure +#16 110.8 [46/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-mkdir +#16 110.9 [47/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-download +#16 111.0 [48/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-update +#16 111.0 [49/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-patch +#16 113.4 [50/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o -c ../../torchaudio/csrc/utils.cpp +#16 113.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 113.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 113.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 113.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 113.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 113.5 [51/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-mkdir +#16 113.6 [52/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o -c ../../torchaudio/csrc/rnnt/cpu/compute_alphas.cpp +#16 113.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 113.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 113.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 113.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 113.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 113.6 [53/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-download +#16 113.6 [54/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-update +#16 113.6 [55/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-patch +#16 114.2 [56/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-configure +#16 114.7 [57/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-build +#16 114.8 [58/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-matrix.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-matrix.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-matrix.cc.o -c ../../third_party/kaldi/src/matrix/kaldi-matrix.cc +#16 114.9 [59/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-vector.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-vector.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-vector.cc.o -c ../../third_party/kaldi/src/matrix/kaldi-vector.cc +#16 115.1 [60/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/resample.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/resample.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/resample.cc.o -c ../../third_party/kaldi/submodule/src/feat/resample.cc +#16 115.3 [61/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-install +#16 115.3 [62/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/lame-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/lame-stamp/lame-done +#16 116.0 [63/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o -c ../../torchaudio/csrc/overdrive.cpp +#16 116.0 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 116.0 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 116.0 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 116.0 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 116.0 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 116.1 [64/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/feature-functions.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/feature-functions.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/feature-functions.cc.o -c ../../third_party/kaldi/submodule/src/feat/feature-functions.cc +#16 116.6 [65/178] /usr/bin/c++ -DNDEBUG -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -I/usr/local/lib/python3.10/dist-packages/torch/include -I/usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++17 -MD -MT third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/pitch-functions.cc.o -MF third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/pitch-functions.cc.o.d -o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/pitch-functions.cc.o -c ../../third_party/kaldi/submodule/src/feat/pitch-functions.cc +#16 116.6 ../../third_party/kaldi/submodule/src/feat/pitch-functions.cc: In member function ‘void kaldi::OnlinePitchFeatureImpl::UpdateRemainder(const kaldi::VectorBase&)’: +#16 116.6 ../../third_party/kaldi/submodule/src/feat/pitch-functions.cc:814:11: warning: unused variable ‘full_frame_length’ [-Wunused-variable] +#16 116.6 814 | int32 full_frame_length = opts_.NccfWindowSize() + nccf_last_lag_; +#16 116.6 | ^~~~~~~~~~~~~~~~~ +#16 116.6 ../../third_party/kaldi/submodule/src/feat/pitch-functions.cc: In member function ‘void kaldi::OnlineProcessPitch::UpdateNormalizationStats(kaldi::int32)’: +#16 116.6 ../../third_party/kaldi/submodule/src/feat/pitch-functions.cc:1504:35: warning: comparison of integer expressions of different signedness: ‘std::vector::size_type’ {aka ‘long unsigned int’} and ‘kaldi::int32’ {aka ‘int’} [-Wsign-compare] +#16 116.6 1504 | if (normalization_stats_.size() <= frame) +#16 116.6 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~ +#16 116.7 [66/178] : && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E rm -f third_party/kaldi/libkaldi.a && /usr/bin/ar qc third_party/kaldi/libkaldi.a third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-vector.cc.o third_party/kaldi/CMakeFiles/kaldi.dir/src/matrix/kaldi-matrix.cc.o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-error.cc.o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/base/kaldi-math.cc.o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/feature-functions.cc.o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/pitch-functions.cc.o third_party/kaldi/CMakeFiles/kaldi.dir/submodule/src/feat/resample.cc.o && /usr/bin/ranlib third_party/kaldi/libkaldi.a && : +#16 119.3 [67/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -D_torchaudio_EXPORTS -I../../ -I/usr/include/python3.10 -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -c ../../torchaudio/csrc/pybind/pybind.cpp +#16 119.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 119.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 119.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 119.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 119.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 120.0 [68/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-configure +#16 121.1 [69/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o -c ../../torchaudio/csrc/lfilter.cpp +#16 121.1 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 121.1 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 121.1 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 121.1 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 121.1 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 125.7 [70/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-build +#16 126.2 [71/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-install +#16 126.3 [72/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/vorbis-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/vorbis-stamp/vorbis-done +#16 126.6 [73/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-configure +#16 128.4 [74/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o -c ../../torchaudio/csrc/rnnt/compute_alphas.cpp +#16 128.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 128.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 128.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 128.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 128.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 128.6 [75/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o -c ../../torchaudio/csrc/rnnt/compute_betas.cpp +#16 128.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 128.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 128.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 128.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 128.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 129.0 [76/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--build +#16 129.4 [77/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o -c ../../torchaudio/csrc/rnnt/cpu/compute_betas.cpp +#16 129.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 129.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 129.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 129.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 129.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 129.4 [78/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--install +#16 129.5 [79/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/CMakeFiles/lzma--complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/lzma/src/lzma--stamp/lzma--done +#16 129.5 [80/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/diy-fp.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/diy-fp.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/diy-fp.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/diy-fp.cc +#16 129.5 [81/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o -c ../../torchaudio/csrc/rnnt/compute.cpp +#16 129.5 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 129.5 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 129.5 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 129.5 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 129.5 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 129.6 [82/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/cached-powers.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/cached-powers.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/cached-powers.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/cached-powers.cc +#16 129.7 [83/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum-dtoa.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum-dtoa.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum-dtoa.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/bignum-dtoa.cc +#16 129.7 [84/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fast-dtoa.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fast-dtoa.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fast-dtoa.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/fast-dtoa.cc +#16 129.8 [85/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fixed-dtoa.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fixed-dtoa.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fixed-dtoa.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/fixed-dtoa.cc +#16 129.8 [86/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/strtod.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/strtod.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/strtod.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/strtod.cc +#16 129.8 [87/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/bit_packing.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/bit_packing.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/bit_packing.cc.o -c ../../third_party/kenlm/kenlm/util/bit_packing.cc +#16 129.9 [88/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/bignum.cc +#16 130.0 [89/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/float_to_string.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/float_to_string.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/float_to_string.cc.o -c ../../third_party/kenlm/kenlm/util/float_to_string.cc +#16 130.1 [90/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/ersatz_progress.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/ersatz_progress.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/ersatz_progress.cc.o -c ../../third_party/kenlm/kenlm/util/ersatz_progress.cc +#16 130.1 [91/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/double-conversion.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/double-conversion.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/double-conversion.cc.o -c ../../third_party/kenlm/kenlm/util/double-conversion/double-conversion.cc +#16 130.2 [92/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/exception.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/exception.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/exception.cc.o -c ../../third_party/kenlm/kenlm/util/exception.cc +#16 130.2 [93/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/murmur_hash.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/murmur_hash.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/murmur_hash.cc.o -c ../../third_party/kenlm/kenlm/util/murmur_hash.cc +#16 130.4 [94/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/integer_to_string.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/integer_to_string.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/integer_to_string.cc.o -c ../../third_party/kenlm/kenlm/util/integer_to_string.cc +#16 130.5 [95/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/spaces.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/spaces.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/spaces.cc.o -c ../../third_party/kenlm/kenlm/util/spaces.cc +#16 130.6 [96/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/scoped.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/scoped.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/scoped.cc.o -c ../../third_party/kenlm/kenlm/util/scoped.cc +#16 130.6 [97/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/pool.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/pool.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/pool.cc.o -c ../../third_party/kenlm/kenlm/util/pool.cc +#16 130.6 [98/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o -c ../../torchaudio/csrc/rnnt/autograd.cpp +#16 130.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 130.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 130.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 130.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 130.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 130.6 [99/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file_piece.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file_piece.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file_piece.cc.o -c ../../third_party/kenlm/kenlm/util/file_piece.cc +#16 130.6 [100/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/mmap.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/mmap.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/mmap.cc.o -c ../../third_party/kenlm/kenlm/util/mmap.cc +#16 130.8 [101/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file.cc.o -c ../../third_party/kenlm/kenlm/util/file.cc +#16 131.0 [102/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/string_piece.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/string_piece.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/string_piece.cc.o -c ../../third_party/kenlm/kenlm/util/string_piece.cc +#16 131.0 [103/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/read_compressed.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/read_compressed.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/read_compressed.cc.o -c ../../third_party/kenlm/kenlm/util/read_compressed.cc +#16 131.0 [104/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/lm_exception.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/lm_exception.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/lm_exception.cc.o -c ../../third_party/kenlm/kenlm/lm/lm_exception.cc +#16 131.1 [105/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/bhiksha.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/bhiksha.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/bhiksha.cc.o -c ../../third_party/kenlm/kenlm/lm/bhiksha.cc +#16 131.1 [106/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/config.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/config.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/config.cc.o -c ../../third_party/kenlm/kenlm/lm/config.cc +#16 131.4 [107/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o -c ../../torchaudio/csrc/rnnt/cpu/compute.cpp +#16 131.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 131.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 131.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 131.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 131.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 131.4 [108/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/binary_format.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/binary_format.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/binary_format.cc.o -c ../../third_party/kenlm/kenlm/lm/binary_format.cc +#16 131.4 ../../third_party/kenlm/kenlm/lm/binary_format.cc: In member function ‘void lm::ngram::BinaryFormat::FinishFile(const lm::ngram::Config&, lm::ngram::ModelType, unsigned int, const std::vector&)’: +#16 131.4 ../../third_party/kenlm/kenlm/lm/binary_format.cc:261:9: warning: ‘void* memset(void*, int, size_t)’ clearing an object of type ‘struct lm::ngram::Parameters’ with no trivial copy-assignment; use assignment or value-initialization instead [-Wclass-memaccess] +#16 131.4 261 | memset(¶ms, 0, sizeof(Parameters)); +#16 131.4 | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 131.4 In file included from ../../third_party/kenlm/kenlm/lm/binary_format.cc:1: +#16 131.4 ../../third_party/kenlm/kenlm/lm/binary_format.hh:42:8: note: ‘struct lm::ngram::Parameters’ declared here +#16 131.4 42 | struct Parameters { +#16 131.4 | ^~~~~~~~~~ +#16 131.5 [109/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/quantize.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/quantize.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/quantize.cc.o -c ../../third_party/kenlm/kenlm/lm/quantize.cc +#16 131.7 [110/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie.cc.o -c ../../third_party/kenlm/kenlm/lm/trie.cc +#16 131.9 [111/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/read_arpa.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/read_arpa.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/read_arpa.cc.o -c ../../third_party/kenlm/kenlm/lm/read_arpa.cc +#16 131.9 [112/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/virtual_interface.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/virtual_interface.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/virtual_interface.cc.o -c ../../third_party/kenlm/kenlm/lm/virtual_interface.cc +#16 131.9 [113/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Utils.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Utils.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Utils.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.cpp +#16 132.4 [114/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/value_build.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/value_build.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/value_build.cc.o -c ../../third_party/kenlm/kenlm/lm/value_build.cc +#16 133.0 [115/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/vocab.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/vocab.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/vocab.cc.o -c ../../third_party/kenlm/kenlm/lm/vocab.cc +#16 133.1 [116/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ZeroLM.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ZeroLM.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ZeroLM.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ZeroLM.cpp +#16 133.1 [117/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/model.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/model.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/model.cc.o -c ../../third_party/kenlm/kenlm/lm/model.cc +#16 133.3 [118/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp +#16 133.3 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp: In constructor ‘fl::lib::text::KenLM::KenLM(const string&, const fl::lib::text::Dictionary&)’: +#16 133.3 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp:37:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 133.3 37 | for (int i = 0; i < usrTknDict.indexSize(); i++) { +#16 133.3 | ~~^~~~~~~~~~~~~~~~~~~~~~~~ +#16 133.3 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp: In member function ‘virtual std::pair, float> fl::lib::text::KenLM::score(const LMStatePtr&, int)’: +#16 133.3 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp:58:38: warning: comparison of integer expressions of different signedness: ‘const int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 133.3 58 | if (usrTokenIdx < 0 || usrTokenIdx >= usrToLmIdxMap_.size()) { +#16 133.3 | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ +#16 133.7 [119/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_hashed.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_hashed.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_hashed.cc.o -c ../../third_party/kenlm/kenlm/lm/search_hashed.cc +#16 133.8 [120/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie_sort.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie_sort.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie_sort.cc.o -c ../../third_party/kenlm/kenlm/lm/trie_sort.cc +#16 134.8 [121/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Trie.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Trie.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Trie.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Trie.cpp +#16 134.8 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Trie.cpp: In member function ‘fl::lib::text::TrieNodePtr fl::lib::text::Trie::insert(const std::vector&, int, float)’: +#16 134.8 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Trie.cpp:29:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 134.8 29 | for (int i = 0; i < indices.size(); i++) { +#16 134.8 | ~~^~~~~~~~~~~~~~~~ +#16 134.9 [122/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp: In constructor ‘fl::lib::text::ConvLM::ConvLM(const GetConvLmScoreFunc&, const string&, const fl::lib::text::Dictionary&, int, int, int)’: +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp:45:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 134.9 45 | for (int i = 0; i < usrTknDict.indexSize(); i++) { +#16 134.9 | ~~^~~~~~~~~~~~~~~~~~~~~~~~ +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp: In member function ‘std::pair, float> fl::lib::text::ConvLM::scoreWithLmIdx(const LMStatePtr&, int)’: +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp:112:30: warning: comparison of integer expressions of different signedness: ‘std::unordered_map::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 134.9 112 | if (cacheIndices_.size() == beamSize_) { +#16 134.9 | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~ +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp: In member function ‘virtual std::pair, float> fl::lib::text::ConvLM::score(const LMStatePtr&, int)’: +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp:133:38: warning: comparison of integer expressions of different signedness: ‘const int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 134.9 133 | if (usrTokenIdx < 0 || usrTokenIdx >= usrToLmIdxMap_.size()) { +#16 134.9 | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp: In member function ‘virtual void fl::lib::text::ConvLM::updateCache(std::vector >)’: +#16 134.9 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp:223:28: warning: comparison of integer expressions of different signedness: ‘std::vector::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 134.9 223 | if (batchedProb.size() != vocabSize_ * nBatchStates) { +#16 134.9 | ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 135.0 [123/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp: In member function ‘virtual void fl::lib::text::LexiconFreeDecoder::decodeStep(const float*, int, int)’: +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp:33:19: warning: comparison of integer expressions of different signedness: ‘std::unordered_map >::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 135.0 33 | if (hyp_.size() < startFrame + T + 2) { +#16 135.0 | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +#16 135.0 In file included from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Decoder.h:10, +#16 135.0 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.h:12, +#16 135.0 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp:14: +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h: In instantiation of ‘void fl::lib::text::candidatesStore(std::vector&, std::vector&, std::vector&, int, double, bool, bool) [with DecoderState = fl::lib::text::LexiconFreeDecoderState]’: +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp:114:20: required from here +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:96:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.0 96 | for (int i = 1; i < candidatePtrs.size(); i++) { +#16 135.0 | ~~^~~~~~~~~~~~~~~~~~~~~~ +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h: In instantiation of ‘void fl::lib::text::pruneAndNormalize(std::unordered_map >&, int, int) [with DecoderState = fl::lib::text::LexiconFreeDecoderState]’: +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp:201:20: required from here +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:237:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::unordered_map >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.0 237 | for (int i = 0; i < hypothesis.size(); i++) { +#16 135.0 | ~~^~~~~~~~~~~~~~~~~~~ +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:252:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.0 252 | for (int i = 1; i < hypothesis[lookBack].size(); i++) { +#16 135.0 | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 135.0 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:258:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.0 258 | for (int i = 0; i < hypothesis[lookBack].size(); i++) { +#16 135.0 | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 135.2 [124/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp: In member function ‘virtual void fl::lib::text::LexiconDecoder::decodeStep(const float*, int, int)’: +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp:35:19: warning: comparison of integer expressions of different signedness: ‘std::unordered_map >::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 135.2 35 | if (hyp_.size() < startFrame + T + 2) { +#16 135.2 | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +#16 135.2 In file included from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Decoder.h:10, +#16 135.2 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.h:12, +#16 135.2 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp:15: +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h: In instantiation of ‘void fl::lib::text::candidatesStore(std::vector&, std::vector&, std::vector&, int, double, bool, bool) [with DecoderState = fl::lib::text::LexiconDecoderState]’: +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp:217:20: required from here +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:96:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.2 96 | for (int i = 1; i < candidatePtrs.size(); i++) { +#16 135.2 | ~~^~~~~~~~~~~~~~~~~~~~~~ +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h: In instantiation of ‘void fl::lib::text::pruneAndNormalize(std::unordered_map >&, int, int) [with DecoderState = fl::lib::text::LexiconDecoderState]’: +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp:322:20: required from here +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:237:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::unordered_map >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.2 237 | for (int i = 0; i < hypothesis.size(); i++) { +#16 135.2 | ~~^~~~~~~~~~~~~~~~~~~ +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:252:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.2 252 | for (int i = 1; i < hypothesis[lookBack].size(); i++) { +#16 135.2 | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 135.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:258:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.2 258 | for (int i = 0; i < hypothesis[lookBack].size(); i++) { +#16 135.2 | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 135.5 [125/178] /usr/bin/c++ -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -I../../third_party/kenlm -I../../third_party/zlib/../install/include -I../../third_party/bzip2/../install/include -I../../third_party/lzma/../install/include -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=hidden -std=gnu++14 -MD -MT third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_trie.cc.o -MF third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_trie.cc.o.d -o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_trie.cc.o -c ../../third_party/kenlm/kenlm/lm/search_trie.cc +#16 135.5 [126/178] : && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E rm -f third_party/kenlm/libkenlm.a && /usr/bin/ar qc third_party/kenlm/libkenlm.a third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/bit_packing.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/bignum-dtoa.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/cached-powers.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/diy-fp.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/double-conversion.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fast-dtoa.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/fixed-dtoa.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/double-conversion/strtod.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/ersatz_progress.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/exception.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/file_piece.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/float_to_string.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/integer_to_string.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/mmap.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/murmur_hash.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/pool.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/read_compressed.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/scoped.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/spaces.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/util/string_piece.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/bhiksha.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/binary_format.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/config.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/lm_exception.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/model.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/quantize.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/read_arpa.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_hashed.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/search_trie.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/trie_sort.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/value_build.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/virtual_interface.cc.o third_party/kenlm/CMakeFiles/kenlm.dir/kenlm/lm/vocab.cc.o && /usr/bin/ranlib third_party/kenlm/libkenlm.a && : +#16 135.6 [127/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/String.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/String.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/String.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/String.cpp +#16 135.7 [128/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp: In member function ‘virtual void fl::lib::text::LexiconFreeSeq2SeqDecoder::decodeStep(const float*, int, int)’: +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:25:19: warning: comparison of integer expressions of different signedness: ‘std::unordered_map >::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 135.7 25 | if (hyp_.size() < maxOutputLength_ + 2) { +#16 135.7 | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:64:44: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.7 64 | for (int hypo = 0, validHypo = 0; hypo < hyp_[t].size(); hypo++) { +#16 135.7 | ~~~~~^~~~~~~~~~~~~~~~ +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:89:38: warning: comparison of integer expressions of different signedness: ‘std::vector::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 135.7 89 | if (amScores[validHypo].size() > opt_.beamSizeToken) { +#16 135.7 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:100:14: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const long unsigned int’ [-Wsign-compare] +#16 135.7 100 | r < std::min(amScores[validHypo].size(), (size_t)opt_.beamSizeToken); +#16 135.7 | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:153:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.7 153 | for (int i = 0; i < hyp_[t].size(); i++) { +#16 135.7 | ~~^~~~~~~~~~~~~~~~ +#16 135.7 In file included from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Decoder.h:10, +#16 135.7 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.h:13, +#16 135.7 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:14: +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h: In instantiation of ‘void fl::lib::text::candidatesStore(std::vector&, std::vector&, std::vector&, int, double, bool, bool) [with DecoderState = fl::lib::text::LexiconFreeSeq2SeqDecoderState]’: +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp:138:20: required from here +#16 135.7 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:96:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 135.7 96 | for (int i = 1; i < candidatePtrs.size(); i++) { +#16 135.7 | ~~^~~~~~~~~~~~~~~~~~~~~~ +#16 136.1 [129/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Dictionary.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Dictionary.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Dictionary.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/dictionary/Dictionary.cpp +#16 136.2 [130/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp: In member function ‘virtual void fl::lib::text::LexiconSeq2SeqDecoder::decodeStep(const float*, int, int)’: +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:24:19: warning: comparison of integer expressions of different signedness: ‘std::unordered_map >::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 136.2 24 | if (hyp_.size() < maxOutputLength_ + 2) { +#16 136.2 | ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~ +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:64:44: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 136.2 64 | for (int hypo = 0, validHypo = 0; hypo < hyp_[t].size(); hypo++) { +#16 136.2 | ~~~~~^~~~~~~~~~~~~~~~ +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:95:38: warning: comparison of integer expressions of different signedness: ‘std::vector::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare] +#16 136.2 95 | if (amScores[validHypo].size() > opt_.beamSizeToken) { +#16 136.2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~ +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:106:14: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const long unsigned int’ [-Wsign-compare] +#16 136.2 106 | r < std::min(amScores[validHypo].size(), (size_t)opt_.beamSizeToken); +#16 136.2 | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:214:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 136.2 214 | for (int i = 0; i < hyp_[t].size(); i++) { +#16 136.2 | ~~^~~~~~~~~~~~~~~~ +#16 136.2 In file included from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Decoder.h:10, +#16 136.2 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.h:13, +#16 136.2 from ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:16: +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h: In instantiation of ‘void fl::lib::text::candidatesStore(std::vector&, std::vector&, std::vector&, int, double, bool, bool) [with DecoderState = fl::lib::text::LexiconSeq2SeqDecoderState]’: +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp:199:20: required from here +#16 136.2 ../../third_party/flashlight-text/submodule/flashlight/lib/text/decoder/Utils.h:96:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 136.2 96 | for (int i = 1; i < candidatePtrs.size(); i++) { +#16 136.2 | ~~^~~~~~~~~~~~~~~~~~~~~~ +#16 136.3 [131/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DHAVE_BZLIB -DHAVE_XZLIB -DHAVE_ZLIB -DKENLM_MAX_ORDER=6 -DNDEBUG -Dlibflashlight_text_EXPORTS -I../../ -I../../third_party/flashlight-text/submodule -I../../third_party/kenlm -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Utils.cpp.o -MF third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Utils.cpp.o.d -o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Utils.cpp.o -c ../../third_party/flashlight-text/submodule/flashlight/lib/text/dictionary/Utils.cpp +#16 136.3 ../../third_party/flashlight-text/submodule/flashlight/lib/text/dictionary/Utils.cpp: In function ‘fl::lib::text::LexiconMap fl::lib::text::loadWords(const string&, int)’: +#16 136.3 ../../third_party/flashlight-text/submodule/flashlight/lib/text/dictionary/Utils.cpp:40:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::unordered_map, std::vector > > >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] +#16 136.3 40 | while (maxWords != lexicon.size() && std::getline(infile, line)) { +#16 136.3 | ~~~~~~~~~^~~~~~~~~~~~~~~~~ +#16 136.5 [132/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,libflashlight-text.so -o third_party/flashlight-text/libflashlight-text.so third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Utils.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/KenLM.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ZeroLM.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/lm/ConvLM.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconDecoder.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeDecoder.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconFreeSeq2SeqDecoder.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/LexiconSeq2SeqDecoder.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/decoder/Trie.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/String.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Utils.cpp.o third_party/flashlight-text/CMakeFiles/libflashlight-text.dir/submodule/flashlight/lib/text/dictionary/Dictionary.cpp.o third_party/kenlm/libkenlm.a ../../third_party/zlib/../install/lib/libz.a ../../third_party/bzip2/../install/lib/libbz2.a ../../third_party/lzma/../install/lib/liblzma.a && : +#16 138.1 [133/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o -c ../../torchaudio/csrc/rir.cpp +#16 138.1 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 138.1 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 138.1 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 138.1 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 138.1 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 138.8 [134/178] /usr/bin/c++ -DNDEBUG -Dflashlight_lib_text_dictionary_EXPORTS -I../../ -I/usr/include/python3.10 -I/usr/local/lib/python3.10/dist-packages/torch/include -I../../third_party/flashlight-text/submodule -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/flashlight_lib_text_dictionary.dir/submodule/bindings/python/flashlight/lib/text/_dictionary.cpp.o -MF third_party/flashlight-text/CMakeFiles/flashlight_lib_text_dictionary.dir/submodule/bindings/python/flashlight/lib/text/_dictionary.cpp.o.d -o third_party/flashlight-text/CMakeFiles/flashlight_lib_text_dictionary.dir/submodule/bindings/python/flashlight/lib/text/_dictionary.cpp.o -c ../../third_party/flashlight-text/submodule/bindings/python/flashlight/lib/text/_dictionary.cpp +#16 138.9 [135/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,flashlight_lib_text_dictionary.so -o third_party/flashlight-text/flashlight_lib_text_dictionary.so third_party/flashlight-text/CMakeFiles/flashlight_lib_text_dictionary.dir/submodule/bindings/python/flashlight/lib/text/_dictionary.cpp.o -Wl,-rpath,/audio/build/temp.linux-x86_64-cpython-310/third_party/flashlight-text:/usr/local/lib/python3.10/dist-packages/torch/lib: third_party/flashlight-text/libflashlight-text.so /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_python.so && : +#16 139.6 [136/178] /usr/bin/c++ -DINCLUDE_KALDI -DINCLUDE_RIR -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_EXPORTS -I../../ -I../../third_party/kaldi/src -I../../third_party/kaldi/submodule/src -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -fopenmp -std=gnu++17 -MD -MT torchaudio/csrc/CMakeFiles/libtorchaudio.dir/kaldi.cpp.o -MF torchaudio/csrc/CMakeFiles/libtorchaudio.dir/kaldi.cpp.o.d -o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/kaldi.cpp.o -c ../../torchaudio/csrc/kaldi.cpp +#16 139.6 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 139.6 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 139.6 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 139.6 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 139.6 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 139.9 [137/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio.so -o torchaudio/csrc/libtorchaudio.so torchaudio/csrc/CMakeFiles/libtorchaudio.dir/lfilter.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/overdrive.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/utils.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_alphas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute_betas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/cpu/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_alphas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute_betas.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/compute.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rnnt/autograd.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/rir.cpp.o torchaudio/csrc/CMakeFiles/libtorchaudio.dir/kaldi.cpp.o -Wl,-rpath,/usr/local/lib/python3.10/dist-packages/torch/lib:/opt/rocm/hip/lib:/opt/rocm-5.4.2/lib:/opt/rocm/roctracer/lib: /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch.so third_party/kaldi/libkaldi.a -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_hip.so" -Wl,--as-needed /usr/local/lib/python3.10/dist-packages/torch/lib/libc10_hip.so /usr/local/lib/python3.10/dist-packages/torch/lib/libc10.so /opt/rocm/hip/lib/libamdhip64.so /opt/rocm-5.4.2/lib/libMIOpen.so.1.0.50402 /usr/lib/x86_64-linux-gnu/librt.a /opt/rocm/roctracer/lib/libroctx64.so /opt/rocm-5.4.2/lib/librocblas.so.0.1.50402 /opt/rocm/hip/lib/libamdhip64.so.5.4.50402 /opt/rocm/llvm/lib/clang/15.0.0/lib/linux/libclang_rt.builtins-x86_64.a /opt/rocm-5.4.2/lib/libhipfft.so /opt/rocm-5.4.2/lib/libhiprand.so.1.1.50402 /opt/rocm-5.4.2/lib/libhipsparse.so.0.1.50402 /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.a -Wl,-rpath-link,/opt/rocm-5.4.2/lib && : +#16 140.2 [138/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio.so -o torchaudio/csrc/_torchaudio.so torchaudio/csrc/CMakeFiles/_torchaudio.dir/pybind/pybind.cpp.o -Wl,-rpath,/audio/build/temp.linux-x86_64-cpython-310/torchaudio/csrc:/usr/local/lib/python3.10/dist-packages/torch/lib:/opt/rocm/hip/lib:/opt/rocm-5.4.2/lib:/opt/rocm/roctracer/lib: torchaudio/csrc/libtorchaudio.so /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_python.so /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_hip.so" -Wl,--as-needed /usr/local/lib/python3.10/dist-packages/torch/lib/libc10_hip.so /usr/local/lib/python3.10/dist-packages/torch/lib/libc10.so /opt/rocm/hip/lib/libamdhip64.so /opt/rocm-5.4.2/lib/libMIOpen.so.1.0.50402 /usr/lib/x86_64-linux-gnu/librt.a /opt/rocm/roctracer/lib/libroctx64.so /opt/rocm-5.4.2/lib/librocblas.so.0.1.50402 /opt/rocm/hip/lib/libamdhip64.so.5.4.50402 /opt/rocm/llvm/lib/clang/15.0.0/lib/linux/libclang_rt.builtins-x86_64.a /opt/rocm-5.4.2/lib/libhipfft.so /opt/rocm-5.4.2/lib/libhiprand.so.1.1.50402 /opt/rocm-5.4.2/lib/libhipsparse.so.0.1.50402 third_party/kaldi/libkaldi.a /usr/lib/gcc/x86_64-linux-gnu/11/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.a -Wl,-rpath-link,/opt/rocm-5.4.2/lib && : +#16 143.2 [139/178] /usr/bin/c++ -DFL_TEXT_USE_KENLM -DNDEBUG -Dflashlight_lib_text_decoder_EXPORTS -I../../ -I/usr/include/python3.10 -I/usr/local/lib/python3.10/dist-packages/torch/include -I../../third_party/flashlight-text/submodule -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -fvisibility=default -std=gnu++17 -MD -MT third_party/flashlight-text/CMakeFiles/flashlight_lib_text_decoder.dir/submodule/bindings/python/flashlight/lib/text/_decoder.cpp.o -MF third_party/flashlight-text/CMakeFiles/flashlight_lib_text_decoder.dir/submodule/bindings/python/flashlight/lib/text/_decoder.cpp.o.d -o third_party/flashlight-text/CMakeFiles/flashlight_lib_text_decoder.dir/submodule/bindings/python/flashlight/lib/text/_decoder.cpp.o -c ../../third_party/flashlight-text/submodule/bindings/python/flashlight/lib/text/_decoder.cpp +#16 143.3 [140/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,flashlight_lib_text_decoder.so -o third_party/flashlight-text/flashlight_lib_text_decoder.so third_party/flashlight-text/CMakeFiles/flashlight_lib_text_decoder.dir/submodule/bindings/python/flashlight/lib/text/_decoder.cpp.o -Wl,-rpath,/audio/build/temp.linux-x86_64-cpython-310/third_party/flashlight-text:/usr/local/lib/python3.10/dist-packages/torch/lib: third_party/flashlight-text/libflashlight-text.so /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_python.so && : +#16 143.6 [141/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-build +#16 143.7 [142/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-install +#16 143.7 [143/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/opus-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opus-stamp/opus-done +#16 143.7 [144/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-mkdir +#16 143.8 [145/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-download +#16 143.8 [146/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-update +#16 143.8 [147/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-patch +#16 146.0 [148/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-configure +#16 146.6 [149/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-build +#16 146.7 [150/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-install +#16 146.7 [151/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/opusfile-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/opusfile-stamp/opusfile-done +#16 148.9 [152/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-build +#16 149.4 [153/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-install +#16 149.4 [154/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/flac-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/flac-stamp/flac-done +#16 183.9 [155/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-build +#16 184.1 [156/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-install +#16 184.1 [157/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/amr-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/amr-stamp/amr-done +#16 184.1 [158/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/tmp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/third_party/sox/../archives && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-mkdir +#16 184.2 [159/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-download-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-download +#16 184.2 [160/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E echo_append && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-update +#16 184.3 [161/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox && patch -p1 < /audio/third_party/patches/sox.patch && cp /audio/third_party/patches/config.guess /audio/third_party/patches/config.sub /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox/ && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-patch +#16 184.3 patching file src/formats.c +#16 184.3 Hunk #1 succeeded at 333 with fuzz 1. +#16 187.9 [162/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-configure-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-configure +#16 198.5 [163/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-build-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-build +#16 198.7 [164/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-build && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-install-Release.cmake && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-install +#16 198.7 [165/178] cd /audio/build/temp.linux-x86_64-cpython-310/third_party/sox && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E make_directory /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/CMakeFiles/sox-complete && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -E touch /audio/build/temp.linux-x86_64-cpython-310/third_party/sox/src/sox-stamp/sox-done +#16 209.3 [166/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_sox_EXPORTS -I../../ -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -c ../../torchaudio/csrc/sox/types.cpp +#16 209.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 209.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 209.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 209.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 209.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 210.9 [167/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_sox_EXPORTS -I../../ -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o -c ../../torchaudio/csrc/sox/effects_chain.cpp +#16 210.9 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 210.9 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 210.9 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 210.9 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 210.9 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 211.3 [168/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_sox_EXPORTS -I../../ -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o -c ../../torchaudio/csrc/sox/utils.cpp +#16 211.3 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 211.3 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 211.3 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 211.3 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 211.3 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 211.4 [169/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_sox_EXPORTS -I../../ -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o -c ../../torchaudio/csrc/sox/io.cpp +#16 211.4 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 211.4 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 211.4 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 211.4 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 211.4 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 211.9 [170/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -Dlibtorchaudio_sox_EXPORTS -I../../ -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o -c ../../torchaudio/csrc/sox/effects.cpp +#16 211.9 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 211.9 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 211.9 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 211.9 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 211.9 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 212.4 [171/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,libtorchaudio_sox.so -o torchaudio/csrc/sox/libtorchaudio_sox.so torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/io.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/utils.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/effects_chain.cpp.o torchaudio/csrc/sox/CMakeFiles/libtorchaudio_sox.dir/types.cpp.o -Wl,-rpath,/usr/local/lib/python3.10/dist-packages/torch/lib:/opt/rocm/hip/lib:/opt/rocm-5.4.2/lib:/opt/rocm/roctracer/lib: /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_hip.so" -Wl,--as-needed /usr/local/lib/python3.10/dist-packages/torch/lib/libc10_hip.so /usr/local/lib/python3.10/dist-packages/torch/lib/libc10.so /opt/rocm/hip/lib/libamdhip64.so /opt/rocm-5.4.2/lib/libMIOpen.so.1.0.50402 /usr/lib/x86_64-linux-gnu/librt.a /opt/rocm/roctracer/lib/libroctx64.so /opt/rocm-5.4.2/lib/librocblas.so.0.1.50402 /opt/rocm/hip/lib/libamdhip64.so.5.4.50402 /opt/rocm/llvm/lib/clang/15.0.0/lib/linux/libclang_rt.builtins-x86_64.a /opt/rocm-5.4.2/lib/libhipfft.so /opt/rocm-5.4.2/lib/libhiprand.so.1.1.50402 /opt/rocm-5.4.2/lib/libhipsparse.so.0.1.50402 ../../third_party/sox/../install/lib/libsox.a ../../third_party/sox/../install/lib/libopencore-amrnb.a ../../third_party/sox/../install/lib/libopencore-amrwb.a ../../third_party/sox/../install/lib/libmp3lame.a ../../third_party/sox/../install/lib/libFLAC.a ../../third_party/sox/../install/lib/libopusfile.a ../../third_party/sox/../install/lib/libopus.a ../../third_party/sox/../install/lib/libvorbisenc.a ../../third_party/sox/../install/lib/libvorbisfile.a ../../third_party/sox/../install/lib/libvorbis.a ../../third_party/sox/../install/lib/libogg.a -Wl,-rpath-link,/opt/rocm-5.4.2/lib && : +#16 218.7 [172/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -D_torchaudio_sox_EXPORTS -I../../ -I/usr/include/python3.10 -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/utils.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/utils.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/utils.cpp.o -c ../../torchaudio/csrc/sox/pybind/utils.cpp +#16 218.7 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 218.7 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 218.7 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 218.7 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 218.7 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 219.5 [173/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -D_torchaudio_sox_EXPORTS -I../../ -I/usr/include/python3.10 -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects_chain.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects_chain.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects_chain.cpp.o -c ../../torchaudio/csrc/sox/pybind/effects_chain.cpp +#16 219.5 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 219.5 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 219.5 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 219.5 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 219.5 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 220.1 [174/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -D_torchaudio_sox_EXPORTS -I../../ -I/usr/include/python3.10 -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/io.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/io.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/io.cpp.o -c ../../torchaudio/csrc/sox/pybind/io.cpp +#16 220.1 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 220.1 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 220.1 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 220.1 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 220.1 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 220.2 [175/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -D_torchaudio_sox_EXPORTS -I../../ -I/usr/include/python3.10 -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o -c ../../torchaudio/csrc/sox/pybind/pybind.cpp +#16 220.2 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 220.2 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 220.2 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 220.2 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 220.2 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 221.2 [176/178] /usr/bin/c++ -DNDEBUG -DUSE_C10D_GLOO -DUSE_C10D_NCCL -DUSE_DISTRIBUTED -DUSE_RPC -DUSE_TENSORPIPE -D__HIP_PLATFORM_AMD__=1 -D__HIP_PLATFORM_HCC__=1 -D_torchaudio_sox_EXPORTS -I../../ -I/usr/include/python3.10 -I../../third_party/sox/../install/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include -isystem /usr/local/lib/python3.10/dist-packages/torch/include/torch/csrc/api/include -isystem /opt/rocm-5.4.2/include -isystem /opt/rocm/include -isystem /opt/rocm-5.4.2/include/hiprand -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -fPIC -D_GLIBCXX_USE_CXX11_ABI=1 -fPIC -D__HIP_PLATFORM_HCC__=1 -DCUDA_HAS_FP16=1 -DUSE_ROCM -D__HIP_NO_HALF_OPERATORS__=1 -D__HIP_NO_HALF_CONVERSIONS__=1 -DTORCH_HIP_VERSION=504 -Wno-macro-redefined -Wno-inconsistent-missing-override -Wno-exceptions -Wno-shift-count-negative -Wno-shift-count-overflow -Wno-unused-command-line-argument -Wno-duplicate-decl-specifier -Wno-implicit-int-float-conversion -DCAFFE2_USE_MIOPEN -DTHRUST_DEVICE_SYSTEM=THRUST_DEVICE_SYSTEM_HIP -std=c++17 -std=gnu++17 -MD -MT torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects.cpp.o -MF torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects.cpp.o.d -o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects.cpp.o -c ../../torchaudio/csrc/sox/pybind/effects.cpp +#16 221.2 cc1plus: warning: command-line option ‘-Wno-duplicate-decl-specifier’ is valid for C/ObjC but not for C++ +#16 221.2 cc1plus: note: unrecognized command-line option ‘-Wno-implicit-int-float-conversion’ may have been intended to silence earlier diagnostics +#16 221.2 cc1plus: note: unrecognized command-line option ‘-Wno-unused-command-line-argument’ may have been intended to silence earlier diagnostics +#16 221.2 cc1plus: note: unrecognized command-line option ‘-Wno-inconsistent-missing-override’ may have been intended to silence earlier diagnostics +#16 221.2 cc1plus: note: unrecognized command-line option ‘-Wno-macro-redefined’ may have been intended to silence earlier diagnostics +#16 221.5 [177/178] : && /usr/bin/c++ -fPIC -Wall -D_GLIBCXX_USE_CXX11_ABI=1 -O3 -DNDEBUG -shared -Wl,-soname,_torchaudio_sox.so -o torchaudio/csrc/sox/_torchaudio_sox.so torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/pybind.cpp.o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects.cpp.o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/effects_chain.cpp.o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/io.cpp.o torchaudio/csrc/sox/CMakeFiles/_torchaudio_sox.dir/pybind/utils.cpp.o -Wl,-rpath,/audio/build/temp.linux-x86_64-cpython-310/torchaudio/csrc/sox:/usr/local/lib/python3.10/dist-packages/torch/lib:/opt/rocm/hip/lib:/opt/rocm-5.4.2/lib:/opt/rocm/roctracer/lib: torchaudio/csrc/sox/libtorchaudio_sox.so /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_python.so /usr/local/lib/python3.10/dist-packages/torch/lib/libtorch.so -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_cpu.so" -Wl,--as-needed -Wl,--no-as-needed,"/usr/local/lib/python3.10/dist-packages/torch/lib/libtorch_hip.so" -Wl,--as-needed /usr/local/lib/python3.10/dist-packages/torch/lib/libc10_hip.so /usr/local/lib/python3.10/dist-packages/torch/lib/libc10.so /opt/rocm/hip/lib/libamdhip64.so /opt/rocm-5.4.2/lib/libMIOpen.so.1.0.50402 /usr/lib/x86_64-linux-gnu/librt.a /opt/rocm/roctracer/lib/libroctx64.so /opt/rocm-5.4.2/lib/librocblas.so.0.1.50402 /opt/rocm/hip/lib/libamdhip64.so.5.4.50402 /opt/rocm/llvm/lib/clang/15.0.0/lib/linux/libclang_rt.builtins-x86_64.a /opt/rocm-5.4.2/lib/libhipfft.so /opt/rocm-5.4.2/lib/libhiprand.so.1.1.50402 /opt/rocm-5.4.2/lib/libhipsparse.so.0.1.50402 ../../third_party/sox/../install/lib/libsox.a ../../third_party/sox/../install/lib/libopencore-amrnb.a ../../third_party/sox/../install/lib/libopencore-amrwb.a ../../third_party/sox/../install/lib/libmp3lame.a ../../third_party/sox/../install/lib/libFLAC.a ../../third_party/sox/../install/lib/libopusfile.a ../../third_party/sox/../install/lib/libopus.a ../../third_party/sox/../install/lib/libvorbisenc.a ../../third_party/sox/../install/lib/libvorbisfile.a ../../third_party/sox/../install/lib/libvorbis.a ../../third_party/sox/../install/lib/libogg.a -Wl,-rpath-link,/opt/rocm-5.4.2/lib && : +#16 221.5 [177/178] cd /audio/build/temp.linux-x86_64-cpython-310 && /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake -P cmake_install.cmake +#16 221.5 -- Install configuration: "Release" +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libflashlight-text.so +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/flashlight_lib_text_dictionary.so +#16 221.5 -- Set runtime path of "/audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/flashlight_lib_text_dictionary.so" to "" +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/flashlight_lib_text_decoder.so +#16 221.5 -- Set runtime path of "/audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/flashlight_lib_text_decoder.so" to "" +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so +#16 221.5 -- Set runtime path of "/audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so" to "" +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so +#16 221.5 -- Set runtime path of "/audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so" to "" +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so +#16 221.5 -- Set runtime path of "/audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so" to "" +#16 221.5 -- Installing: /audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so +#16 221.5 -- Set runtime path of "/audio/build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so" to "" +#16 221.5 /usr/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. +#16 221.5 !! +#16 221.5 +#16 221.5 ******************************************************************************** +#16 221.5 Please avoid running ``setup.py`` directly. +#16 221.5 Instead, use pypa/build, pypa/installer or other +#16 221.5 standards-based tools. +#16 221.5 +#16 221.5 By 2025-Oct-31, you need to update your project and remove deprecated calls +#16 221.5 or your builds will no longer be supported. +#16 221.5 +#16 221.5 See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. +#16 221.5 ******************************************************************************** +#16 221.5 +#16 221.5 !! +#16 221.5 self.initialize_options() +#16 221.5 installing to build/bdist.linux-x86_64/wheel +#16 221.5 running install +#16 221.5 running install_lib +#16 221.5 creating build/bdist.linux-x86_64/wheel +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/io +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/io/_compat.py -> build/bdist.linux-x86_64/wheel/./torchaudio/io +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/io/_stream_writer.py -> build/bdist.linux-x86_64/wheel/./torchaudio/io +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/io/_stream_reader.py -> build/bdist.linux-x86_64/wheel/./torchaudio/io +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/io/_playback.py -> build/bdist.linux-x86_64/wheel/./torchaudio/io +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/io/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/io +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/vctk.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/speechcommands.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/cmudict.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/cmuarctic.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/ljspeech.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/quesst14.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/dr_vctk.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/yesno.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/iemocap.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/commonvoice.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/librilight_limited.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/tedlium.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/librimix.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/voxceleb1.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/librispeech.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/libritts.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/gtzan.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/fluentcommands.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/musdb_hq.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/datasets/snips.py -> build/bdist.linux-x86_64/wheel/./torchaudio/datasets +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/_backend +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/_backend/utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/_backend +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/_backend/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/_backend +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/pipelines +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/rnnt_pipeline.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/pipelines/_tts +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts/interface.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_tts +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts/impl.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_tts +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts/utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_tts +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_tts/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_tts +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/pipelines/_wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2/impl.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2/utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_wav2vec2/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines/_wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/_source_separation_pipeline.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/pipelines/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/pipelines +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/utils/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/utils/sox_utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/utils/ffmpeg_utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/utils/download.py -> build/bdist.linux-x86_64/wheel/./torchaudio/utils +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/sox_effects +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/sox_effects +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/sox_effects/sox_effects.py -> build/bdist.linux-x86_64/wheel/./torchaudio/sox_effects +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/functional +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/functional/functional.py -> build/bdist.linux-x86_64/wheel/./torchaudio/functional +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/functional/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/functional +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/functional/filtering.py -> build/bdist.linux-x86_64/wheel/./torchaudio/functional +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/conformer.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/conv_tasnet.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/deepspeech.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/rnnt.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2letter.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/models/decoder +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/decoder +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/decoder/_ctc_decoder.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/decoder +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/emformer.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/_hdemucs.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/tacotron2.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/models/wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/wavlm_attention.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/model.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2 +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/models/wav2vec2/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils/import_fairseq.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/utils/import_huggingface.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2/utils +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/components.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wav2vec2/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models/wav2vec2 +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/wavernn.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/models/rnnt_decoder.py -> build/bdist.linux-x86_64/wheel/./torchaudio/models +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/kaldi_io.py -> build/bdist.linux-x86_64/wheel/./torchaudio +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/_extension +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/_extension/utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/_extension +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/_extension/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/_extension +#16 221.5 creating build/bdist.linux-x86_64/wheel/torchaudio/lib +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.5 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio_sox.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/flashlight_lib_text_dictionary.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libflashlight-text.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/flashlight_lib_text_decoder.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/libtorchaudio_sox.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/lib/_torchaudio.so -> build/bdist.linux-x86_64/wheel/./torchaudio/lib +#16 221.6 creating build/bdist.linux-x86_64/wheel/torchaudio/_internal +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/_internal/module_utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/_internal +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/_internal/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/_internal +#16 221.6 creating build/bdist.linux-x86_64/wheel/torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/backend/utils.py -> build/bdist.linux-x86_64/wheel/./torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/backend/common.py -> build/bdist.linux-x86_64/wheel/./torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/backend/soundfile_backend.py -> build/bdist.linux-x86_64/wheel/./torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/backend/sox_io_backend.py -> build/bdist.linux-x86_64/wheel/./torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/backend/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/backend/no_backend.py -> build/bdist.linux-x86_64/wheel/./torchaudio/backend +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio +#16 221.6 creating build/bdist.linux-x86_64/wheel/torchaudio/transforms +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/transforms/_multi_channel.py -> build/bdist.linux-x86_64/wheel/./torchaudio/transforms +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/transforms/_transforms.py -> build/bdist.linux-x86_64/wheel/./torchaudio/transforms +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/transforms/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/transforms +#16 221.6 creating build/bdist.linux-x86_64/wheel/torchaudio/compliance +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/compliance/__init__.py -> build/bdist.linux-x86_64/wheel/./torchaudio/compliance +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/compliance/kaldi.py -> build/bdist.linux-x86_64/wheel/./torchaudio/compliance +#16 221.6 copying build/lib.linux-x86_64-cpython-310/torchaudio/version.py -> build/bdist.linux-x86_64/wheel/./torchaudio +#16 221.6 running install_egg_info +#16 221.6 running egg_info +#16 221.6 creating torchaudio.egg-info +#16 221.6 writing torchaudio.egg-info/PKG-INFO +#16 221.6 writing dependency_links to torchaudio.egg-info/dependency_links.txt +#16 221.6 writing requirements to torchaudio.egg-info/requires.txt +#16 221.6 writing top-level names to torchaudio.egg-info/top_level.txt +#16 221.6 writing manifest file 'torchaudio.egg-info/SOURCES.txt' +#16 221.6 reading manifest file 'torchaudio.egg-info/SOURCES.txt' +#16 221.6 adding license file 'LICENSE' +#16 221.6 writing manifest file 'torchaudio.egg-info/SOURCES.txt' +#16 221.6 Copying torchaudio.egg-info to build/bdist.linux-x86_64/wheel/./torchaudio-2.0.2+31de77d-py3.10.egg-info +#16 221.6 running install_scripts +#16 221.6 creating build/bdist.linux-x86_64/wheel/torchaudio-2.0.2+31de77d.dist-info/WHEEL +#16 221.6 creating 'dist/torchaudio-2.0.2+31de77d-cp310-cp310-linux_x86_64.whl' and adding 'build/bdist.linux-x86_64/wheel' to it +#16 221.6 adding 'torchaudio/__init__.py' +#16 221.6 adding 'torchaudio/kaldi_io.py' +#16 221.6 adding 'torchaudio/version.py' +#16 221.6 adding 'torchaudio/_backend/__init__.py' +#16 221.6 adding 'torchaudio/_backend/utils.py' +#16 221.6 adding 'torchaudio/_extension/__init__.py' +#16 221.6 adding 'torchaudio/_extension/utils.py' +#16 221.6 adding 'torchaudio/_internal/__init__.py' +#16 221.6 adding 'torchaudio/_internal/module_utils.py' +#16 221.6 adding 'torchaudio/backend/__init__.py' +#16 221.6 adding 'torchaudio/backend/common.py' +#16 221.6 adding 'torchaudio/backend/no_backend.py' +#16 221.6 adding 'torchaudio/backend/soundfile_backend.py' +#16 221.6 adding 'torchaudio/backend/sox_io_backend.py' +#16 221.6 adding 'torchaudio/backend/utils.py' +#16 221.6 adding 'torchaudio/compliance/__init__.py' +#16 221.6 adding 'torchaudio/compliance/kaldi.py' +#16 221.6 adding 'torchaudio/datasets/__init__.py' +#16 221.6 adding 'torchaudio/datasets/cmuarctic.py' +#16 221.6 adding 'torchaudio/datasets/cmudict.py' +#16 221.6 adding 'torchaudio/datasets/commonvoice.py' +#16 221.6 adding 'torchaudio/datasets/dr_vctk.py' +#16 221.6 adding 'torchaudio/datasets/fluentcommands.py' +#16 221.6 adding 'torchaudio/datasets/gtzan.py' +#16 221.6 adding 'torchaudio/datasets/iemocap.py' +#16 221.6 adding 'torchaudio/datasets/librilight_limited.py' +#16 221.6 adding 'torchaudio/datasets/librimix.py' +#16 221.6 adding 'torchaudio/datasets/librispeech.py' +#16 221.6 adding 'torchaudio/datasets/libritts.py' +#16 221.6 adding 'torchaudio/datasets/ljspeech.py' +#16 221.6 adding 'torchaudio/datasets/musdb_hq.py' +#16 221.6 adding 'torchaudio/datasets/quesst14.py' +#16 221.6 adding 'torchaudio/datasets/snips.py' +#16 221.6 adding 'torchaudio/datasets/speechcommands.py' +#16 221.6 adding 'torchaudio/datasets/tedlium.py' +#16 221.6 adding 'torchaudio/datasets/utils.py' +#16 221.6 adding 'torchaudio/datasets/vctk.py' +#16 221.6 adding 'torchaudio/datasets/voxceleb1.py' +#16 221.6 adding 'torchaudio/datasets/yesno.py' +#16 221.6 adding 'torchaudio/functional/__init__.py' +#16 221.6 adding 'torchaudio/functional/filtering.py' +#16 221.6 adding 'torchaudio/functional/functional.py' +#16 221.6 adding 'torchaudio/io/__init__.py' +#16 221.6 adding 'torchaudio/io/_compat.py' +#16 221.6 adding 'torchaudio/io/_playback.py' +#16 221.6 adding 'torchaudio/io/_stream_reader.py' +#16 221.6 adding 'torchaudio/io/_stream_writer.py' +#16 221.6 adding 'torchaudio/lib/_torchaudio.so' +#16 221.7 adding 'torchaudio/lib/_torchaudio_sox.so' +#16 221.7 adding 'torchaudio/lib/flashlight_lib_text_decoder.so' +#16 221.7 adding 'torchaudio/lib/flashlight_lib_text_dictionary.so' +#16 221.8 adding 'torchaudio/lib/libflashlight-text.so' +#16 221.8 adding 'torchaudio/lib/libtorchaudio.so' +#16 222.0 adding 'torchaudio/lib/libtorchaudio_sox.so' +#16 222.0 adding 'torchaudio/models/__init__.py' +#16 222.0 adding 'torchaudio/models/_hdemucs.py' +#16 222.0 adding 'torchaudio/models/conformer.py' +#16 222.0 adding 'torchaudio/models/conv_tasnet.py' +#16 222.0 adding 'torchaudio/models/deepspeech.py' +#16 222.0 adding 'torchaudio/models/emformer.py' +#16 222.0 adding 'torchaudio/models/rnnt.py' +#16 222.0 adding 'torchaudio/models/rnnt_decoder.py' +#16 222.0 adding 'torchaudio/models/tacotron2.py' +#16 222.0 adding 'torchaudio/models/wav2letter.py' +#16 222.0 adding 'torchaudio/models/wavernn.py' +#16 222.0 adding 'torchaudio/models/decoder/__init__.py' +#16 222.0 adding 'torchaudio/models/decoder/_ctc_decoder.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/__init__.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/components.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/model.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/wavlm_attention.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/utils/__init__.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/utils/import_fairseq.py' +#16 222.0 adding 'torchaudio/models/wav2vec2/utils/import_huggingface.py' +#16 222.0 adding 'torchaudio/pipelines/__init__.py' +#16 222.0 adding 'torchaudio/pipelines/_source_separation_pipeline.py' +#16 222.0 adding 'torchaudio/pipelines/rnnt_pipeline.py' +#16 222.0 adding 'torchaudio/pipelines/_tts/__init__.py' +#16 222.0 adding 'torchaudio/pipelines/_tts/impl.py' +#16 222.0 adding 'torchaudio/pipelines/_tts/interface.py' +#16 222.0 adding 'torchaudio/pipelines/_tts/utils.py' +#16 222.0 adding 'torchaudio/pipelines/_wav2vec2/__init__.py' +#16 222.0 adding 'torchaudio/pipelines/_wav2vec2/impl.py' +#16 222.0 adding 'torchaudio/pipelines/_wav2vec2/utils.py' +#16 222.0 adding 'torchaudio/sox_effects/__init__.py' +#16 222.0 adding 'torchaudio/sox_effects/sox_effects.py' +#16 222.0 adding 'torchaudio/transforms/__init__.py' +#16 222.0 adding 'torchaudio/transforms/_multi_channel.py' +#16 222.0 adding 'torchaudio/transforms/_transforms.py' +#16 222.0 adding 'torchaudio/utils/__init__.py' +#16 222.0 adding 'torchaudio/utils/download.py' +#16 222.0 adding 'torchaudio/utils/ffmpeg_utils.py' +#16 222.0 adding 'torchaudio/utils/sox_utils.py' +#16 222.0 adding 'torchaudio-2.0.2+31de77d.dist-info/licenses/LICENSE' +#16 222.0 adding 'torchaudio-2.0.2+31de77d.dist-info/METADATA' +#16 222.0 adding 'torchaudio-2.0.2+31de77d.dist-info/WHEEL' +#16 222.0 adding 'torchaudio-2.0.2+31de77d.dist-info/top_level.txt' +#16 222.0 adding 'torchaudio-2.0.2+31de77d.dist-info/RECORD' +#16 222.0 removing build/bdist.linux-x86_64/wheel +#16 222.9 Processing ./dist/torchaudio-2.0.2+31de77d-cp310-cp310-linux_x86_64.whl +#16 222.9 Requirement already satisfied: torch in /usr/local/lib/python3.10/dist-packages (from torchaudio==2.0.2+31de77d) (2.0.0a0+gite9ebda2) +#16 222.9 Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from torch->torchaudio==2.0.2+31de77d) (3.18.0) +#16 222.9 Requirement already satisfied: typing-extensions in /usr/local/lib/python3.10/dist-packages (from torch->torchaudio==2.0.2+31de77d) (4.13.2) +#16 222.9 Requirement already satisfied: sympy in /usr/local/lib/python3.10/dist-packages (from torch->torchaudio==2.0.2+31de77d) (1.14.0) +#16 222.9 Requirement already satisfied: networkx in /usr/local/lib/python3.10/dist-packages (from torch->torchaudio==2.0.2+31de77d) (3.4.2) +#16 222.9 Requirement already satisfied: jinja2 in /usr/local/lib/python3.10/dist-packages (from torch->torchaudio==2.0.2+31de77d) (3.1.6) +#16 222.9 Requirement already satisfied: pytorch-triton-rocm<2.1,>=2.0.0 in /usr/local/lib/python3.10/dist-packages (from torch->torchaudio==2.0.2+31de77d) (2.0.2) +#16 222.9 Requirement already satisfied: cmake in /usr/local/lib/python3.10/dist-packages (from pytorch-triton-rocm<2.1,>=2.0.0->torch->torchaudio==2.0.2+31de77d) (3.20.2) +#16 222.9 Requirement already satisfied: lit in /usr/local/lib/python3.10/dist-packages (from pytorch-triton-rocm<2.1,>=2.0.0->torch->torchaudio==2.0.2+31de77d) (18.1.8) +#16 222.9 Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.10/dist-packages (from jinja2->torch->torchaudio==2.0.2+31de77d) (3.0.2) +#16 222.9 Requirement already satisfied: mpmath<1.4,>=1.1.0 in /usr/local/lib/python3.10/dist-packages (from sympy->torch->torchaudio==2.0.2+31de77d) (1.3.0) +#16 223.0 Installing collected packages: torchaudio +#16 223.2 Successfully installed torchaudio-2.0.2+31de77d +#16 223.2 Reading package lists... +#16 223.9 Building dependency tree... +#16 224.1 Reading state information... +#16 224.2 The following packages will be REMOVED: +#16 224.2 libao-common* libao4* libflac-dev* libid3tag0* libltdl7* libmad0* +#16 224.2 libogg-dev* libopencore-amrnb0* libopencore-amrwb0* libopus-dev* +#16 224.2 libsndfile1-dev* libsox-dev* libsox-fmt-all* libsox-fmt-alsa* libsox-fmt-ao* +#16 224.2 libsox-fmt-base* libsox-fmt-mp3* libsox-fmt-oss* libsox-fmt-pulse* libsox3* +#16 224.2 libvorbis-dev* libwavpack1* sox* +#16 224.4 0 upgraded, 0 newly installed, 23 to remove and 124 not upgraded. +#16 224.4 After this operation, 10.7 MB disk space will be freed. +#16 224.4 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 32845 files and directories currently installed.) +#16 224.4 Removing libsox-dev:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 224.5 Removing libsox-fmt-all:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 224.6 Removing sox (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 224.7 Removing libsox-fmt-ao:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 224.8 Removing libao4:amd64 (1.2.2+20180113-1.1ubuntu3) ... +#16 224.9 Removing libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 224.9 Removing libsndfile1-dev:amd64 (1.0.31-2ubuntu0.2) ... +#16 225.0 Removing libflac-dev:amd64 (1.3.3-2ubuntu0.2) ... +#16 225.1 Removing libsox-fmt-mp3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 225.2 Removing libid3tag0:amd64 (0.15.1b-14) ... +#16 225.3 Removing libsox-fmt-pulse:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 225.4 Removing libmad0:amd64 (0.15.1b-10ubuntu1) ... +#16 225.4 Removing libvorbis-dev:amd64 (1.3.7-1build2) ... +#16 225.5 Removing libogg-dev:amd64 (1.3.5-0ubuntu3) ... +#16 225.6 Removing libsox-fmt-base:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 225.7 Removing libopencore-amrnb0:amd64 (0.1.5-1) ... +#16 225.8 Removing libopencore-amrwb0:amd64 (0.1.5-1) ... +#16 225.9 Removing libopus-dev:amd64 (1.3.1-0.1build2) ... +#16 226.0 Removing libsox-fmt-alsa:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 226.0 Removing libsox-fmt-oss:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 226.1 Removing libwavpack1:amd64 (5.4.0-1build2) ... +#16 226.2 Removing libsox3:amd64 (14.4.2+git20190427-2+deb11u2ubuntu0.22.04.1) ... +#16 226.3 Removing libltdl7:amd64 (2.4.6-15build2) ... +#16 226.4 Processing triggers for libc-bin (2.35-0ubuntu3.1) ... +#16 226.5 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 32297 files and directories currently installed.) +#16 226.5 Purging configuration files for libao-common (1.2.2+20180113-1.1ubuntu3) ... +#16 DONE 226.9s + +#17 [14/18] RUN echo "Configuring ROCm library paths" && echo "/opt/rocm/lib" > /etc/ld.so.conf.d/rocm.conf && (test -d /opt/rocm/lib64 && echo "/opt/rocm/lib64" >> /etc/ld.so.conf.d/rocm.conf || true) && ldconfig && true +#17 0.261 Configuring ROCm library paths +#17 DONE 0.3s + +#18 [15/18] RUN echo "** Verifying PyTorch, TorchVision, TorchAudio Installation **" && python3 -c "import sys; import platform; import torch; import torchvision; import torchaudio; print(f'System Python Version (sys.version): {sys.version.split()[0]}'); print(f'Platform Python Version (platform.python_version): {platform.python_version()}'); print(f'Torch Version: {torch.__version__}'); print(f'TorchVision Version: {torchvision.__version__}'); print(f'TorchAudio Version: {torchaudio.__version__}'); print(f'ROCm available: {torch.cuda.is_available()}'); print(f'PyTorch built with ROCm/HIP: {torch.version.hip if hasattr(torch.version, "hip") else "HIP not available or not a ROCm build"}')" +#18 0.252 ** Verifying PyTorch, TorchVision, TorchAudio Installation ** +#18 1.302 /usr/local/lib/python3.10/dist-packages/torchvision/io/image.py:13: UserWarning: Failed to load image Python extension: ''If you don't plan on using image functionality from `torchvision.io`, you can ignore this warning. Otherwise, there might be something wrong with your environment. Did you have `libjpeg` or `libpng` installed before building `torchvision` from source? +#18 1.302 warn( +#18 1.577 /audio/torchaudio/backend/utils.py:74: UserWarning: No audio backend is available. +#18 1.577 warnings.warn("No audio backend is available.") +#18 1.577 System Python Version (sys.version): 3.10.12 +#18 1.577 Platform Python Version (platform.python_version): 3.10.12 +#18 1.577 Torch Version: 2.0.0a0+gite9ebda2 +#18 1.577 TorchVision Version: 0.15.2a0+fa99a53 +#18 1.577 TorchAudio Version: 2.0.2+31de77d +#18 1.578 ROCm available: False +#18 1.578 PyTorch built with ROCm/HIP: 5.4.22803-474e8620 +#18 DONE 2.1s + +#19 exporting to image +#19 exporting layers +#19 exporting layers 13.7s done +#19 writing image sha256:16994edac1cd748565bdb5294760e23bfdb6abc5f5369e618c4941e47da187b2 done +#19 naming to docker.io/library/rocm542_gfx803_base:5.4.2 done +#19 DONE 13.7s diff --git a/rocm_5.4/logs/build_rvc.log b/rocm_5.4/logs/build_rvc.log new file mode 100644 index 000000000..0efe50a03 --- /dev/null +++ b/rocm_5.4/logs/build_rvc.log @@ -0,0 +1,279 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 9.28kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/library/rocm542_gfx803_base:5.4.2 +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/14] FROM docker.io/library/rocm542_gfx803_base:5.4.2 +#4 DONE 0.0s + +#5 [ 3/14] WORKDIR /app +#5 CACHED + +#6 [ 5/14] RUN python3 -m venv .venv # .venv /app altında oluşacak +#6 CACHED + +#7 [ 2/14] RUN apt-get update -y && apt-get install -y --no-install-recommends aria2 git wget curl ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/* +#7 CACHED + +#8 [ 8/14] RUN echo "** Installing RVC dependencies from main requirements.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements.txt -c .venv/constraints.txt +#8 CACHED + +#9 [ 4/14] RUN echo "Cloning RVC repository..." && git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git . && echo "RVC repository cloned into /app." +#9 CACHED + +#10 [ 7/14] RUN echo "Processing RVC requirements files" && echo "Current directory: $(pwd)" && ls -la && if [ ! -f "requirements.txt" ]; then echo "ERROR: requirements.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && if [ ! -f "requirements-amd.txt" ]; then echo "ERROR: requirements-amd.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && echo "--- Original requirements.txt ---" && cat requirements.txt && echo "--- End ---" && echo "--- Original requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\s*(==|>=)?/d' requirements.txt && sed -i '/^fairseq @ /d' requirements.txt && sed -i '/^extension_/d' requirements.txt && sed -i "/; sys_platform 'win32'/d" requirements.txt && sed -i "/; sys_platform 'darwin'/d" requirements.txt && echo "--- Cleaned main requirements.txt ---" && cat requirements.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\\s*(==|>=)?/d' requirements-amd.txt && sed -i '/^tensorflow-rocm/d' requirements-amd.txt && sed -i '/^joblib/d' requirements-amd.txt && sed -i '/^numba/d' requirements-amd.txt && sed -i '/^numpy/d' requirements-amd.txt && sed -i '/^scipy/d' requirements-amd.txt && sed -i '/^librosa/d' requirements-amd.txt && sed -i '/^llvmlite/d' requirements-amd.txt && sed -i '/^fairseq/d' requirements-amd.txt && sed -i '/^faiss-cpu/d' requirements-amd.txt && sed -i '/^gradio/d' requirements-amd.txt && sed -i '/^Cython/d' requirements-amd.txt && sed -i '/^pyworld/d' requirements-amd.txt && sed -i '/^torchcrepe/d' requirements-amd.txt && sed -i '/^torchfcpe/d' requirements-amd.txt && sed -i '/^onnxruntime/d' requirements-amd.txt && sed -i "/; sys_platform 'darwin'/d" requirements-amd.txt && echo "--- Cleaned requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" +#10 CACHED + +#11 [ 6/14] RUN echo "** Creating constraints.txt **" && export PATH="/opt/rocm/bin:/opt/rocm/hip/bin:/root/.nvm/versions/node/v22.9.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" && PYTORCH_WHEEL_FILE_PATH=$(cat /opt/pytorch_wheel_name.txt) && TORCHVISION_WHEEL_FILE_PATH=$(cat /opt/torchvision_wheel_name.txt) && TORCHAUDIO_WHEEL_FILE_PATH=$(cat /opt/torchaudio_wheel_name.txt) && echo "torch @ file://${PYTORCH_WHEEL_FILE_PATH}" > .venv/constraints.txt && echo "torchvision @ file://${TORCHVISION_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "torchaudio @ file://${TORCHAUDIO_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "numpy==1.23.5" >> .venv/constraints.txt && echo "protobuf==4.25.3" >> .venv/constraints.txt && echo "matplotlib" >> .venv/constraints.txt && echo "joblib==1.1.0" >> .venv/constraints.txt && echo "numba==0.56.4" >> .venv/constraints.txt && echo "llvmlite==0.39.0" >> .venv/constraints.txt && echo "fairseq==0.12.2" >> .venv/constraints.txt && echo "faiss-cpu==1.7.3" >> .venv/constraints.txt && echo "gradio==3.34.0" >> .venv/constraints.txt && echo "pyworld==0.3.2" >> .venv/constraints.txt && echo "torchcrepe==0.0.23" >> .venv/constraints.txt && echo "torchfcpe" >> .venv/constraints.txt && echo "Contents of constraints.txt:" && cat .venv/constraints.txt +#11 CACHED + +#12 [ 9/14] RUN echo "** Installing RVC specific dependencies from requirements-amd.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements-amd.txt -c .venv/constraints.txt +#12 CACHED + +#13 [internal] load build context +#13 transferring context: 39B done +#13 DONE 0.0s + +#14 [10/14] RUN echo "** Installing other essential dependencies into venv **" && ./.venv/bin/python -m pip install --no-cache-dir -c .venv/constraints.txt Cython scipy librosa==0.10.2 pydub>=0.25.1 soundfile>=0.12.1 ffmpeg-python>=0.2.0 tensorboardX Jinja2>=3.1.2 json5 Markdown matplotlib>=3.7.0 matplotlib-inline>=0.1.3 praat-parselmouth>=0.4.2 Pillow>=9.1.1 resampy>=0.4.2 scikit-learn tensorboard tqdm>=4.63.1 tornado>=6.1 Werkzeug>=2.2.3 uc-micro-py>=1.0.1 sympy>=1.11.1 tabulate>=0.8.10 PyYAML>=6.0 pyasn1>=0.4.8 pyasn1-modules>=0.2.8 fsspec>=2022.11.0 absl-py>=1.2.0 audioread uvicorn>=0.21.1 colorama>=0.4.5 httpx fastapi==0.88 ffmpy==0.3.1 python-dotenv>=1.0.0 av torchcrepe==0.0.23 torchfcpe joblib==1.1.0 numba==0.56.4 llvmlite==0.39.0 fairseq==0.12.2 faiss-cpu==1.7.3 gradio==3.34.0 pyworld==0.3.2 onnxruntime && echo "Essential dependencies installed into venv." +#14 0.250 ** Installing other essential dependencies into venv ** +#14 29.45 Essential dependencies installed into venv. +#14 DONE 30.0s + +#15 [11/14] RUN echo "** Downloading RVC pre-models **" && mkdir -p assets/pretrained_v2 assets/uvr5_weights assets/hubert assets/rmvpe && aria2c --console-log-level=error -c -x 16 -s 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/D40k.pth -d assets/pretrained_v2/ -o D40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/G40k.pth -d assets/pretrained_v2/ -o G40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0D40k.pth -d assets/pretrained_v2/ -o f0D40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0G40k.pth -d assets/pretrained_v2/ -o f0G40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d assets/uvr5_weights/ -o HP2-人声vocals+非人声instrumentals.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d assets/uvr5_weights/ -o HP5-主旋律人声vocals+其他instrumentals.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d assets/hubert -o hubert_base.pt && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d assets/rmvpe -o rmvpe.pt && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.onnx -d assets/rmvpe/ -o rmvpe.onnx && echo "RVC pre-models downloaded." +#15 0.297 ** Downloading RVC pre-models ** +#15 15.09 [#049b59 1.0MiB/136MiB(0%) CN:16 DL:3.0MiB ETA:44s] +#15 15.09 [#049b59 9.2MiB/136MiB(6%) CN:16 DL:7.0MiB ETA:17s] +#15 15.09 [#049b59 18MiB/136MiB(13%) CN:16 DL:8.0MiB ETA:14s] +#15 15.09 [#049b59 29MiB/136MiB(21%) CN:16 DL:9.0MiB ETA:11s] +#15 15.09 [#049b59 37MiB/136MiB(27%) CN:16 DL:8.6MiB ETA:11s] +#15 15.09 [#049b59 50MiB/136MiB(37%) CN:16 DL:9.5MiB ETA:8s] +#15 15.09 [#049b59 61MiB/136MiB(45%) CN:16 DL:9.8MiB ETA:7s] +#15 15.09 [#049b59 72MiB/136MiB(53%) CN:16 DL:9.9MiB ETA:6s] +#15 15.09 [#049b59 84MiB/136MiB(62%) CN:16 DL:10MiB ETA:5s] +#15 15.09 [#049b59 93MiB/136MiB(68%) CN:16 DL:10MiB ETA:4s] +#15 15.09 [#049b59 104MiB/136MiB(76%) CN:16 DL:10MiB ETA:3s] +#15 15.09 [#049b59 114MiB/136MiB(84%) CN:16 DL:10MiB ETA:2s] +#15 15.09 [#049b59 126MiB/136MiB(93%) CN:16 DL:10MiB] +#15 15.09 [#049b59 134MiB/136MiB(98%) CN:5 DL:10MiB] +#15 15.09 +#15 15.09 Download Results: +#15 15.09 gid |stat|avg speed |path/URI +#15 15.09 ======+====+===========+======================================================= +#15 15.09 049b59|OK | 9.8MiB/s|assets/pretrained_v2//D40k.pth +#15 15.09 +#15 15.09 Status Legend: +#15 15.09 (OK):download completed. +#15 24.53 [#2ab009 0.9MiB/69MiB(1%) CN:16 DL:2.4MiB ETA:28s] +#15 24.53 [#2ab009 8.0MiB/69MiB(11%) CN:16 DL:5.9MiB ETA:10s] +#15 24.53 [#2ab009 17MiB/69MiB(24%) CN:16 DL:7.2MiB ETA:7s] +#15 24.53 [#2ab009 28MiB/69MiB(40%) CN:16 DL:8.4MiB ETA:4s] +#15 24.53 [#2ab009 44MiB/69MiB(63%) CN:16 DL:10MiB ETA:2s] +#15 24.53 [#2ab009 53MiB/69MiB(76%) CN:16 DL:10MiB ETA:1s] +#15 24.53 [#2ab009 62MiB/69MiB(89%) CN:16 DL:9.8MiB] +#15 24.53 [#2ab009 68MiB/69MiB(98%) CN:3 DL:9.3MiB] +#15 24.53 [#2ab009 69MiB/69MiB(99%) CN:1 DL:8.3MiB] +#15 24.53 +#15 24.53 Download Results: +#15 24.53 gid |stat|avg speed |path/URI +#15 24.53 ======+====+===========+======================================================= +#15 24.53 2ab009|OK | 8.0MiB/s|assets/pretrained_v2//G40k.pth +#15 24.53 +#15 24.53 Status Legend: +#15 24.53 (OK):download completed. +#15 39.87 [#5e8395 736KiB/136MiB(0%) CN:16 DL:1.9MiB ETA:1m10s] +#15 39.87 [#5e8395 8.4MiB/136MiB(6%) CN:16 DL:6.2MiB ETA:20s] +#15 39.87 [#5e8395 18MiB/136MiB(13%) CN:16 DL:7.9MiB ETA:14s] +#15 39.87 [#5e8395 28MiB/136MiB(21%) CN:16 DL:8.6MiB ETA:12s] +#15 39.87 [#5e8395 42MiB/136MiB(31%) CN:16 DL:9.8MiB ETA:9s] +#15 39.87 [#5e8395 53MiB/136MiB(39%) CN:16 DL:10MiB ETA:8s] +#15 39.87 [#5e8395 63MiB/136MiB(46%) CN:16 DL:10MiB ETA:7s] +#15 39.87 [#5e8395 74MiB/136MiB(54%) CN:16 DL:10MiB ETA:6s] +#15 39.87 [#5e8395 85MiB/136MiB(62%) CN:16 DL:10MiB ETA:4s] +#15 39.87 [#5e8395 95MiB/136MiB(69%) CN:16 DL:10MiB ETA:4s] +#15 39.87 [#5e8395 106MiB/136MiB(78%) CN:16 DL:10MiB ETA:2s] +#15 39.87 [#5e8395 118MiB/136MiB(86%) CN:16 DL:11MiB ETA:1s] +#15 39.87 [#5e8395 128MiB/136MiB(94%) CN:15 DL:11MiB] +#15 39.87 [#5e8395 135MiB/136MiB(99%) CN:3 DL:10MiB] +#15 39.87 [#5e8395 136MiB/136MiB(99%) CN:1 DL:9.3MiB] +#15 39.87 +#15 39.87 Download Results: +#15 39.87 gid |stat|avg speed |path/URI +#15 39.87 ======+====+===========+======================================================= +#15 39.87 5e8395|OK | 9.4MiB/s|assets/pretrained_v2//f0D40k.pth +#15 39.87 +#15 39.87 Status Legend: +#15 39.87 (OK):download completed. +#15 49.21 [#c4f322 656KiB/69MiB(0%) CN:16 DL:1.7MiB ETA:40s] +#15 49.21 [#c4f322 8.5MiB/69MiB(12%) CN:16 DL:6.3MiB ETA:9s] +#15 49.21 [#c4f322 18MiB/69MiB(26%) CN:16 DL:7.8MiB ETA:6s] +#15 49.21 [#c4f322 30MiB/69MiB(44%) CN:16 DL:9.2MiB ETA:4s] +#15 49.21 [#c4f322 40MiB/69MiB(57%) CN:16 DL:9.2MiB ETA:3s] +#15 49.21 [#c4f322 53MiB/69MiB(76%) CN:16 DL:10MiB ETA:1s] +#15 49.21 [#c4f322 63MiB/69MiB(90%) CN:14 DL:9.9MiB] +#15 49.21 [#c4f322 68MiB/69MiB(98%) CN:3 DL:9.3MiB] +#15 49.21 [#c4f322 69MiB/69MiB(99%) CN:2 DL:8.3MiB] +#15 49.21 +#15 49.21 Download Results: +#15 49.21 gid |stat|avg speed |path/URI +#15 49.21 ======+====+===========+======================================================= +#15 49.21 c4f322|OK | 8.1MiB/s|assets/pretrained_v2//f0G40k.pth +#15 49.21 +#15 49.21 Status Legend: +#15 49.21 (OK):download completed. +#15 59.76 [#e21d2c 736KiB/60MiB(1%) CN:16 DL:2.0MiB ETA:28s] +#15 59.76 [#e21d2c 7.5MiB/60MiB(12%) CN:16 DL:5.6MiB ETA:9s] +#15 59.76 [#e21d2c 18MiB/60MiB(29%) CN:16 DL:7.7MiB ETA:5s] +#15 59.76 [#e21d2c 29MiB/60MiB(48%) CN:16 DL:8.8MiB ETA:3s] +#15 59.76 [#e21d2c 41MiB/60MiB(68%) CN:16 DL:9.6MiB ETA:1s] +#15 59.76 [#e21d2c 51MiB/60MiB(85%) CN:16 DL:9.7MiB] +#15 59.76 [#e21d2c 58MiB/60MiB(97%) CN:6 DL:9.3MiB] +#15 59.76 [#e21d2c 60MiB/60MiB(99%) CN:1 DL:8.2MiB] +#15 59.76 [#e21d2c 60MiB/60MiB(99%) CN:1 DL:7.2MiB] +#15 59.76 [#e21d2c 60MiB/60MiB(99%) CN:1 DL:6.4MiB] +#15 59.76 +#15 59.76 Download Results: +#15 59.76 gid |stat|avg speed |path/URI +#15 59.76 ======+====+===========+======================================================= +#15 59.76 e21d2c|OK | 6.2MiB/s|assets/uvr5_weights//HP2-人声vocals+非人声instrumentals.pth +#15 59.76 +#15 59.76 Status Legend: +#15 59.76 (OK):download completed. +#15 70.27 [#7cbdef 1.1MiB/60MiB(1%) CN:16 DL:3.0MiB ETA:19s] +#15 70.27 [#7cbdef 9.3MiB/60MiB(15%) CN:16 DL:6.8MiB ETA:7s] +#15 70.27 [#7cbdef 17MiB/60MiB(28%) CN:16 DL:7.4MiB ETA:5s] +#15 70.27 [#7cbdef 31MiB/60MiB(52%) CN:16 DL:9.3MiB ETA:3s] +#15 70.27 [#7cbdef 42MiB/60MiB(70%) CN:16 DL:9.7MiB ETA:1s] +#15 70.27 [#7cbdef 50MiB/60MiB(83%) CN:16 DL:9.3MiB ETA:1s] +#15 70.27 [#7cbdef 58MiB/60MiB(96%) CN:7 DL:9.1MiB] +#15 70.27 [#7cbdef 60MiB/60MiB(99%) CN:2 DL:8.1MiB] +#15 70.27 [#7cbdef 60MiB/60MiB(99%) CN:1 DL:7.1MiB] +#15 70.27 [#7cbdef 60MiB/60MiB(99%) CN:1 DL:6.4MiB] +#15 70.27 +#15 70.27 Download Results: +#15 70.27 gid |stat|avg speed |path/URI +#15 70.27 ======+====+===========+======================================================= +#15 70.27 7cbdef|OK | 6.2MiB/s|assets/uvr5_weights//HP5-主旋律人声vocals+其他instrumentals.pth +#15 70.27 +#15 70.27 Status Legend: +#15 70.27 (OK):download completed. +#15 90.98 [#be7665 1.1MiB/180MiB(0%) CN:16 DL:3.3MiB ETA:54s] +#15 90.98 [#be7665 9.0MiB/180MiB(4%) CN:16 DL:6.8MiB ETA:25s] +#15 90.98 [#be7665 20MiB/180MiB(11%) CN:16 DL:8.6MiB ETA:18s] +#15 90.98 [#be7665 30MiB/180MiB(16%) CN:16 DL:9.1MiB ETA:16s] +#15 90.98 [#be7665 43MiB/180MiB(23%) CN:16 DL:10MiB ETA:13s] +#15 90.98 [#be7665 49MiB/180MiB(27%) CN:16 DL:9.2MiB ETA:14s] +#15 90.98 [#be7665 58MiB/180MiB(32%) CN:16 DL:9.2MiB ETA:13s] +#15 90.98 [#be7665 69MiB/180MiB(38%) CN:16 DL:9.5MiB ETA:11s] +#15 90.98 [#be7665 80MiB/180MiB(44%) CN:16 DL:9.7MiB ETA:10s] +#15 90.98 [#be7665 90MiB/180MiB(50%) CN:16 DL:9.8MiB ETA:9s] +#15 90.98 [#be7665 100MiB/180MiB(55%) CN:16 DL:10MiB ETA:8s] +#15 90.98 [#be7665 111MiB/180MiB(61%) CN:16 DL:10MiB ETA:6s] +#15 90.98 [#be7665 123MiB/180MiB(68%) CN:16 DL:10MiB ETA:5s] +#15 90.98 [#be7665 134MiB/180MiB(74%) CN:16 DL:10MiB ETA:4s] +#15 90.98 [#be7665 146MiB/180MiB(80%) CN:16 DL:10MiB ETA:3s] +#15 90.98 [#be7665 156MiB/180MiB(86%) CN:16 DL:11MiB ETA:2s] +#15 90.98 [#be7665 168MiB/180MiB(93%) CN:16 DL:11MiB ETA:1s] +#15 90.98 [#be7665 176MiB/180MiB(97%) CN:9 DL:10MiB] +#15 90.98 [#be7665 179MiB/180MiB(99%) CN:2 DL:9.8MiB] +#15 90.98 [#be7665 180MiB/180MiB(99%) CN:1 DL:8.9MiB] +#15 90.98 +#15 90.98 Download Results: +#15 90.98 gid |stat|avg speed |path/URI +#15 90.98 ======+====+===========+======================================================= +#15 90.98 be7665|OK | 9.2MiB/s|assets/hubert/hubert_base.pt +#15 90.98 +#15 90.98 Status Legend: +#15 90.98 (OK):download completed. +#15 108.7 [#a11f34 1.2MiB/172MiB(0%) CN:16 DL:3.0MiB ETA:55s] +#15 108.7 [#a11f34 9.3MiB/172MiB(5%) CN:16 DL:6.8MiB ETA:23s] +#15 108.7 [#a11f34 17MiB/172MiB(9%) CN:16 DL:7.2MiB ETA:21s] +#15 108.7 [#a11f34 32MiB/172MiB(18%) CN:16 DL:9.6MiB ETA:14s] +#15 108.7 [#a11f34 44MiB/172MiB(25%) CN:16 DL:10MiB ETA:12s] +#15 108.7 [#a11f34 54MiB/172MiB(31%) CN:16 DL:10MiB ETA:11s] +#15 108.7 [#a11f34 64MiB/172MiB(37%) CN:16 DL:10MiB ETA:10s] +#15 108.7 [#a11f34 74MiB/172MiB(43%) CN:16 DL:10MiB ETA:9s] +#15 108.7 [#a11f34 86MiB/172MiB(49%) CN:16 DL:10MiB ETA:8s] +#15 108.7 [#a11f34 97MiB/172MiB(56%) CN:16 DL:10MiB ETA:7s] +#15 108.7 [#a11f34 107MiB/172MiB(62%) CN:16 DL:10MiB ETA:6s] +#15 108.7 [#a11f34 119MiB/172MiB(69%) CN:16 DL:11MiB ETA:4s] +#15 108.7 [#a11f34 129MiB/172MiB(75%) CN:16 DL:10MiB ETA:3s] +#15 108.7 [#a11f34 141MiB/172MiB(82%) CN:16 DL:10MiB ETA:2s] +#15 108.7 [#a11f34 152MiB/172MiB(88%) CN:16 DL:10MiB ETA:1s] +#15 108.7 [#a11f34 162MiB/172MiB(94%) CN:16 DL:11MiB] +#15 108.7 [#a11f34 171MiB/172MiB(99%) CN:4 DL:10MiB] +#15 108.7 +#15 108.7 Download Results: +#15 108.7 gid |stat|avg speed |path/URI +#15 108.7 ======+====+===========+======================================================= +#15 108.7 a11f34|OK | 10MiB/s|assets/rmvpe/rmvpe.pt +#15 108.7 +#15 108.7 Status Legend: +#15 108.7 (OK):download completed. +#15 143.9 [#365402 64KiB/344MiB(0%) CN:16 DL:1.1MiB ETA:5m4s] +#15 143.9 [#365402 4.7MiB/344MiB(1%) CN:16 DL:4.5MiB ETA:1m14s] +#15 143.9 [#365402 14MiB/344MiB(4%) CN:16 DL:6.9MiB ETA:47s] +#15 143.9 [#365402 26MiB/344MiB(7%) CN:16 DL:8.6MiB ETA:36s] +#15 143.9 [#365402 36MiB/344MiB(10%) CN:16 DL:9.1MiB ETA:33s] +#15 143.9 [#365402 48MiB/344MiB(14%) CN:16 DL:9.6MiB ETA:30s] +#15 143.9 [#365402 57MiB/344MiB(16%) CN:16 DL:9.5MiB ETA:29s] +#15 143.9 [#365402 69MiB/344MiB(20%) CN:16 DL:9.9MiB ETA:27s] +#15 143.9 [#365402 79MiB/344MiB(23%) CN:16 DL:9.9MiB ETA:26s] +#15 143.9 [#365402 89MiB/344MiB(25%) CN:16 DL:9.9MiB ETA:25s] +#15 143.9 [#365402 101MiB/344MiB(29%) CN:16 DL:10MiB ETA:24s] +#15 143.9 [#365402 112MiB/344MiB(32%) CN:16 DL:10MiB ETA:21s] +#15 143.9 [#365402 123MiB/344MiB(35%) CN:16 DL:11MiB ETA:20s] +#15 143.9 [#365402 135MiB/344MiB(39%) CN:16 DL:10MiB ETA:19s] +#15 143.9 [#365402 145MiB/344MiB(42%) CN:16 DL:11MiB ETA:18s] +#15 143.9 [#365402 157MiB/344MiB(45%) CN:16 DL:10MiB ETA:17s] +#15 143.9 [#365402 168MiB/344MiB(48%) CN:16 DL:11MiB ETA:15s] +#15 143.9 [#365402 179MiB/344MiB(52%) CN:16 DL:11MiB ETA:14s] +#15 143.9 [#365402 188MiB/344MiB(54%) CN:16 DL:11MiB ETA:14s] +#15 143.9 [#365402 200MiB/344MiB(58%) CN:16 DL:11MiB ETA:12s] +#15 143.9 [#365402 211MiB/344MiB(61%) CN:16 DL:11MiB ETA:11s] +#15 143.9 [#365402 223MiB/344MiB(64%) CN:16 DL:11MiB ETA:10s] +#15 143.9 [#365402 233MiB/344MiB(67%) CN:16 DL:11MiB ETA:10s] +#15 143.9 [#365402 244MiB/344MiB(70%) CN:16 DL:11MiB ETA:9s] +#15 143.9 [#365402 255MiB/344MiB(73%) CN:16 DL:11MiB ETA:8s] +#15 143.9 [#365402 266MiB/344MiB(77%) CN:16 DL:11MiB ETA:7s] +#15 143.9 [#365402 276MiB/344MiB(80%) CN:16 DL:10MiB ETA:6s] +#15 143.9 [#365402 287MiB/344MiB(83%) CN:16 DL:10MiB ETA:5s] +#15 143.9 [#365402 296MiB/344MiB(86%) CN:16 DL:10MiB ETA:4s] +#15 143.9 [#365402 308MiB/344MiB(89%) CN:16 DL:10MiB ETA:3s] +#15 143.9 [#365402 319MiB/344MiB(92%) CN:16 DL:10MiB ETA:2s] +#15 143.9 [#365402 331MiB/344MiB(96%) CN:16 DL:10MiB ETA:1s] +#15 143.9 [#365402 341MiB/344MiB(98%) CN:8 DL:10MiB] +#15 143.9 [#365402 344MiB/344MiB(99%) CN:1 DL:10MiB] +#15 143.9 +#15 143.9 Download Results: +#15 143.9 gid |stat|avg speed |path/URI +#15 143.9 ======+====+===========+======================================================= +#15 143.9 365402|OK | 10MiB/s|assets/rmvpe//rmvpe.onnx +#15 143.9 +#15 143.9 Status Legend: +#15 143.9 (OK):download completed. +#15 143.9 RVC pre-models downloaded. +#15 DONE 144.1s + +#16 [12/14] RUN chmod +x *.sh +#16 DONE 0.4s + +#17 [13/14] COPY entrypoint_rvc.sh /entrypoint_rvc.sh +#17 DONE 0.1s + +#18 [14/14] RUN chmod +x /entrypoint_rvc.sh +#18 DONE 0.5s + +#19 exporting to image +#19 exporting layers +#19 exporting layers 7.4s done +#19 writing image sha256:8059e06bc615570698abba5a23913c7a4ef0549580f36eaec824452c4d3102e0 done +#19 naming to docker.io/library/rvc_webui_rocm:5.4.2 0.0s done +#19 DONE 7.5s diff --git a/rocm_5.4/logs/build_rvc1.log b/rocm_5.4/logs/build_rvc1.log new file mode 100644 index 000000000..ebf2ac8a1 --- /dev/null +++ b/rocm_5.4/logs/build_rvc1.log @@ -0,0 +1,64 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 9.28kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/library/rocm542_gfx803_base:5.4.2 +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/14] FROM docker.io/library/rocm542_gfx803_base:5.4.2 +#4 DONE 0.0s + +#5 [internal] load build context +#5 transferring context: 1.57kB done +#5 DONE 0.0s + +#6 [ 8/14] RUN echo "** Installing RVC dependencies from main requirements.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements.txt -c .venv/constraints.txt +#6 CACHED + +#7 [ 3/14] WORKDIR /app +#7 CACHED + +#8 [ 9/14] RUN echo "** Installing RVC specific dependencies from requirements-amd.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements-amd.txt -c .venv/constraints.txt +#8 CACHED + +#9 [10/14] RUN echo "** Installing other essential dependencies into venv **" && ./.venv/bin/python -m pip install --no-cache-dir -c .venv/constraints.txt Cython scipy librosa==0.10.2 pydub>=0.25.1 soundfile>=0.12.1 ffmpeg-python>=0.2.0 tensorboardX Jinja2>=3.1.2 json5 Markdown matplotlib>=3.7.0 matplotlib-inline>=0.1.3 praat-parselmouth>=0.4.2 Pillow>=9.1.1 resampy>=0.4.2 scikit-learn tensorboard tqdm>=4.63.1 tornado>=6.1 Werkzeug>=2.2.3 uc-micro-py>=1.0.1 sympy>=1.11.1 tabulate>=0.8.10 PyYAML>=6.0 pyasn1>=0.4.8 pyasn1-modules>=0.2.8 fsspec>=2022.11.0 absl-py>=1.2.0 audioread uvicorn>=0.21.1 colorama>=0.4.5 httpx fastapi==0.88 ffmpy==0.3.1 python-dotenv>=1.0.0 av torchcrepe==0.0.23 torchfcpe joblib==1.1.0 numba==0.56.4 llvmlite==0.39.0 fairseq==0.12.2 faiss-cpu==1.7.3 gradio==3.34.0 pyworld==0.3.2 onnxruntime && echo "Essential dependencies installed into venv." +#9 CACHED + +#10 [ 6/14] RUN echo "** Creating constraints.txt **" && export PATH="/opt/rocm/bin:/opt/rocm/hip/bin:/root/.nvm/versions/node/v22.9.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" && PYTORCH_WHEEL_FILE_PATH=$(cat /opt/pytorch_wheel_name.txt) && TORCHVISION_WHEEL_FILE_PATH=$(cat /opt/torchvision_wheel_name.txt) && TORCHAUDIO_WHEEL_FILE_PATH=$(cat /opt/torchaudio_wheel_name.txt) && echo "torch @ file://${PYTORCH_WHEEL_FILE_PATH}" > .venv/constraints.txt && echo "torchvision @ file://${TORCHVISION_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "torchaudio @ file://${TORCHAUDIO_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "numpy==1.23.5" >> .venv/constraints.txt && echo "protobuf==4.25.3" >> .venv/constraints.txt && echo "matplotlib" >> .venv/constraints.txt && echo "joblib==1.1.0" >> .venv/constraints.txt && echo "numba==0.56.4" >> .venv/constraints.txt && echo "llvmlite==0.39.0" >> .venv/constraints.txt && echo "fairseq==0.12.2" >> .venv/constraints.txt && echo "faiss-cpu==1.7.3" >> .venv/constraints.txt && echo "gradio==3.34.0" >> .venv/constraints.txt && echo "pyworld==0.3.2" >> .venv/constraints.txt && echo "torchcrepe==0.0.23" >> .venv/constraints.txt && echo "torchfcpe" >> .venv/constraints.txt && echo "Contents of constraints.txt:" && cat .venv/constraints.txt +#10 CACHED + +#11 [ 5/14] RUN python3 -m venv .venv # .venv /app altında oluşacak +#11 CACHED + +#12 [ 2/14] RUN apt-get update -y && apt-get install -y --no-install-recommends aria2 git wget curl ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/* +#12 CACHED + +#13 [ 7/14] RUN echo "Processing RVC requirements files" && echo "Current directory: $(pwd)" && ls -la && if [ ! -f "requirements.txt" ]; then echo "ERROR: requirements.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && if [ ! -f "requirements-amd.txt" ]; then echo "ERROR: requirements-amd.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && echo "--- Original requirements.txt ---" && cat requirements.txt && echo "--- End ---" && echo "--- Original requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\s*(==|>=)?/d' requirements.txt && sed -i '/^fairseq @ /d' requirements.txt && sed -i '/^extension_/d' requirements.txt && sed -i "/; sys_platform 'win32'/d" requirements.txt && sed -i "/; sys_platform 'darwin'/d" requirements.txt && echo "--- Cleaned main requirements.txt ---" && cat requirements.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\\s*(==|>=)?/d' requirements-amd.txt && sed -i '/^tensorflow-rocm/d' requirements-amd.txt && sed -i '/^joblib/d' requirements-amd.txt && sed -i '/^numba/d' requirements-amd.txt && sed -i '/^numpy/d' requirements-amd.txt && sed -i '/^scipy/d' requirements-amd.txt && sed -i '/^librosa/d' requirements-amd.txt && sed -i '/^llvmlite/d' requirements-amd.txt && sed -i '/^fairseq/d' requirements-amd.txt && sed -i '/^faiss-cpu/d' requirements-amd.txt && sed -i '/^gradio/d' requirements-amd.txt && sed -i '/^Cython/d' requirements-amd.txt && sed -i '/^pyworld/d' requirements-amd.txt && sed -i '/^torchcrepe/d' requirements-amd.txt && sed -i '/^torchfcpe/d' requirements-amd.txt && sed -i '/^onnxruntime/d' requirements-amd.txt && sed -i "/; sys_platform 'darwin'/d" requirements-amd.txt && echo "--- Cleaned requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" +#13 CACHED + +#14 [11/14] RUN echo "** Downloading RVC pre-models **" && mkdir -p assets/pretrained_v2 assets/uvr5_weights assets/hubert assets/rmvpe && aria2c --console-log-level=error -c -x 16 -s 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/D40k.pth -d assets/pretrained_v2/ -o D40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/G40k.pth -d assets/pretrained_v2/ -o G40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0D40k.pth -d assets/pretrained_v2/ -o f0D40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0G40k.pth -d assets/pretrained_v2/ -o f0G40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d assets/uvr5_weights/ -o HP2-人声vocals+非人声instrumentals.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d assets/uvr5_weights/ -o HP5-主旋律人声vocals+其他instrumentals.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d assets/hubert -o hubert_base.pt && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d assets/rmvpe -o rmvpe.pt && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.onnx -d assets/rmvpe/ -o rmvpe.onnx && echo "RVC pre-models downloaded." +#14 CACHED + +#15 [ 4/14] RUN echo "Cloning RVC repository..." && git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git . && echo "RVC repository cloned into /app." +#15 CACHED + +#16 [12/14] RUN chmod +x *.sh +#16 CACHED + +#17 [13/14] COPY entrypoint_rvc.sh /entrypoint_rvc.sh +#17 DONE 0.0s + +#18 [14/14] RUN chmod +x /entrypoint_rvc.sh +#18 DONE 0.3s + +#19 exporting to image +#19 exporting layers 0.0s done +#19 writing image sha256:7943cf062bf89b9e25366aa740660fb44f0a634b3523c02263fc65067409e452 done +#19 naming to docker.io/library/rvc_webui_rocm:5.4.2 done +#19 DONE 0.1s diff --git a/rocm_5.4/logs/build_rvc12.log b/rocm_5.4/logs/build_rvc12.log new file mode 100644 index 000000000..d9a23e42d --- /dev/null +++ b/rocm_5.4/logs/build_rvc12.log @@ -0,0 +1,64 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 9.28kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/library/rocm542_gfx803_base:5.4.2 +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/14] FROM docker.io/library/rocm542_gfx803_base:5.4.2 +#4 DONE 0.0s + +#5 [internal] load build context +#5 transferring context: 1.13kB done +#5 DONE 0.0s + +#6 [ 9/14] RUN echo "** Installing RVC specific dependencies from requirements-amd.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements-amd.txt -c .venv/constraints.txt +#6 CACHED + +#7 [ 5/14] RUN python3 -m venv .venv # .venv /app altında oluşacak +#7 CACHED + +#8 [10/14] RUN echo "** Installing other essential dependencies into venv **" && ./.venv/bin/python -m pip install --no-cache-dir -c .venv/constraints.txt Cython scipy librosa==0.10.2 pydub>=0.25.1 soundfile>=0.12.1 ffmpeg-python>=0.2.0 tensorboardX Jinja2>=3.1.2 json5 Markdown matplotlib>=3.7.0 matplotlib-inline>=0.1.3 praat-parselmouth>=0.4.2 Pillow>=9.1.1 resampy>=0.4.2 scikit-learn tensorboard tqdm>=4.63.1 tornado>=6.1 Werkzeug>=2.2.3 uc-micro-py>=1.0.1 sympy>=1.11.1 tabulate>=0.8.10 PyYAML>=6.0 pyasn1>=0.4.8 pyasn1-modules>=0.2.8 fsspec>=2022.11.0 absl-py>=1.2.0 audioread uvicorn>=0.21.1 colorama>=0.4.5 httpx fastapi==0.88 ffmpy==0.3.1 python-dotenv>=1.0.0 av torchcrepe==0.0.23 torchfcpe joblib==1.1.0 numba==0.56.4 llvmlite==0.39.0 fairseq==0.12.2 faiss-cpu==1.7.3 gradio==3.34.0 pyworld==0.3.2 onnxruntime && echo "Essential dependencies installed into venv." +#8 CACHED + +#9 [ 3/14] WORKDIR /app +#9 CACHED + +#10 [ 7/14] RUN echo "Processing RVC requirements files" && echo "Current directory: $(pwd)" && ls -la && if [ ! -f "requirements.txt" ]; then echo "ERROR: requirements.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && if [ ! -f "requirements-amd.txt" ]; then echo "ERROR: requirements-amd.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && echo "--- Original requirements.txt ---" && cat requirements.txt && echo "--- End ---" && echo "--- Original requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\s*(==|>=)?/d' requirements.txt && sed -i '/^fairseq @ /d' requirements.txt && sed -i '/^extension_/d' requirements.txt && sed -i "/; sys_platform 'win32'/d" requirements.txt && sed -i "/; sys_platform 'darwin'/d" requirements.txt && echo "--- Cleaned main requirements.txt ---" && cat requirements.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\\s*(==|>=)?/d' requirements-amd.txt && sed -i '/^tensorflow-rocm/d' requirements-amd.txt && sed -i '/^joblib/d' requirements-amd.txt && sed -i '/^numba/d' requirements-amd.txt && sed -i '/^numpy/d' requirements-amd.txt && sed -i '/^scipy/d' requirements-amd.txt && sed -i '/^librosa/d' requirements-amd.txt && sed -i '/^llvmlite/d' requirements-amd.txt && sed -i '/^fairseq/d' requirements-amd.txt && sed -i '/^faiss-cpu/d' requirements-amd.txt && sed -i '/^gradio/d' requirements-amd.txt && sed -i '/^Cython/d' requirements-amd.txt && sed -i '/^pyworld/d' requirements-amd.txt && sed -i '/^torchcrepe/d' requirements-amd.txt && sed -i '/^torchfcpe/d' requirements-amd.txt && sed -i '/^onnxruntime/d' requirements-amd.txt && sed -i "/; sys_platform 'darwin'/d" requirements-amd.txt && echo "--- Cleaned requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" +#10 CACHED + +#11 [11/14] RUN echo "** Downloading RVC pre-models **" && mkdir -p assets/pretrained_v2 assets/uvr5_weights assets/hubert assets/rmvpe && aria2c --console-log-level=error -c -x 16 -s 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/D40k.pth -d assets/pretrained_v2/ -o D40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/G40k.pth -d assets/pretrained_v2/ -o G40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0D40k.pth -d assets/pretrained_v2/ -o f0D40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/pretrained_v2/f0G40k.pth -d assets/pretrained_v2/ -o f0G40k.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP2-人声vocals+非人声instrumentals.pth -d assets/uvr5_weights/ -o HP2-人声vocals+非人声instrumentals.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/uvr5_weights/HP5-主旋律人声vocals+其他instrumentals.pth -d assets/uvr5_weights/ -o HP5-主旋律人声vocals+其他instrumentals.pth && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/hubert_base.pt -d assets/hubert -o hubert_base.pt && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.pt -d assets/rmvpe -o rmvpe.pt && aria2c --console-log-level=error -c -x 16 -s 16 -k 1M https://huggingface.co/lj1995/VoiceConversionWebUI/resolve/main/rmvpe.onnx -d assets/rmvpe/ -o rmvpe.onnx && echo "RVC pre-models downloaded." +#11 CACHED + +#12 [ 6/14] RUN echo "** Creating constraints.txt **" && export PATH="/opt/rocm/bin:/opt/rocm/hip/bin:/root/.nvm/versions/node/v22.9.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" && PYTORCH_WHEEL_FILE_PATH=$(cat /opt/pytorch_wheel_name.txt) && TORCHVISION_WHEEL_FILE_PATH=$(cat /opt/torchvision_wheel_name.txt) && TORCHAUDIO_WHEEL_FILE_PATH=$(cat /opt/torchaudio_wheel_name.txt) && echo "torch @ file://${PYTORCH_WHEEL_FILE_PATH}" > .venv/constraints.txt && echo "torchvision @ file://${TORCHVISION_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "torchaudio @ file://${TORCHAUDIO_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "numpy==1.23.5" >> .venv/constraints.txt && echo "protobuf==4.25.3" >> .venv/constraints.txt && echo "matplotlib" >> .venv/constraints.txt && echo "joblib==1.1.0" >> .venv/constraints.txt && echo "numba==0.56.4" >> .venv/constraints.txt && echo "llvmlite==0.39.0" >> .venv/constraints.txt && echo "fairseq==0.12.2" >> .venv/constraints.txt && echo "faiss-cpu==1.7.3" >> .venv/constraints.txt && echo "gradio==3.34.0" >> .venv/constraints.txt && echo "pyworld==0.3.2" >> .venv/constraints.txt && echo "torchcrepe==0.0.23" >> .venv/constraints.txt && echo "torchfcpe" >> .venv/constraints.txt && echo "Contents of constraints.txt:" && cat .venv/constraints.txt +#12 CACHED + +#13 [ 2/14] RUN apt-get update -y && apt-get install -y --no-install-recommends aria2 git wget curl ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/* +#13 CACHED + +#14 [ 4/14] RUN echo "Cloning RVC repository..." && git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git . && echo "RVC repository cloned into /app." +#14 CACHED + +#15 [ 8/14] RUN echo "** Installing RVC dependencies from main requirements.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements.txt -c .venv/constraints.txt +#15 CACHED + +#16 [12/14] RUN chmod +x *.sh +#16 CACHED + +#17 [13/14] COPY entrypoint_rvc.sh /entrypoint_rvc.sh +#17 DONE 0.1s + +#18 [14/14] RUN chmod +x /entrypoint_rvc.sh +#18 DONE 0.3s + +#19 exporting to image +#19 exporting layers 0.1s done +#19 writing image sha256:7af77c4a8e48ca026e3f9c6dfd401f1f38e1a5c81f7e5beb32ac077750055aca done +#19 naming to docker.io/library/rvc_webui_rocm:5.4.2 done +#19 DONE 0.1s diff --git a/rocm_5.4/logs/build_rvc13.log b/rocm_5.4/logs/build_rvc13.log new file mode 100644 index 000000000..a54d370e5 --- /dev/null +++ b/rocm_5.4/logs/build_rvc13.log @@ -0,0 +1,61 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 7.24kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/library/rocm542_gfx803_base:5.4.2 +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/13] FROM docker.io/library/rocm542_gfx803_base:5.4.2 +#4 DONE 0.0s + +#5 [internal] load build context +#5 transferring context: 3.76kB done +#5 DONE 0.0s + +#6 [10/13] RUN echo "** Installing other essential dependencies into venv **" && ./.venv/bin/python -m pip install --no-cache-dir -c .venv/constraints.txt Cython scipy librosa==0.10.2 pydub>=0.25.1 soundfile>=0.12.1 ffmpeg-python>=0.2.0 tensorboardX Jinja2>=3.1.2 json5 Markdown matplotlib>=3.7.0 matplotlib-inline>=0.1.3 praat-parselmouth>=0.4.2 Pillow>=9.1.1 resampy>=0.4.2 scikit-learn tensorboard tqdm>=4.63.1 tornado>=6.1 Werkzeug>=2.2.3 uc-micro-py>=1.0.1 sympy>=1.11.1 tabulate>=0.8.10 PyYAML>=6.0 pyasn1>=0.4.8 pyasn1-modules>=0.2.8 fsspec>=2022.11.0 absl-py>=1.2.0 audioread uvicorn>=0.21.1 colorama>=0.4.5 httpx fastapi==0.88 ffmpy==0.3.1 python-dotenv>=1.0.0 av torchcrepe==0.0.23 torchfcpe joblib==1.1.0 numba==0.56.4 llvmlite==0.39.0 fairseq==0.12.2 faiss-cpu==1.7.3 gradio==3.34.0 pyworld==0.3.2 onnxruntime && echo "Essential dependencies installed into venv." +#6 CACHED + +#7 [ 2/13] RUN apt-get update -y && apt-get install -y --no-install-recommends aria2 git wget curl ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/* +#7 CACHED + +#8 [ 6/13] RUN echo "** Creating constraints.txt **" && export PATH="/opt/rocm/bin:/opt/rocm/hip/bin:/root/.nvm/versions/node/v22.9.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" && PYTORCH_WHEEL_FILE_PATH=$(cat /opt/pytorch_wheel_name.txt) && TORCHVISION_WHEEL_FILE_PATH=$(cat /opt/torchvision_wheel_name.txt) && TORCHAUDIO_WHEEL_FILE_PATH=$(cat /opt/torchaudio_wheel_name.txt) && echo "torch @ file://${PYTORCH_WHEEL_FILE_PATH}" > .venv/constraints.txt && echo "torchvision @ file://${TORCHVISION_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "torchaudio @ file://${TORCHAUDIO_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "numpy==1.23.5" >> .venv/constraints.txt && echo "protobuf==4.25.3" >> .venv/constraints.txt && echo "matplotlib" >> .venv/constraints.txt && echo "joblib==1.1.0" >> .venv/constraints.txt && echo "numba==0.56.4" >> .venv/constraints.txt && echo "llvmlite==0.39.0" >> .venv/constraints.txt && echo "fairseq==0.12.2" >> .venv/constraints.txt && echo "faiss-cpu==1.7.3" >> .venv/constraints.txt && echo "gradio==3.34.0" >> .venv/constraints.txt && echo "pyworld==0.3.2" >> .venv/constraints.txt && echo "torchcrepe==0.0.23" >> .venv/constraints.txt && echo "torchfcpe" >> .venv/constraints.txt && echo "Contents of constraints.txt:" && cat .venv/constraints.txt +#8 CACHED + +#9 [ 3/13] WORKDIR /app +#9 CACHED + +#10 [ 9/13] RUN echo "** Installing RVC specific dependencies from requirements-amd.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements-amd.txt -c .venv/constraints.txt +#10 CACHED + +#11 [ 4/13] RUN echo "Cloning RVC repository..." && git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git . && echo "RVC repository cloned into /app." +#11 CACHED + +#12 [ 8/13] RUN echo "** Installing RVC dependencies from main requirements.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements.txt -c .venv/constraints.txt +#12 CACHED + +#13 [ 5/13] RUN python3 -m venv .venv # .venv /app altında oluşacak +#13 CACHED + +#14 [ 7/13] RUN echo "Processing RVC requirements files" && echo "Current directory: $(pwd)" && ls -la && if [ ! -f "requirements.txt" ]; then echo "ERROR: requirements.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && if [ ! -f "requirements-amd.txt" ]; then echo "ERROR: requirements-amd.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && echo "--- Original requirements.txt ---" && cat requirements.txt && echo "--- End ---" && echo "--- Original requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\s*(==|>=)?/d' requirements.txt && sed -i '/^fairseq @ /d' requirements.txt && sed -i '/^extension_/d' requirements.txt && sed -i "/; sys_platform 'win32'/d" requirements.txt && sed -i "/; sys_platform 'darwin'/d" requirements.txt && echo "--- Cleaned main requirements.txt ---" && cat requirements.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\\s*(==|>=)?/d' requirements-amd.txt && sed -i '/^tensorflow-rocm/d' requirements-amd.txt && sed -i '/^joblib/d' requirements-amd.txt && sed -i '/^numba/d' requirements-amd.txt && sed -i '/^numpy/d' requirements-amd.txt && sed -i '/^scipy/d' requirements-amd.txt && sed -i '/^librosa/d' requirements-amd.txt && sed -i '/^llvmlite/d' requirements-amd.txt && sed -i '/^fairseq/d' requirements-amd.txt && sed -i '/^faiss-cpu/d' requirements-amd.txt && sed -i '/^gradio/d' requirements-amd.txt && sed -i '/^Cython/d' requirements-amd.txt && sed -i '/^pyworld/d' requirements-amd.txt && sed -i '/^torchcrepe/d' requirements-amd.txt && sed -i '/^torchfcpe/d' requirements-amd.txt && sed -i '/^onnxruntime/d' requirements-amd.txt && sed -i "/; sys_platform 'darwin'/d" requirements-amd.txt && echo "--- Cleaned requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" +#14 CACHED + +#15 [11/13] RUN chmod +x *.sh +#15 CACHED + +#16 [12/13] COPY entrypoint_rvc.sh /entrypoint_rvc.sh +#16 DONE 0.1s + +#17 [13/13] RUN chmod +x /entrypoint_rvc.sh +#17 DONE 0.3s + +#18 exporting to image +#18 exporting layers 0.1s done +#18 writing image sha256:a8d8cb25725b02944210726bd0e281a71fc10aa5329eec35d623e0791ca2a0ae done +#18 naming to docker.io/library/rvc_webui_rocm:5.4.2 done +#18 DONE 0.1s diff --git a/rocm_5.4/logs/build_rvc14.log b/rocm_5.4/logs/build_rvc14.log new file mode 100644 index 000000000..d2974ef24 --- /dev/null +++ b/rocm_5.4/logs/build_rvc14.log @@ -0,0 +1,828 @@ +#0 building with "default" instance using docker driver + +#1 [internal] load build definition from Dockerfile +#1 transferring dockerfile: 7.25kB done +#1 DONE 0.0s + +#2 [internal] load metadata for docker.io/library/rocm542_gfx803_base:5.4.2 +#2 DONE 0.0s + +#3 [internal] load .dockerignore +#3 transferring context: 2B done +#3 DONE 0.0s + +#4 [ 1/13] FROM docker.io/library/rocm542_gfx803_base:5.4.2 +#4 DONE 0.0s + +#5 [ 3/13] WORKDIR /app +#5 CACHED + +#6 [ 4/13] RUN echo "Cloning RVC repository..." && git clone https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git . && echo "RVC repository cloned into /app." +#6 CACHED + +#7 [ 2/13] RUN apt-get update -y && apt-get install -y --no-install-recommends aria2 git wget curl ffmpeg && apt-get clean && rm -rf /var/lib/apt/lists/* +#7 CACHED + +#8 [ 5/13] RUN python3 -m venv .venv # .venv /app altında oluşacak +#8 CACHED + +#9 [internal] load build context +#9 transferring context: 39B done +#9 DONE 0.0s + +#10 [ 6/13] RUN echo "** Creating constraints.txt **" && export PATH="/opt/rocm/bin:/opt/rocm/hip/bin:/root/.nvm/versions/node/v22.9.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" && PYTORCH_WHEEL_FILE_PATH=$(cat /opt/pytorch_wheel_name.txt) && TORCHVISION_WHEEL_FILE_PATH=$(cat /opt/torchvision_wheel_name.txt) && TORCHAUDIO_WHEEL_FILE_PATH=$(cat /opt/torchaudio_wheel_name.txt) && echo "torch @ file://${PYTORCH_WHEEL_FILE_PATH}" > .venv/constraints.txt && echo "torchvision @ file://${TORCHVISION_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "torchaudio @ file://${TORCHAUDIO_WHEEL_FILE_PATH}" >> .venv/constraints.txt && echo "numpy==1.23.5" >> .venv/constraints.txt && echo "protobuf==4.25.3" >> .venv/constraints.txt && echo "matplotlib==3.7.2" >> .venv/constraints.txt && echo "joblib==1.1.0" >> .venv/constraints.txt && echo "numba==0.56.4" >> .venv/constraints.txt && echo "llvmlite==0.39.0" >> .venv/constraints.txt && echo "fairseq==0.12.2" >> .venv/constraints.txt && echo "faiss-cpu==1.7.3" >> .venv/constraints.txt && echo "gradio==3.34.0" >> .venv/constraints.txt && echo "pyworld==0.3.2" >> .venv/constraints.txt && echo "torchcrepe==0.0.23" >> .venv/constraints.txt && echo "torchfcpe" >> .venv/constraints.txt && echo "Contents of constraints.txt:" && cat .venv/constraints.txt +#10 0.271 ** Creating constraints.txt ** +#10 0.274 Contents of constraints.txt: +#10 0.274 torch @ file:///pytorch/dist/torch-2.0.0a0+gite9ebda2-cp310-cp310-linux_x86_64.whl +#10 0.274 torchvision @ file:///vision/dist/torchvision-0.15.2a0+fa99a53-cp310-cp310-linux_x86_64.whl +#10 0.274 torchaudio @ file:///audio/dist/torchaudio-2.0.2+31de77d-cp310-cp310-linux_x86_64.whl +#10 0.274 numpy==1.23.5 +#10 0.274 protobuf==4.25.3 +#10 0.274 matplotlib==3.7.2 +#10 0.274 joblib==1.1.0 +#10 0.274 numba==0.56.4 +#10 0.274 llvmlite==0.39.0 +#10 0.274 fairseq==0.12.2 +#10 0.274 faiss-cpu==1.7.3 +#10 0.274 gradio==3.34.0 +#10 0.274 pyworld==0.3.2 +#10 0.274 torchcrepe==0.0.23 +#10 0.274 torchfcpe +#10 DONE 0.3s + +#11 [ 7/13] RUN echo "Processing RVC requirements files" && echo "Current directory: $(pwd)" && ls -la && if [ ! -f "requirements.txt" ]; then echo "ERROR: requirements.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && if [ ! -f "requirements-amd.txt" ]; then echo "ERROR: requirements-amd.txt NOT FOUND in $(pwd)" >&2; exit 1; fi && echo "--- Original requirements.txt ---" && cat requirements.txt && echo "--- End ---" && echo "--- Original requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\s*(==|>=)?/d' requirements.txt && sed -i '/^fairseq @ /d' requirements.txt && sed -i '/^extension_/d' requirements.txt && sed -i "/; sys_platform 'win32'/d" requirements.txt && sed -i "/; sys_platform 'darwin'/d" requirements.txt && echo "--- Cleaned main requirements.txt ---" && cat requirements.txt && echo "--- End ---" && sed -i -E '/^torch(vision|audio)?\\s*(==|>=)?/d' requirements-amd.txt && sed -i '/^tensorflow-rocm/d' requirements-amd.txt && sed -i '/^joblib/d' requirements-amd.txt && sed -i '/^numba/d' requirements-amd.txt && sed -i '/^numpy/d' requirements-amd.txt && sed -i '/^scipy/d' requirements-amd.txt && sed -i '/^librosa/d' requirements-amd.txt && sed -i '/^llvmlite/d' requirements-amd.txt && sed -i '/^fairseq/d' requirements-amd.txt && sed -i '/^faiss-cpu/d' requirements-amd.txt && sed -i '/^gradio/d' requirements-amd.txt && sed -i '/^Cython/d' requirements-amd.txt && sed -i '/^pyworld/d' requirements-amd.txt && sed -i '/^torchcrepe/d' requirements-amd.txt && sed -i '/^torchfcpe/d' requirements-amd.txt && sed -i '/^onnxruntime/d' requirements-amd.txt && sed -i "/; sys_platform 'darwin'/d" requirements-amd.txt && echo "--- Cleaned requirements-amd.txt ---" && cat requirements-amd.txt && echo "--- End ---" +#11 0.346 Processing RVC requirements files +#11 0.346 Current directory: /app +#11 0.348 total 756 +#11 0.348 drwxr-xr-x 1 root root 4096 May 15 17:30 . +#11 0.348 drwxr-xr-x 1 root root 4096 May 16 07:11 .. +#11 0.348 -rw-r--r-- 1 root root 277 May 15 17:30 .env +#11 0.348 drwxr-xr-x 8 root root 4096 May 15 17:30 .git +#11 0.348 drwxr-xr-x 3 root root 4096 May 15 17:30 .github +#11 0.348 -rw-r--r-- 1 root root 349 May 15 17:30 .gitignore +#11 0.348 drwxr-xr-x 1 root root 4096 May 16 07:11 .venv +#11 0.348 -rw-r--r-- 1 root root 776 May 15 17:30 CONTRIBUTING.md +#11 0.348 -rw-r--r-- 1 root root 2644 May 15 17:30 Dockerfile +#11 0.348 -rw-r--r-- 1 root root 1142 May 15 17:30 LICENSE +#11 0.348 -rw-r--r-- 1 root root 1986 May 15 17:30 MIT协议暨相关引用库协议 +#11 0.348 -rw-r--r-- 1 root root 8914 May 15 17:30 README.md +#11 0.348 -rw-r--r-- 1 root root 15917 May 15 17:30 Retrieval_based_Voice_Conversion_WebUI.ipynb +#11 0.348 -rw-r--r-- 1 root root 18907 May 15 17:30 Retrieval_based_Voice_Conversion_WebUI_v2.ipynb +#11 0.348 -rw-r--r-- 1 root root 19023 May 15 17:30 api_231006.py +#11 0.348 -rw-r--r-- 1 root root 22181 May 15 17:30 api_240604.py +#11 0.348 drwxr-xr-x 9 root root 4096 May 15 17:30 assets +#11 0.348 drwxr-xr-x 5 root root 4096 May 15 17:30 configs +#11 0.348 -rw-r--r-- 1 root root 482 May 15 17:30 docker-compose.yml +#11 0.348 drwxr-xr-x 9 root root 4096 May 15 17:30 docs +#11 0.348 -rw-r--r-- 1 root root 5871 May 15 17:30 environment_dml.yaml +#11 0.348 -rw-r--r-- 1 root root 70 May 15 17:30 go-realtime-gui-dml.bat +#11 0.348 -rw-r--r-- 1 root root 37 May 15 17:30 go-realtime-gui.bat +#11 0.348 -rw-r--r-- 1 root root 83 May 15 17:30 go-web-dml.bat +#11 0.348 -rw-r--r-- 1 root root 77 May 15 17:30 go-web.bat +#11 0.348 -rw-r--r-- 1 root root 48651 May 15 17:30 gui_v1.py +#11 0.348 drwxr-xr-x 3 root root 4096 May 15 17:30 i18n +#11 0.348 drwxr-xr-x 4 root root 4096 May 15 17:30 infer +#11 0.348 -rw-r--r-- 1 root root 64230 May 15 17:30 infer-web.py +#11 0.348 drwxr-xr-x 3 root root 4096 May 15 17:30 logs +#11 0.348 -rw-r--r-- 1 root root 414084 May 15 17:30 poetry.lock +#11 0.348 -rw-r--r-- 1 root root 1306 May 15 17:30 pyproject.toml +#11 0.348 -rw-r--r-- 1 root root 713 May 15 17:30 requirements-amd.txt +#11 0.348 -rw-r--r-- 1 root root 689 May 15 17:30 requirements-dml.txt +#11 0.348 -rw-r--r-- 1 root root 1102 May 15 17:30 requirements-ipex.txt +#11 0.348 -rw-r--r-- 1 root root 757 May 15 17:30 requirements-py311.txt +#11 0.348 -rw-r--r-- 1 root root 573 May 15 17:30 requirements-win-for-realtime_vc_gui-dml.txt +#11 0.348 -rw-r--r-- 1 root root 552 May 15 17:30 requirements-win-for-realtime_vc_gui.txt +#11 0.348 -rw-r--r-- 1 root root 754 May 15 17:30 requirements.txt +#11 0.348 -rwxr-xr-x 1 root root 1807 May 15 17:30 run.sh +#11 0.348 drwxr-xr-x 4 root root 4096 May 15 17:30 tools +#11 0.348 -rwxr-xr-x 1 root root 35 May 15 17:30 venv.sh +#11 0.348 --- Original requirements.txt --- +#11 0.349 aria2 +#11 0.349 joblib>=1.1.0 +#11 0.349 numba==0.56.4 +#11 0.349 numpy==1.23.5 +#11 0.349 scipy +#11 0.349 librosa==0.9.1 +#11 0.349 llvmlite==0.39.0 +#11 0.349 fairseq==0.12.2 +#11 0.349 faiss-cpu==1.7.3 +#11 0.349 gradio==3.34.0 +#11 0.349 Cython +#11 0.349 pydub>=0.25.1 +#11 0.349 soundfile>=0.12.1 +#11 0.349 ffmpeg-python>=0.2.0 +#11 0.349 tensorboardX +#11 0.349 Jinja2>=3.1.2 +#11 0.349 json5 +#11 0.349 Markdown +#11 0.349 matplotlib>=3.7.0 +#11 0.349 matplotlib-inline>=0.1.3 +#11 0.349 praat-parselmouth>=0.4.2 +#11 0.349 Pillow>=9.1.1 +#11 0.349 resampy>=0.4.2 +#11 0.349 scikit-learn +#11 0.349 tensorboard +#11 0.349 tqdm>=4.63.1 +#11 0.349 tornado>=6.1 +#11 0.349 Werkzeug>=2.2.3 +#11 0.349 uc-micro-py>=1.0.1 +#11 0.349 sympy>=1.11.1 +#11 0.349 tabulate>=0.8.10 +#11 0.349 PyYAML>=6.0 +#11 0.349 pyasn1>=0.4.8 +#11 0.349 pyasn1-modules>=0.2.8 +#11 0.349 fsspec>=2022.11.0 +#11 0.349 absl-py>=1.2.0 +#11 0.349 audioread +#11 0.349 uvicorn>=0.21.1 +#11 0.349 colorama>=0.4.5 +#11 0.349 pyworld==0.3.2 +#11 0.349 httpx +#11 0.349 onnxruntime; sys_platform == 'darwin' +#11 0.349 onnxruntime-gpu; sys_platform != 'darwin' +#11 0.349 torchcrepe==0.0.20 +#11 0.349 fastapi==0.88 +#11 0.349 torchfcpe +#11 0.349 ffmpy==0.3.1 +#11 0.349 python-dotenv>=1.0.0 +#11 0.349 av +#11 0.349 --- End --- +#11 0.349 --- Original requirements-amd.txt --- +#11 0.349 tensorflow-rocm +#11 0.349 joblib>=1.1.0 +#11 0.349 numba==0.56.4 +#11 0.349 numpy==1.23.5 +#11 0.349 scipy +#11 0.349 librosa==0.10.2 +#11 0.349 llvmlite==0.39.0 +#11 0.349 fairseq==0.12.2 +#11 0.349 faiss-cpu==1.7.3 +#11 0.349 gradio==3.34.0 +#11 0.349 Cython +#11 0.349 pydub>=0.25.1 +#11 0.349 soundfile>=0.12.1 +#11 0.349 ffmpeg-python>=0.2.0 +#11 0.349 tensorboardX +#11 0.349 Jinja2>=3.1.2 +#11 0.349 json5 +#11 0.349 Markdown +#11 0.349 matplotlib>=3.7.0 +#11 0.349 matplotlib-inline>=0.1.3 +#11 0.349 praat-parselmouth>=0.4.2 +#11 0.349 Pillow>=9.1.1 +#11 0.349 resampy>=0.4.2 +#11 0.349 scikit-learn +#11 0.349 tensorboard +#11 0.349 tqdm>=4.63.1 +#11 0.349 tornado>=6.1 +#11 0.349 Werkzeug>=2.2.3 +#11 0.349 uc-micro-py>=1.0.1 +#11 0.349 sympy>=1.11.1 +#11 0.349 tabulate>=0.8.10 +#11 0.349 PyYAML>=6.0 +#11 0.349 pyasn1>=0.4.8 +#11 0.349 pyasn1-modules>=0.2.8 +#11 0.349 fsspec>=2022.11.0 +#11 0.349 absl-py>=1.2.0 +#11 0.349 audioread +#11 0.349 uvicorn>=0.21.1 +#11 0.349 colorama>=0.4.5 +#11 0.349 pyworld==0.3.2 +#11 0.349 httpx +#11 0.349 onnxruntime +#11 0.349 onnxruntime-gpu +#11 0.349 torchcrepe==0.0.23 +#11 0.349 fastapi==0.88 +#11 0.349 ffmpy==0.3.1 +#11 0.349 python-dotenv>=1.0.0 +#11 0.349 av +#11 0.349 torchfcpe +#11 0.349 --- End --- +#11 0.354 --- Cleaned main requirements.txt --- +#11 0.355 aria2 +#11 0.355 joblib>=1.1.0 +#11 0.355 numba==0.56.4 +#11 0.355 numpy==1.23.5 +#11 0.355 scipy +#11 0.355 librosa==0.9.1 +#11 0.355 llvmlite==0.39.0 +#11 0.355 fairseq==0.12.2 +#11 0.355 faiss-cpu==1.7.3 +#11 0.355 gradio==3.34.0 +#11 0.355 Cython +#11 0.355 pydub>=0.25.1 +#11 0.355 soundfile>=0.12.1 +#11 0.355 ffmpeg-python>=0.2.0 +#11 0.355 tensorboardX +#11 0.355 Jinja2>=3.1.2 +#11 0.355 json5 +#11 0.355 Markdown +#11 0.355 matplotlib>=3.7.0 +#11 0.355 matplotlib-inline>=0.1.3 +#11 0.355 praat-parselmouth>=0.4.2 +#11 0.355 Pillow>=9.1.1 +#11 0.355 resampy>=0.4.2 +#11 0.355 scikit-learn +#11 0.355 tensorboard +#11 0.355 tqdm>=4.63.1 +#11 0.355 tornado>=6.1 +#11 0.355 Werkzeug>=2.2.3 +#11 0.355 uc-micro-py>=1.0.1 +#11 0.355 sympy>=1.11.1 +#11 0.355 tabulate>=0.8.10 +#11 0.355 PyYAML>=6.0 +#11 0.355 pyasn1>=0.4.8 +#11 0.355 pyasn1-modules>=0.2.8 +#11 0.355 fsspec>=2022.11.0 +#11 0.355 absl-py>=1.2.0 +#11 0.355 audioread +#11 0.355 uvicorn>=0.21.1 +#11 0.355 colorama>=0.4.5 +#11 0.355 pyworld==0.3.2 +#11 0.355 httpx +#11 0.355 onnxruntime; sys_platform == 'darwin' +#11 0.355 onnxruntime-gpu; sys_platform != 'darwin' +#11 0.355 fastapi==0.88 +#11 0.355 ffmpy==0.3.1 +#11 0.355 python-dotenv>=1.0.0 +#11 0.355 av +#11 0.355 --- End --- +#11 0.372 --- Cleaned requirements-amd.txt --- +#11 0.372 pydub>=0.25.1 +#11 0.372 soundfile>=0.12.1 +#11 0.372 ffmpeg-python>=0.2.0 +#11 0.372 tensorboardX +#11 0.372 Jinja2>=3.1.2 +#11 0.372 json5 +#11 0.372 Markdown +#11 0.372 matplotlib>=3.7.0 +#11 0.372 matplotlib-inline>=0.1.3 +#11 0.372 praat-parselmouth>=0.4.2 +#11 0.372 Pillow>=9.1.1 +#11 0.372 resampy>=0.4.2 +#11 0.372 scikit-learn +#11 0.372 tensorboard +#11 0.372 tqdm>=4.63.1 +#11 0.372 tornado>=6.1 +#11 0.372 Werkzeug>=2.2.3 +#11 0.372 uc-micro-py>=1.0.1 +#11 0.372 sympy>=1.11.1 +#11 0.372 tabulate>=0.8.10 +#11 0.372 PyYAML>=6.0 +#11 0.372 pyasn1>=0.4.8 +#11 0.372 pyasn1-modules>=0.2.8 +#11 0.372 fsspec>=2022.11.0 +#11 0.372 absl-py>=1.2.0 +#11 0.372 audioread +#11 0.372 uvicorn>=0.21.1 +#11 0.372 colorama>=0.4.5 +#11 0.372 httpx +#11 0.372 fastapi==0.88 +#11 0.372 ffmpy==0.3.1 +#11 0.372 python-dotenv>=1.0.0 +#11 0.372 av +#11 0.372 --- End --- +#11 DONE 0.4s + +#12 [ 8/13] RUN echo "** Installing RVC dependencies from main requirements.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements.txt -c .venv/constraints.txt +#12 0.328 ** Installing RVC dependencies from main requirements.txt (cleaned) ** +#12 0.679 Ignoring onnxruntime: markers 'sys_platform == "darwin"' don't match your environment +#12 6.035 Collecting aria2 +#12 6.375 Downloading aria2-0.0.1b0-py3-none-manylinux_2_17_x86_64.whl (5.3 MB) +#12 7.038 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.3/5.3 MB 8.1 MB/s eta 0:00:00 +#12 7.152 Collecting joblib>=1.1.0 +#12 7.216 Downloading joblib-1.1.0-py2.py3-none-any.whl (306 kB) +#12 7.242 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.0/307.0 KB 12.0 MB/s eta 0:00:00 +#12 7.592 Collecting numba==0.56.4 +#12 7.654 Downloading numba-0.56.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (3.5 MB) +#12 7.952 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.5/3.5 MB 11.7 MB/s eta 0:00:00 +#12 8.420 Collecting numpy==1.23.5 +#12 8.482 Downloading numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.1 MB) +#12 10.05 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.1/17.1 MB 10.4 MB/s eta 0:00:00 +#12 10.35 Collecting scipy +#12 10.41 Downloading scipy-1.15.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (37.7 MB) +#12 13.73 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 37.7/37.7 MB 11.7 MB/s eta 0:00:00 +#12 13.84 Collecting librosa==0.9.1 +#12 13.91 Downloading librosa-0.9.1-py3-none-any.whl (213 kB) +#12 13.92 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 213.1/213.1 KB 12.1 MB/s eta 0:00:00 +#12 14.10 Collecting llvmlite==0.39.0 +#12 14.16 Downloading llvmlite-0.39.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.6 MB) +#12 17.20 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 34.6/34.6 MB 10.7 MB/s eta 0:00:00 +#12 17.31 Collecting fairseq==0.12.2 +#12 17.37 Downloading fairseq-0.12.2.tar.gz (9.6 MB) +#12 18.19 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/9.6 MB 11.7 MB/s eta 0:00:00 +#12 18.81 Installing build dependencies: started +#12 28.45 Installing build dependencies: finished with status 'done' +#12 28.45 Getting requirements to build wheel: started +#12 28.59 Getting requirements to build wheel: finished with status 'done' +#12 28.72 Installing backend dependencies: started +#12 39.29 Installing backend dependencies: finished with status 'done' +#12 39.30 Preparing metadata (pyproject.toml): started +#12 39.55 Preparing metadata (pyproject.toml): finished with status 'done' +#12 39.67 Collecting faiss-cpu==1.7.3 +#12 39.73 Downloading faiss_cpu-1.7.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.0 MB) +#12 41.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 17.0/17.0 MB 11.7 MB/s eta 0:00:00 +#12 41.44 Collecting gradio==3.34.0 +#12 41.50 Downloading gradio-3.34.0-py3-none-any.whl (20.0 MB) +#12 43.21 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 20.0/20.0 MB 11.7 MB/s eta 0:00:00 +#12 43.83 Collecting Cython +#12 43.90 Downloading cython-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB) +#12 44.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 11.8 MB/s eta 0:00:00 +#12 44.27 Collecting pydub>=0.25.1 +#12 44.33 Downloading pydub-0.25.1-py2.py3-none-any.whl (32 kB) +#12 44.41 Collecting soundfile>=0.12.1 +#12 44.47 Downloading soundfile-0.13.1-py2.py3-none-manylinux_2_28_x86_64.whl (1.3 MB) +#12 44.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 11.8 MB/s eta 0:00:00 +#12 44.66 Collecting ffmpeg-python>=0.2.0 +#12 44.72 Downloading ffmpeg_python-0.2.0-py3-none-any.whl (25 kB) +#12 44.80 Collecting tensorboardX +#12 44.86 Downloading tensorboardX-2.6.2.2-py2.py3-none-any.whl (101 kB) +#12 44.87 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 101.7/101.7 KB 12.6 MB/s eta 0:00:00 +#12 44.95 Collecting Jinja2>=3.1.2 +#12 45.02 Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) +#12 45.03 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 134.9/134.9 KB 12.3 MB/s eta 0:00:00 +#12 45.11 Collecting json5 +#12 45.18 Downloading json5-0.12.0-py3-none-any.whl (36 kB) +#12 45.27 Collecting Markdown +#12 45.33 Downloading markdown-3.8-py3-none-any.whl (106 kB) +#12 45.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 106.2/106.2 KB 12.5 MB/s eta 0:00:00 +#12 45.71 Collecting matplotlib>=3.7.0 +#12 45.78 Downloading matplotlib-3.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.6 MB) +#12 46.76 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 11.6/11.6 MB 11.7 MB/s eta 0:00:00 +#12 46.85 Collecting matplotlib-inline>=0.1.3 +#12 46.91 Downloading matplotlib_inline-0.1.7-py3-none-any.whl (9.9 kB) +#12 47.06 Collecting praat-parselmouth>=0.4.2 +#12 47.12 Downloading praat_parselmouth-0.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (10.7 MB) +#12 48.04 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.7/10.7 MB 11.7 MB/s eta 0:00:00 +#12 48.46 Collecting Pillow>=9.1.1 +#12 48.52 Downloading pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl (4.6 MB) +#12 48.92 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.6/4.6 MB 11.7 MB/s eta 0:00:00 +#12 48.99 Collecting resampy>=0.4.2 +#12 49.06 Downloading resampy-0.4.3-py3-none-any.whl (3.1 MB) +#12 49.32 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.1/3.1 MB 11.7 MB/s eta 0:00:00 +#12 49.57 Collecting scikit-learn +#12 49.64 Downloading scikit_learn-1.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) +#12 50.79 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 11.7 MB/s eta 0:00:00 +#12 50.89 Collecting tensorboard +#12 50.96 Downloading tensorboard-2.19.0-py3-none-any.whl (5.5 MB) +#12 51.43 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.5/5.5 MB 11.7 MB/s eta 0:00:00 +#12 51.59 Collecting tqdm>=4.63.1 +#12 51.65 Downloading tqdm-4.67.1-py3-none-any.whl (78 kB) +#12 51.66 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.5/78.5 KB 12.9 MB/s eta 0:00:00 +#12 51.79 Collecting tornado>=6.1 +#12 51.85 Downloading tornado-6.5-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (442 kB) +#12 51.89 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 442.5/442.5 KB 11.8 MB/s eta 0:00:00 +#12 51.99 Collecting Werkzeug>=2.2.3 +#12 52.05 Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) +#12 52.07 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 224.5/224.5 KB 12.1 MB/s eta 0:00:00 +#12 52.14 Collecting uc-micro-py>=1.0.1 +#12 52.20 Downloading uc_micro_py-1.0.3-py3-none-any.whl (6.2 kB) +#12 52.29 Collecting sympy>=1.11.1 +#12 52.35 Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) +#12 52.89 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.3/6.3 MB 11.7 MB/s eta 0:00:00 +#12 52.98 Collecting tabulate>=0.8.10 +#12 53.04 Downloading tabulate-0.9.0-py3-none-any.whl (35 kB) +#12 53.17 Collecting PyYAML>=6.0 +#12 53.24 Downloading PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (751 kB) +#12 53.30 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 751.2/751.2 KB 11.8 MB/s eta 0:00:00 +#12 53.40 Collecting pyasn1>=0.4.8 +#12 53.46 Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) +#12 53.47 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.1/83.1 KB 12.7 MB/s eta 0:00:00 +#12 53.56 Collecting pyasn1-modules>=0.2.8 +#12 53.62 Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) +#12 53.64 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.3/181.3 KB 12.3 MB/s eta 0:00:00 +#12 53.74 Collecting fsspec>=2022.11.0 +#12 53.80 Downloading fsspec-2025.3.2-py3-none-any.whl (194 kB) +#12 53.82 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 194.4/194.4 KB 12.1 MB/s eta 0:00:00 +#12 53.90 Collecting absl-py>=1.2.0 +#12 53.96 Downloading absl_py-2.2.2-py3-none-any.whl (135 kB) +#12 53.97 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 135.6/135.6 KB 12.3 MB/s eta 0:00:00 +#12 54.05 Collecting audioread +#12 54.11 Downloading audioread-3.0.1-py3-none-any.whl (23 kB) +#12 54.21 Collecting uvicorn>=0.21.1 +#12 54.28 Downloading uvicorn-0.34.2-py3-none-any.whl (62 kB) +#12 54.28 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.5/62.5 KB 13.2 MB/s eta 0:00:00 +#12 54.36 Collecting colorama>=0.4.5 +#12 54.42 Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB) +#12 54.50 Collecting pyworld==0.3.2 +#12 54.57 Downloading pyworld-0.3.2.tar.gz (214 kB) +#12 54.59 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 214.4/214.4 KB 12.1 MB/s eta 0:00:00 +#12 54.74 Installing build dependencies: started +#12 65.19 Installing build dependencies: finished with status 'done' +#12 65.20 Getting requirements to build wheel: started +#12 65.41 Getting requirements to build wheel: finished with status 'done' +#12 65.41 Preparing metadata (pyproject.toml): started +#12 65.65 Preparing metadata (pyproject.toml): finished with status 'done' +#12 65.74 Collecting httpx +#12 65.81 Downloading httpx-0.28.1-py3-none-any.whl (73 kB) +#12 65.81 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 73.5/73.5 KB 13.7 MB/s eta 0:00:00 +#12 65.91 Collecting onnxruntime-gpu +#12 65.97 Downloading onnxruntime_gpu-1.22.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (283.2 MB) +#12 90.71 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 283.2/283.2 MB 11.4 MB/s eta 0:00:00 +#12 91.11 Collecting fastapi==0.88 +#12 91.17 Downloading fastapi-0.88.0-py3-none-any.whl (55 kB) +#12 91.18 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 55.5/55.5 KB 13.6 MB/s eta 0:00:00 +#12 91.25 Collecting ffmpy==0.3.1 +#12 91.31 Downloading ffmpy-0.3.1.tar.gz (5.5 kB) +#12 91.31 Preparing metadata (setup.py): started +#12 91.45 Preparing metadata (setup.py): finished with status 'done' +#12 91.54 Collecting python-dotenv>=1.0.0 +#12 91.60 Downloading python_dotenv-1.1.0-py3-none-any.whl (20 kB) +#12 91.78 Collecting av +#12 91.84 Downloading av-14.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (34.7 MB) +#12 94.96 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 34.7/34.7 MB 10.8 MB/s eta 0:00:00 +#12 94.99 Requirement already satisfied: setuptools in ./.venv/lib/python3.10/site-packages (from numba==0.56.4->-r requirements.txt (line 3)) (59.6.0) +#12 95.11 Collecting decorator>=4.0.10 +#12 95.17 Downloading decorator-5.2.1-py3-none-any.whl (9.2 kB) +#12 95.27 Collecting pooch>=1.0 +#12 95.33 Downloading pooch-1.8.2-py3-none-any.whl (64 kB) +#12 95.34 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.6/64.6 KB 13.0 MB/s eta 0:00:00 +#12 95.43 Collecting packaging>=20.0 +#12 95.49 Downloading packaging-25.0-py3-none-any.whl (66 kB) +#12 95.49 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 66.5/66.5 KB 13.0 MB/s eta 0:00:00 +#12 96.38 Collecting regex +#12 96.45 Downloading regex-2024.11.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (781 kB) +#12 96.51 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 781.7/781.7 KB 11.7 MB/s eta 0:00:00 +#12 96.60 Collecting sacrebleu>=1.4.12 +#12 96.67 Downloading sacrebleu-2.5.1-py3-none-any.whl (104 kB) +#12 96.67 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 104.1/104.1 KB 12.5 MB/s eta 0:00:00 +#12 96.97 Collecting cffi +#12 97.04 Downloading cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (446 kB) +#12 97.08 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 446.2/446.2 KB 11.9 MB/s eta 0:00:00 +#12 97.60 Collecting bitarray +#12 97.67 Downloading bitarray-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306 kB) +#12 97.69 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 306.8/306.8 KB 12.0 MB/s eta 0:00:00 +#12 97.81 Collecting omegaconf<2.1 +#12 97.87 Downloading omegaconf-2.0.6-py3-none-any.whl (36 kB) +#12 97.88 Processing /pytorch/dist/torch-2.0.0a0+gite9ebda2-cp310-cp310-linux_x86_64.whl +#12 97.93 Processing /audio/dist/torchaudio-2.0.2+31de77d-cp310-cp310-linux_x86_64.whl +#12 98.10 Collecting hydra-core<1.1,>=1.0.7 +#12 98.16 Downloading hydra_core-1.0.7-py3-none-any.whl (123 kB) +#12 98.17 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 123.8/123.8 KB 12.4 MB/s eta 0:00:00 +#12 98.45 Collecting websockets>=10.0 +#12 98.51 Downloading websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (181 kB) +#12 98.53 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.6/181.6 KB 12.5 MB/s eta 0:00:00 +#12 98.69 Collecting markupsafe +#12 98.75 Downloading MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) +#12 98.84 Collecting typing-extensions +#12 98.90 Downloading typing_extensions-4.13.2-py3-none-any.whl (45 kB) +#12 98.90 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.8/45.8 KB 14.2 MB/s eta 0:00:00 +#12 98.98 Collecting altair>=4.2.0 +#12 99.04 Downloading altair-5.5.0-py3-none-any.whl (731 kB) +#12 99.11 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 731.2/731.2 KB 11.8 MB/s eta 0:00:00 +#12 99.29 Collecting gradio-client>=0.2.6 +#12 99.35 Downloading gradio_client-1.10.1-py3-none-any.whl (323 kB) +#12 99.38 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 323.1/323.1 KB 12.0 MB/s eta 0:00:00 +#12 100.4 Collecting aiohttp +#12 100.4 Downloading aiohttp-3.11.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB) +#12 100.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 11.8 MB/s eta 0:00:00 +#12 100.8 Collecting pandas +#12 100.9 Downloading pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB) +#12 102.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.1/13.1 MB 11.7 MB/s eta 0:00:00 +#12 102.3 Collecting pydantic +#12 102.4 Downloading pydantic-2.11.4-py3-none-any.whl (443 kB) +#12 102.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 443.9/443.9 KB 11.9 MB/s eta 0:00:00 +#12 102.5 Collecting semantic-version +#12 102.6 Downloading semantic_version-2.10.0-py2.py3-none-any.whl (15 kB) +#12 102.7 Collecting markdown-it-py[linkify]>=2.0.0 +#12 102.7 Downloading markdown_it_py-3.0.0-py3-none-any.whl (87 kB) +#12 102.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 87.5/87.5 KB 12.8 MB/s eta 0:00:00 +#12 102.9 Collecting huggingface-hub>=0.14.0 +#12 102.9 Downloading huggingface_hub-0.31.2-py3-none-any.whl (484 kB) +#12 103.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 484.2/484.2 KB 11.9 MB/s eta 0:00:00 +#12 103.0 Collecting mdit-py-plugins<=0.3.3 +#12 103.1 Downloading mdit_py_plugins-0.3.3-py3-none-any.whl (50 kB) +#12 103.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.5/50.5 KB 14.0 MB/s eta 0:00:00 +#12 103.2 Collecting pygments>=2.12.0 +#12 103.3 Downloading pygments-2.19.1-py3-none-any.whl (1.2 MB) +#12 103.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 11.8 MB/s eta 0:00:00 +#12 103.5 Collecting requests +#12 103.5 Downloading requests-2.32.3-py3-none-any.whl (64 kB) +#12 103.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.9/64.9 KB 12.8 MB/s eta 0:00:00 +#12 103.6 Collecting aiofiles +#12 103.7 Downloading aiofiles-24.1.0-py3-none-any.whl (15 kB) +#12 103.8 Collecting python-multipart +#12 103.8 Downloading python_multipart-0.0.20-py3-none-any.whl (24 kB) +#12 104.5 Collecting orjson +#12 104.5 Downloading orjson-3.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (132 kB) +#12 104.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 132.8/132.8 KB 12.9 MB/s eta 0:00:00 +#12 104.7 Collecting starlette==0.22.0 +#12 104.7 Downloading starlette-0.22.0-py3-none-any.whl (64 kB) +#12 104.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 64.3/64.3 KB 13.2 MB/s eta 0:00:00 +#12 104.8 Collecting pydantic +#12 104.8 Downloading pydantic-1.10.22-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB) +#12 105.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 3.3/3.3 MB 11.7 MB/s eta 0:00:00 +#12 105.2 Collecting anyio<5,>=3.4.0 +#12 105.3 Downloading anyio-4.9.0-py3-none-any.whl (100 kB) +#12 105.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.9/100.9 KB 12.6 MB/s eta 0:00:00 +#12 105.4 Collecting future +#12 105.5 Downloading future-1.0.0-py3-none-any.whl (491 kB) +#12 105.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 491.3/491.3 KB 11.9 MB/s eta 0:00:00 +#12 105.9 Collecting protobuf>=3.20 +#12 106.0 Downloading protobuf-4.25.3-cp37-abi3-manylinux2014_x86_64.whl (294 kB) +#12 106.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 294.6/294.6 KB 11.9 MB/s eta 0:00:00 +#12 106.4 Collecting fonttools>=4.22.0 +#12 106.5 Downloading fonttools-4.58.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB) +#12 106.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 11.7 MB/s eta 0:00:00 +#12 107.1 Collecting contourpy>=1.0.1 +#12 107.2 Downloading contourpy-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325 kB) +#12 107.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 325.0/325.0 KB 11.9 MB/s eta 0:00:00 +#12 107.2 Collecting cycler>=0.10 +#12 107.3 Downloading cycler-0.12.1-py3-none-any.whl (8.3 kB) +#12 107.4 Collecting pyparsing<3.1,>=2.3.1 +#12 107.5 Downloading pyparsing-3.0.9-py3-none-any.whl (98 kB) +#12 107.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.3/98.3 KB 12.8 MB/s eta 0:00:00 +#12 107.6 Collecting python-dateutil>=2.7 +#12 107.6 Downloading python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) +#12 107.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.9/229.9 KB 12.2 MB/s eta 0:00:00 +#12 107.8 Collecting kiwisolver>=1.0.1 +#12 107.9 Downloading kiwisolver-1.4.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.6 MB) +#12 108.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.6/1.6 MB 11.8 MB/s eta 0:00:00 +#12 108.1 Collecting traitlets +#12 108.2 Downloading traitlets-5.14.3-py3-none-any.whl (85 kB) +#12 108.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 85.4/85.4 KB 13.1 MB/s eta 0:00:00 +#12 108.3 Collecting threadpoolctl>=3.1.0 +#12 108.4 Downloading threadpoolctl-3.6.0-py3-none-any.whl (18 kB) +#12 108.4 Collecting scikit-learn +#12 108.5 Downloading scikit_learn-1.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.5 MB) +#12 109.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.5/13.5 MB 12.3 MB/s eta 0:00:00 +#12 109.9 Downloading scikit_learn-1.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB) +#12 111.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.3/13.3 MB 11.3 MB/s eta 0:00:00 +#12 111.2 Downloading scikit_learn-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.4 MB) +#12 112.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.4/13.4 MB 11.7 MB/s eta 0:00:00 +#12 112.4 Downloading scikit_learn-1.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB) +#12 113.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 13.3/13.3 MB 11.7 MB/s eta 0:00:00 +#12 113.7 Downloading scikit_learn-1.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.1 MB) +#12 114.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.1/12.1 MB 11.7 MB/s eta 0:00:00 +#12 114.8 Downloading scikit_learn-1.4.1.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.1 MB) +#12 115.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.1/12.1 MB 11.7 MB/s eta 0:00:00 +#12 116.0 Downloading scikit_learn-1.4.0-1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (12.1 MB) +#12 117.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 12.1/12.1 MB 11.7 MB/s eta 0:00:00 +#12 117.1 Downloading scikit_learn-1.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) +#12 118.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 11.7 MB/s eta 0:00:00 +#12 118.1 Downloading scikit_learn-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) +#12 119.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 11.7 MB/s eta 0:00:00 +#12 119.2 Downloading scikit_learn-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB) +#12 120.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 10.8/10.8 MB 11.7 MB/s eta 0:00:00 +#12 120.2 Downloading scikit_learn-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.6 MB) +#12 121.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/9.6 MB 11.3 MB/s eta 0:00:00 +#12 121.2 Downloading scikit_learn-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.6 MB) +#12 122.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.6/9.6 MB 11.4 MB/s eta 0:00:00 +#12 122.1 Downloading scikit_learn-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.5 MB) +#12 123.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.5/9.5 MB 11.4 MB/s eta 0:00:00 +#12 123.1 Downloading scikit_learn-1.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (30.5 MB) +#12 125.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 30.5/30.5 MB 11.7 MB/s eta 0:00:00 +#12 125.8 Collecting tensorboard-data-server<0.8.0,>=0.7.0 +#12 125.9 Downloading tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl (6.6 MB) +#12 126.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 6.6/6.6 MB 11.7 MB/s eta 0:00:00 +#12 126.6 Collecting six>1.9 +#12 126.6 Downloading six-1.17.0-py2.py3-none-any.whl (11 kB) +#12 128.1 Collecting grpcio>=1.48.2 +#12 128.2 Downloading grpcio-1.71.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB) +#12 128.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.9/5.9 MB 11.7 MB/s eta 0:00:00 +#12 128.8 Collecting mpmath<1.4,>=1.1.0 +#12 128.9 Downloading mpmath-1.3.0-py3-none-any.whl (536 kB) +#12 128.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 536.2/536.2 KB 11.9 MB/s eta 0:00:00 +#12 129.1 Collecting click>=7.0 +#12 129.2 Downloading click-8.2.0-py3-none-any.whl (102 kB) +#12 129.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.2/102.2 KB 12.6 MB/s eta 0:00:00 +#12 129.3 Collecting h11>=0.8 +#12 129.4 Downloading h11-0.16.0-py3-none-any.whl (37 kB) +#12 129.5 Collecting idna +#12 129.6 Downloading idna-3.10-py3-none-any.whl (70 kB) +#12 129.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 70.4/70.4 KB 13.5 MB/s eta 0:00:00 +#12 129.7 Collecting certifi +#12 129.7 Downloading certifi-2025.4.26-py3-none-any.whl (159 kB) +#12 129.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 159.6/159.6 KB 12.4 MB/s eta 0:00:00 +#12 129.8 Collecting httpcore==1.* +#12 129.9 Downloading httpcore-1.0.9-py3-none-any.whl (78 kB) +#12 129.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 78.8/78.8 KB 12.8 MB/s eta 0:00:00 +#12 130.0 Collecting flatbuffers +#12 130.1 Downloading flatbuffers-25.2.10-py2.py3-none-any.whl (30 kB) +#12 130.2 Collecting coloredlogs +#12 130.2 Downloading coloredlogs-15.0.1-py2.py3-none-any.whl (46 kB) +#12 130.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.0/46.0 KB 14.0 MB/s eta 0:00:00 +#12 130.4 Collecting narwhals>=1.14.2 +#12 130.5 Downloading narwhals-1.39.1-py3-none-any.whl (355 kB) +#12 130.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 355.0/355.0 KB 12.0 MB/s eta 0:00:00 +#12 130.6 Collecting jsonschema>=3.0 +#12 130.7 Downloading jsonschema-4.23.0-py3-none-any.whl (88 kB) +#12 130.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 88.5/88.5 KB 13.1 MB/s eta 0:00:00 +#12 130.8 Collecting sniffio>=1.1 +#12 130.8 Downloading sniffio-1.3.1-py3-none-any.whl (10 kB) +#12 130.9 Collecting exceptiongroup>=1.0.2 +#12 131.0 Downloading exceptiongroup-1.3.0-py3-none-any.whl (16 kB) +#12 131.0 Collecting pycparser +#12 131.1 Downloading pycparser-2.22-py3-none-any.whl (117 kB) +#12 131.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.6/117.6 KB 12.6 MB/s eta 0:00:00 +#12 131.4 Collecting filelock +#12 131.4 Downloading filelock-3.18.0-py3-none-any.whl (16 kB) +#12 131.5 Collecting antlr4-python3-runtime==4.8 +#12 131.6 Downloading antlr4-python3-runtime-4.8.tar.gz (112 kB) +#12 131.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 112.4/112.4 KB 12.5 MB/s eta 0:00:00 +#12 131.6 Preparing metadata (setup.py): started +#12 131.7 Preparing metadata (setup.py): finished with status 'done' +#12 131.9 Collecting mdurl~=0.1 +#12 131.9 Downloading mdurl-0.1.2-py3-none-any.whl (10.0 kB) +#12 132.0 Collecting linkify-it-py<3,>=1 +#12 132.1 Downloading linkify_it_py-2.0.3-py3-none-any.whl (19 kB) +#12 132.1 Collecting mdit-py-plugins<=0.3.3 +#12 132.1 Downloading mdit_py_plugins-0.3.2-py3-none-any.whl (50 kB) +#12 132.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.4/50.4 KB 13.9 MB/s eta 0:00:00 +#12 132.2 Downloading mdit_py_plugins-0.3.1-py3-none-any.whl (46 kB) +#12 132.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.5/46.5 KB 14.3 MB/s eta 0:00:00 +#12 132.3 Downloading mdit_py_plugins-0.3.0-py3-none-any.whl (43 kB) +#12 132.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 43.7/43.7 KB 14.2 MB/s eta 0:00:00 +#12 132.4 Downloading mdit_py_plugins-0.2.8-py3-none-any.whl (41 kB) +#12 132.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.0/41.0 KB 14.8 MB/s eta 0:00:00 +#12 132.4 Downloading mdit_py_plugins-0.2.7-py3-none-any.whl (41 kB) +#12 132.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 41.0/41.0 KB 14.5 MB/s eta 0:00:00 +#12 132.5 Downloading mdit_py_plugins-0.2.6-py3-none-any.whl (39 kB) +#12 132.6 Downloading mdit_py_plugins-0.2.5-py3-none-any.whl (39 kB) +#12 132.7 Downloading mdit_py_plugins-0.2.4-py3-none-any.whl (39 kB) +#12 132.7 Downloading mdit_py_plugins-0.2.3-py3-none-any.whl (39 kB) +#12 132.8 Downloading mdit_py_plugins-0.2.2-py3-none-any.whl (39 kB) +#12 132.9 Downloading mdit_py_plugins-0.2.1-py3-none-any.whl (38 kB) +#12 133.0 Downloading mdit_py_plugins-0.2.0-py3-none-any.whl (38 kB) +#12 133.0 Downloading mdit_py_plugins-0.1.0-py3-none-any.whl (37 kB) +#12 133.1 INFO: pip is looking at multiple versions of markupsafe to determine which version is compatible with other requirements. This could take a while. +#12 133.1 Collecting markupsafe +#12 133.1 Downloading MarkupSafe-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (20 kB) +#12 133.1 INFO: pip is looking at multiple versions of markdown-it-py[linkify] to determine which version is compatible with other requirements. This could take a while. +#12 133.1 Collecting markdown-it-py[linkify]>=2.0.0 +#12 133.2 Downloading markdown_it_py-2.2.0-py3-none-any.whl (84 kB) +#12 133.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 84.5/84.5 KB 12.9 MB/s eta 0:00:00 +#12 133.4 Collecting platformdirs>=2.5.0 +#12 133.4 Downloading platformdirs-4.3.8-py3-none-any.whl (18 kB) +#12 133.6 Collecting urllib3<3,>=1.21.1 +#12 133.7 Downloading urllib3-2.4.0-py3-none-any.whl (128 kB) +#12 133.7 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 128.7/128.7 KB 12.4 MB/s eta 0:00:00 +#12 133.9 Collecting charset-normalizer<4,>=2 +#12 133.9 Downloading charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149 kB) +#12 134.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 149.5/149.5 KB 12.3 MB/s eta 0:00:00 +#12 134.1 Collecting portalocker +#12 134.1 Downloading portalocker-3.1.1-py3-none-any.whl (19 kB) +#12 134.6 Collecting lxml +#12 134.6 Downloading lxml-5.4.0-cp310-cp310-manylinux_2_28_x86_64.whl (5.1 MB) +#12 135.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 5.1/5.1 MB 11.7 MB/s eta 0:00:00 +#12 135.3 Collecting frozenlist>=1.1.1 +#12 135.4 Downloading frozenlist-1.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287 kB) +#12 135.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 287.3/287.3 KB 12.0 MB/s eta 0:00:00 +#12 135.5 Collecting async-timeout<6.0,>=4.0 +#12 135.6 Downloading async_timeout-5.0.1-py3-none-any.whl (6.2 kB) +#12 136.0 Collecting multidict<7.0,>=4.5 +#12 136.1 Downloading multidict-6.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (219 kB) +#12 136.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 219.8/219.8 KB 12.0 MB/s eta 0:00:00 +#12 136.2 Collecting attrs>=17.3.0 +#12 136.2 Downloading attrs-25.3.0-py3-none-any.whl (63 kB) +#12 136.2 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 63.8/63.8 KB 12.9 MB/s eta 0:00:00 +#12 136.3 Collecting aiohappyeyeballs>=2.3.0 +#12 136.4 Downloading aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) +#12 137.0 Collecting yarl<2.0,>=1.17.0 +#12 137.0 Downloading yarl-1.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (333 kB) +#12 137.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 333.9/333.9 KB 12.0 MB/s eta 0:00:00 +#12 137.1 Collecting aiosignal>=1.1.2 +#12 137.2 Downloading aiosignal-1.3.2-py2.py3-none-any.whl (7.6 kB) +#12 137.3 Collecting propcache>=0.2.0 +#12 137.4 Downloading propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206 kB) +#12 137.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 206.6/206.6 KB 12.2 MB/s eta 0:00:00 +#12 137.5 Collecting humanfriendly>=9.1 +#12 137.6 Downloading humanfriendly-10.0-py2.py3-none-any.whl (86 kB) +#12 137.6 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 86.8/86.8 KB 12.8 MB/s eta 0:00:00 +#12 137.8 Collecting pytz>=2020.1 +#12 137.9 Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) +#12 137.9 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 509.2/509.2 KB 11.9 MB/s eta 0:00:00 +#12 138.0 Collecting tzdata>=2022.7 +#12 138.1 Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) +#12 138.1 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 347.8/347.8 KB 12.0 MB/s eta 0:00:00 +#12 138.2 Collecting networkx +#12 138.3 Downloading networkx-3.4.2-py3-none-any.whl (1.7 MB) +#12 138.4 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 11.8 MB/s eta 0:00:00 +#12 138.6 Collecting pytorch-triton-rocm<2.1,>=2.0.0 +#12 138.7 Downloading pytorch_triton_rocm-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (167.4 MB) +#12 153.0 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 167.4/167.4 MB 11.7 MB/s eta 0:00:00 +#12 153.5 Collecting jsonschema-specifications>=2023.03.6 +#12 153.5 Downloading jsonschema_specifications-2025.4.1-py3-none-any.whl (18 kB) +#12 154.2 Collecting rpds-py>=0.7.1 +#12 154.3 Downloading rpds_py-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386 kB) +#12 154.3 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 386.8/386.8 KB 11.9 MB/s eta 0:00:00 +#12 154.4 Collecting referencing>=0.28.4 +#12 154.5 Downloading referencing-0.36.2-py3-none-any.whl (26 kB) +#12 155.0 Collecting cmake +#12 155.0 Downloading cmake-4.0.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.9 MB) +#12 157.5 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 27.9/27.9 MB 11.7 MB/s eta 0:00:00 +#12 157.7 Collecting lit +#12 157.7 Downloading lit-18.1.8-py3-none-any.whl (96 kB) +#12 157.8 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 96.4/96.4 KB 13.0 MB/s eta 0:00:00 +#12 158.0 Using legacy 'setup.py install' for ffmpy, since package 'wheel' is not installed. +#12 158.0 Using legacy 'setup.py install' for antlr4-python3-runtime, since package 'wheel' is not installed. +#12 158.0 Building wheels for collected packages: fairseq, pyworld +#12 158.0 Building wheel for fairseq (pyproject.toml): started +#12 170.5 Building wheel for fairseq (pyproject.toml): finished with status 'done' +#12 170.5 Created wheel for fairseq: filename=fairseq-0.12.2-cp310-cp310-linux_x86_64.whl size=11293791 sha256=9e46180108e7738da416ff56a3aeb1597e0c27381c0fa8353d467c3e8acbb1bb +#12 170.5 Stored in directory: /tmp/pip-ephem-wheel-cache-y54tsw36/wheels/e4/35/55/9c66f65ec7c83fd6fbc2b9502a0ac81b2448a1196159dacc32 +#12 170.5 Building wheel for pyworld (pyproject.toml): started +#12 180.7 Building wheel for pyworld (pyproject.toml): finished with status 'done' +#12 180.7 Created wheel for pyworld: filename=pyworld-0.3.2-cp310-cp310-linux_x86_64.whl size=898053 sha256=12e811bf8c24e1dba7c891bdbe189f40b2522f33a9959bf78c3589aa5921e5f1 +#12 180.7 Stored in directory: /tmp/pip-ephem-wheel-cache-y54tsw36/wheels/35/48/7e/e25bdd25fda4326d47010c157709436a6ee7a1423e18a24195 +#12 180.7 Successfully built fairseq pyworld +#12 181.5 Installing collected packages: pytz, pydub, mpmath, lit, flatbuffers, ffmpy, faiss-cpu, bitarray, antlr4-python3-runtime, websockets, urllib3, uc-micro-py, tzdata, typing-extensions, traitlets, tqdm, tornado, threadpoolctl, tensorboard-data-server, tabulate, sympy, sniffio, six, semantic-version, rpds-py, regex, PyYAML, python-multipart, python-dotenv, pyparsing, pygments, pycparser, pyasn1, protobuf, propcache, portalocker, platformdirs, Pillow, packaging, orjson, numpy, networkx, narwhals, mdurl, markupsafe, Markdown, lxml, llvmlite, kiwisolver, json5, joblib, idna, humanfriendly, h11, grpcio, future, fsspec, frozenlist, fonttools, filelock, decorator, Cython, cycler, colorama, cmake, click, charset-normalizer, certifi, av, audioread, attrs, async-timeout, aria2, aiohappyeyeballs, aiofiles, absl-py, Werkzeug, uvicorn, tensorboardX, scipy, sacrebleu, requests, referencing, pyworld, python-dateutil, pydantic, pyasn1-modules, praat-parselmouth, omegaconf, numba, multidict, matplotlib-inline, markdown-it-py, linkify-it-py, Jinja2, httpcore, ffmpeg-python, exceptiongroup, contourpy, coloredlogs, cffi, aiosignal, yarl, tensorboard, soundfile, scikit-learn, resampy, pooch, pandas, onnxruntime-gpu, mdit-py-plugins, matplotlib, jsonschema-specifications, hydra-core, huggingface-hub, anyio, starlette, librosa, jsonschema, httpx, aiohttp, gradio-client, fastapi, altair, gradio, pytorch-triton-rocm, torch, torchaudio, fairseq +#12 181.9 Running setup.py install for ffmpy: started +#12 182.1 Running setup.py install for ffmpy: finished with status 'done' +#12 182.6 Running setup.py install for antlr4-python3-runtime: started +#12 182.8 Running setup.py install for antlr4-python3-runtime: finished with status 'done' +#12 221.0 Successfully installed Cython-3.1.0 Jinja2-3.1.6 Markdown-3.8 Pillow-11.2.1 PyYAML-6.0.2 Werkzeug-3.1.3 absl-py-2.2.2 aiofiles-24.1.0 aiohappyeyeballs-2.6.1 aiohttp-3.11.18 aiosignal-1.3.2 altair-5.5.0 antlr4-python3-runtime-4.8 anyio-4.9.0 aria2-0.0.1b0 async-timeout-5.0.1 attrs-25.3.0 audioread-3.0.1 av-14.3.0 bitarray-3.4.1 certifi-2025.4.26 cffi-1.17.1 charset-normalizer-3.4.2 click-8.2.0 cmake-4.0.2 colorama-0.4.6 coloredlogs-15.0.1 contourpy-1.3.2 cycler-0.12.1 decorator-5.2.1 exceptiongroup-1.3.0 fairseq-0.12.2 faiss-cpu-1.7.3 fastapi-0.88.0 ffmpeg-python-0.2.0 ffmpy-0.3.1 filelock-3.18.0 flatbuffers-25.2.10 fonttools-4.58.0 frozenlist-1.6.0 fsspec-2025.3.2 future-1.0.0 gradio-3.34.0 gradio-client-1.10.1 grpcio-1.71.0 h11-0.16.0 httpcore-1.0.9 httpx-0.28.1 huggingface-hub-0.31.2 humanfriendly-10.0 hydra-core-1.0.7 idna-3.10 joblib-1.1.0 json5-0.12.0 jsonschema-4.23.0 jsonschema-specifications-2025.4.1 kiwisolver-1.4.8 librosa-0.9.1 linkify-it-py-2.0.3 lit-18.1.8 llvmlite-0.39.0 lxml-5.4.0 markdown-it-py-2.2.0 markupsafe-3.0.2 matplotlib-3.7.2 matplotlib-inline-0.1.7 mdit-py-plugins-0.3.3 mdurl-0.1.2 mpmath-1.3.0 multidict-6.4.3 narwhals-1.39.1 networkx-3.4.2 numba-0.56.4 numpy-1.23.5 omegaconf-2.0.6 onnxruntime-gpu-1.22.0 orjson-3.10.18 packaging-25.0 pandas-2.2.3 platformdirs-4.3.8 pooch-1.8.2 portalocker-3.1.1 praat-parselmouth-0.4.5 propcache-0.3.1 protobuf-4.25.3 pyasn1-0.6.1 pyasn1-modules-0.4.2 pycparser-2.22 pydantic-1.10.22 pydub-0.25.1 pygments-2.19.1 pyparsing-3.0.9 python-dateutil-2.9.0.post0 python-dotenv-1.1.0 python-multipart-0.0.20 pytorch-triton-rocm-2.0.2 pytz-2025.2 pyworld-0.3.2 referencing-0.36.2 regex-2024.11.6 requests-2.32.3 resampy-0.4.3 rpds-py-0.25.0 sacrebleu-2.5.1 scikit-learn-1.1.3 scipy-1.15.3 semantic-version-2.10.0 six-1.17.0 sniffio-1.3.1 soundfile-0.13.1 starlette-0.22.0 sympy-1.14.0 tabulate-0.9.0 tensorboard-2.19.0 tensorboard-data-server-0.7.2 tensorboardX-2.6.2.2 threadpoolctl-3.6.0 torch-2.0.0a0+gite9ebda2 torchaudio-2.0.2+31de77d tornado-6.5 tqdm-4.67.1 traitlets-5.14.3 typing-extensions-4.13.2 tzdata-2025.2 uc-micro-py-1.0.3 urllib3-2.4.0 uvicorn-0.34.2 websockets-15.0.1 yarl-1.20.0 +#12 DONE 228.9s + +#13 [ 9/13] RUN echo "** Installing RVC specific dependencies from requirements-amd.txt (cleaned) **" && ./.venv/bin/python -m pip install --no-cache-dir -r requirements-amd.txt -c .venv/constraints.txt +#13 0.275 ** Installing RVC specific dependencies from requirements-amd.txt (cleaned) ** +#13 0.619 Requirement already satisfied: pydub>=0.25.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 1)) (0.25.1) +#13 0.619 Requirement already satisfied: soundfile>=0.12.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 2)) (0.13.1) +#13 0.620 Requirement already satisfied: ffmpeg-python>=0.2.0 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 3)) (0.2.0) +#13 0.620 Requirement already satisfied: tensorboardX in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 4)) (2.6.2.2) +#13 0.621 Requirement already satisfied: Jinja2>=3.1.2 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 5)) (3.1.6) +#13 0.621 Requirement already satisfied: json5 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 6)) (0.12.0) +#13 0.622 Requirement already satisfied: Markdown in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 7)) (3.8) +#13 0.622 Requirement already satisfied: matplotlib>=3.7.0 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 8)) (3.7.2) +#13 0.623 Requirement already satisfied: matplotlib-inline>=0.1.3 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 9)) (0.1.7) +#13 0.623 Requirement already satisfied: praat-parselmouth>=0.4.2 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 10)) (0.4.5) +#13 0.624 Requirement already satisfied: Pillow>=9.1.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 11)) (11.2.1) +#13 0.624 Requirement already satisfied: resampy>=0.4.2 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 12)) (0.4.3) +#13 0.624 Requirement already satisfied: scikit-learn in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 13)) (1.1.3) +#13 0.625 Requirement already satisfied: tensorboard in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 14)) (2.19.0) +#13 0.625 Requirement already satisfied: tqdm>=4.63.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 15)) (4.67.1) +#13 0.625 Requirement already satisfied: tornado>=6.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 16)) (6.5) +#13 0.626 Requirement already satisfied: Werkzeug>=2.2.3 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 17)) (3.1.3) +#13 0.626 Requirement already satisfied: uc-micro-py>=1.0.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 18)) (1.0.3) +#13 0.627 Requirement already satisfied: sympy>=1.11.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 19)) (1.14.0) +#13 0.627 Requirement already satisfied: tabulate>=0.8.10 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 20)) (0.9.0) +#13 0.628 Requirement already satisfied: PyYAML>=6.0 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 21)) (6.0.2) +#13 0.628 Requirement already satisfied: pyasn1>=0.4.8 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 22)) (0.6.1) +#13 0.629 Requirement already satisfied: pyasn1-modules>=0.2.8 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 23)) (0.4.2) +#13 0.629 Requirement already satisfied: fsspec>=2022.11.0 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 24)) (2025.3.2) +#13 0.630 Requirement already satisfied: absl-py>=1.2.0 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 25)) (2.2.2) +#13 0.630 Requirement already satisfied: audioread in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 26)) (3.0.1) +#13 0.630 Requirement already satisfied: uvicorn>=0.21.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 27)) (0.34.2) +#13 0.631 Requirement already satisfied: colorama>=0.4.5 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 28)) (0.4.6) +#13 0.631 Requirement already satisfied: httpx in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 29)) (0.28.1) +#13 0.631 Requirement already satisfied: fastapi==0.88 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 30)) (0.88.0) +#13 0.632 Requirement already satisfied: ffmpy==0.3.1 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 31)) (0.3.1) +#13 0.632 Requirement already satisfied: python-dotenv>=1.0.0 in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 32)) (1.1.0) +#13 0.633 Requirement already satisfied: av in ./.venv/lib/python3.10/site-packages (from -r requirements-amd.txt (line 33)) (14.3.0) +#13 0.660 Requirement already satisfied: starlette==0.22.0 in ./.venv/lib/python3.10/site-packages (from fastapi==0.88->-r requirements-amd.txt (line 30)) (0.22.0) +#13 0.660 Requirement already satisfied: pydantic!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0,>=1.6.2 in ./.venv/lib/python3.10/site-packages (from fastapi==0.88->-r requirements-amd.txt (line 30)) (1.10.22) +#13 0.665 Requirement already satisfied: anyio<5,>=3.4.0 in ./.venv/lib/python3.10/site-packages (from starlette==0.22.0->fastapi==0.88->-r requirements-amd.txt (line 30)) (4.9.0) +#13 0.667 Requirement already satisfied: numpy in ./.venv/lib/python3.10/site-packages (from soundfile>=0.12.1->-r requirements-amd.txt (line 2)) (1.23.5) +#13 0.668 Requirement already satisfied: cffi>=1.0 in ./.venv/lib/python3.10/site-packages (from soundfile>=0.12.1->-r requirements-amd.txt (line 2)) (1.17.1) +#13 0.672 Requirement already satisfied: future in ./.venv/lib/python3.10/site-packages (from ffmpeg-python>=0.2.0->-r requirements-amd.txt (line 3)) (1.0.0) +#13 0.674 Requirement already satisfied: protobuf>=3.20 in ./.venv/lib/python3.10/site-packages (from tensorboardX->-r requirements-amd.txt (line 4)) (4.25.3) +#13 0.675 Requirement already satisfied: packaging in ./.venv/lib/python3.10/site-packages (from tensorboardX->-r requirements-amd.txt (line 4)) (25.0) +#13 0.677 Requirement already satisfied: MarkupSafe>=2.0 in ./.venv/lib/python3.10/site-packages (from Jinja2>=3.1.2->-r requirements-amd.txt (line 5)) (3.0.2) +#13 0.697 Requirement already satisfied: contourpy>=1.0.1 in ./.venv/lib/python3.10/site-packages (from matplotlib>=3.7.0->-r requirements-amd.txt (line 8)) (1.3.2) +#13 0.697 Requirement already satisfied: pyparsing<3.1,>=2.3.1 in ./.venv/lib/python3.10/site-packages (from matplotlib>=3.7.0->-r requirements-amd.txt (line 8)) (3.0.9) +#13 0.698 Requirement already satisfied: python-dateutil>=2.7 in ./.venv/lib/python3.10/site-packages (from matplotlib>=3.7.0->-r requirements-amd.txt (line 8)) (2.9.0.post0) +#13 0.698 Requirement already satisfied: fonttools>=4.22.0 in ./.venv/lib/python3.10/site-packages (from matplotlib>=3.7.0->-r requirements-amd.txt (line 8)) (4.58.0) +#13 0.699 Requirement already satisfied: kiwisolver>=1.0.1 in ./.venv/lib/python3.10/site-packages (from matplotlib>=3.7.0->-r requirements-amd.txt (line 8)) (1.4.8) +#13 0.699 Requirement already satisfied: cycler>=0.10 in ./.venv/lib/python3.10/site-packages (from matplotlib>=3.7.0->-r requirements-amd.txt (line 8)) (0.12.1) +#13 0.701 Requirement already satisfied: traitlets in ./.venv/lib/python3.10/site-packages (from matplotlib-inline>=0.1.3->-r requirements-amd.txt (line 9)) (5.14.3) +#13 0.720 Requirement already satisfied: numba>=0.53 in ./.venv/lib/python3.10/site-packages (from resampy>=0.4.2->-r requirements-amd.txt (line 12)) (0.56.4) +#13 0.750 Requirement already satisfied: threadpoolctl>=2.0.0 in ./.venv/lib/python3.10/site-packages (from scikit-learn->-r requirements-amd.txt (line 13)) (3.6.0) +#13 0.750 Requirement already satisfied: joblib>=1.0.0 in ./.venv/lib/python3.10/site-packages (from scikit-learn->-r requirements-amd.txt (line 13)) (1.1.0) +#13 0.751 Requirement already satisfied: scipy>=1.3.2 in ./.venv/lib/python3.10/site-packages (from scikit-learn->-r requirements-amd.txt (line 13)) (1.15.3) +#13 0.757 Requirement already satisfied: setuptools>=41.0.0 in ./.venv/lib/python3.10/site-packages (from tensorboard->-r requirements-amd.txt (line 14)) (59.6.0) +#13 0.757 Requirement already satisfied: six>1.9 in ./.venv/lib/python3.10/site-packages (from tensorboard->-r requirements-amd.txt (line 14)) (1.17.0) +#13 0.758 Requirement already satisfied: grpcio>=1.48.2 in ./.venv/lib/python3.10/site-packages (from tensorboard->-r requirements-amd.txt (line 14)) (1.71.0) +#13 0.758 Requirement already satisfied: tensorboard-data-server<0.8.0,>=0.7.0 in ./.venv/lib/python3.10/site-packages (from tensorboard->-r requirements-amd.txt (line 14)) (0.7.2) +#13 0.774 Requirement already satisfied: mpmath<1.4,>=1.1.0 in ./.venv/lib/python3.10/site-packages (from sympy>=1.11.1->-r requirements-amd.txt (line 19)) (1.3.0) +#13 0.854 Requirement already satisfied: typing-extensions>=4.0 in ./.venv/lib/python3.10/site-packages (from uvicorn>=0.21.1->-r requirements-amd.txt (line 27)) (4.13.2) +#13 0.854 Requirement already satisfied: click>=7.0 in ./.venv/lib/python3.10/site-packages (from uvicorn>=0.21.1->-r requirements-amd.txt (line 27)) (8.2.0) +#13 0.855 Requirement already satisfied: h11>=0.8 in ./.venv/lib/python3.10/site-packages (from uvicorn>=0.21.1->-r requirements-amd.txt (line 27)) (0.16.0) +#13 0.865 Requirement already satisfied: httpcore==1.* in ./.venv/lib/python3.10/site-packages (from httpx->-r requirements-amd.txt (line 29)) (1.0.9) +#13 0.865 Requirement already satisfied: certifi in ./.venv/lib/python3.10/site-packages (from httpx->-r requirements-amd.txt (line 29)) (2025.4.26) +#13 0.865 Requirement already satisfied: idna in ./.venv/lib/python3.10/site-packages (from httpx->-r requirements-amd.txt (line 29)) (3.10) +#13 0.888 Requirement already satisfied: exceptiongroup>=1.0.2 in ./.venv/lib/python3.10/site-packages (from anyio<5,>=3.4.0->starlette==0.22.0->fastapi==0.88->-r requirements-amd.txt (line 30)) (1.3.0) +#13 0.889 Requirement already satisfied: sniffio>=1.1 in ./.venv/lib/python3.10/site-packages (from anyio<5,>=3.4.0->starlette==0.22.0->fastapi==0.88->-r requirements-amd.txt (line 30)) (1.3.1) +#13 0.891 Requirement already satisfied: pycparser in ./.venv/lib/python3.10/site-packages (from cffi>=1.0->soundfile>=0.12.1->-r requirements-amd.txt (line 2)) (2.22) +#13 0.954 Requirement already satisfied: llvmlite<0.40,>=0.39.0dev0 in ./.venv/lib/python3.10/site-packages (from numba>=0.53->resampy>=0.4.2->-r requirements-amd.txt (line 12)) (0.39.0) +#13 DONE 1.5s + +#14 [10/13] RUN echo "** Installing other essential dependencies into venv **" && ./.venv/bin/python -m pip install --no-cache-dir -c .venv/constraints.txt Cython scipy librosa==0.10.2 pydub>=0.25.1 soundfile>=0.12.1 ffmpeg-python>=0.2.0 tensorboardX Jinja2>=3.1.2 json5 Markdown matplotlib>=3.7.2 matplotlib-inline>=0.1.3 praat-parselmouth>=0.4.2 Pillow>=9.1.1 resampy>=0.4.2 scikit-learn tensorboard tqdm>=4.63.1 tornado>=6.1 Werkzeug>=2.2.3 uc-micro-py>=1.0.1 sympy>=1.11.1 tabulate>=0.8.10 PyYAML>=6.0 pyasn1>=0.4.8 pyasn1-modules>=0.2.8 fsspec>=2022.11.0 absl-py>=1.2.0 audioread uvicorn>=0.21.1 colorama>=0.4.5 httpx fastapi==0.88 ffmpy==0.3.1 python-dotenv>=1.0.0 av torchcrepe==0.0.23 torchfcpe joblib==1.1.0 numba==0.56.4 llvmlite==0.39.0 fairseq==0.12.2 faiss-cpu==1.7.3 gradio==3.34.0 pyworld==0.3.2 onnxruntime && echo "Essential dependencies installed into venv." +#14 0.325 ** Installing other essential dependencies into venv ** +#14 29.01 Essential dependencies installed into venv. +#14 DONE 29.5s + +#15 [11/13] RUN chmod +x *.sh +#15 DONE 0.3s + +#16 [12/13] COPY entrypoint_rvc.sh /entrypoint_rvc.sh +#16 DONE 0.1s + +#17 [13/13] RUN chmod +x /entrypoint_rvc.sh +#17 DONE 0.3s + +#18 exporting to image +#18 exporting layers +#18 exporting layers 6.1s done +#18 writing image sha256:82cba4b07b7982f4fe10b763433c00669d6d5279404da76625c19695d6c51bbf done +#18 naming to docker.io/library/rvc_webui_rocm:5.4.2 done +#18 DONE 6.2s diff --git a/rocm_5.4/screenshots/banner.png b/rocm_5.4/screenshots/banner.png new file mode 100644 index 000000000..9045d249a Binary files /dev/null and b/rocm_5.4/screenshots/banner.png differ diff --git a/rocm_5.4/screenshots/screenshot1.png b/rocm_5.4/screenshots/screenshot1.png new file mode 100644 index 000000000..e213d81d3 Binary files /dev/null and b/rocm_5.4/screenshots/screenshot1.png differ diff --git a/rocm_5.4/screenshots/screenshot2.png b/rocm_5.4/screenshots/screenshot2.png new file mode 100644 index 000000000..bd4eb7052 Binary files /dev/null and b/rocm_5.4/screenshots/screenshot2.png differ diff --git a/rocm_5.4/screenshots/screenshot3.png b/rocm_5.4/screenshots/screenshot3.png new file mode 100644 index 000000000..cec099122 Binary files /dev/null and b/rocm_5.4/screenshots/screenshot3.png differ